-
Notifications
You must be signed in to change notification settings - Fork 338
Update release preparation to scripts/release #2069
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
fressi-elastic
wants to merge
27
commits into
elastic:master
Choose a base branch
from
fressi-elastic:chore/release-preparation-tooling
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
80955de
Releng: move release preparation to scripts/release
fressi-elastic a5f58db
Apply suggestion from @Copilot
fressi-elastic 696dd22
Apply suggestion from @Copilot
fressi-elastic 65eb6b5
Use scripts/githooks/pre-commit and scripts/githooks/post-commit as G…
fressi-elastic f99b746
Remove sentence from contributing guide.
fressi-elastic 6fbe035
Call `make pre-commit` in pre-commit hook.
fressi-elastic b7f8c18
Address pending comments from PR
fressi-elastic e1e0b64
docs: point release prep at Codex runbook, drop duplicated steps
fressi-elastic cef8a3c
Remove updated procudures from public documentation.
fressi-elastic b24e379
Remove references to Java 17 from changed documents.
fressi-elastic ca3f756
Rename RALLY_CHANGELOG_TOKEN to RALLY_CHANGELOG_TOKEN_FILE
fressi-elastic d348682
Remove stale Preparing a release doc references
fressi-elastic 8fdedc4
Remove internal Codex links; restore public maintainer and doc pointers
fressi-elastic 082057e
Remove docker based script and git hooks changes as being unrelated. …
fressi-elastic fa83363
Fix follow-ups from release tooling cleanup
fressi-elastic ad669f6
Fix makefile after prepare-docker.sh has been removed.
fressi-elastic 56e27a8
Bump version to 2.14.0
fressi-elastic 056be98
Workaround connection errors downloading licences from GitHub
fressi-elastic 1cf1c6f
Fix regressions of Makefile
fressi-elastic aad1035
Merge branch 'master' of github.com:elastic/rally into chore/release-…
fressi-elastic e5cbac4
Revert esrally/_version.py
fressi-elastic 34fd5e6
Fix broken script.
fressi-elastic 4b6bf33
Release dry-run, drop tracked NOTICE.txt, fix tar on Python 3.10/3.11
fressi-elastic 0d13a40
Harden release changelog: stderr messages, prepare.sh propagates fail…
fressi-elastic 0ad1602
Merge branch 'master' of github.com:elastic/rally into chore/release-…
fressi-elastic 56da168
Use pylint on changelog.py
fressi-elastic 0a5e196
Merge branch 'master' of github.com:elastic/rally into chore/release-…
fressi-elastic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,85 @@ | ||
| # Patterns aligned with .gitignore — reduces Docker build context size. | ||
| # See .gitignore for original references and rationale. | ||
|
|
||
| # OS | ||
| .DS_Store | ||
| .AppleDouble | ||
| .LSOverride | ||
| ._* | ||
| .DocumentRevisions-V100 | ||
| .fseventsd | ||
| .Spotlight-V100 | ||
| .TemporaryItems | ||
| .Trashes | ||
| .VolumeIcon.icns | ||
| .AppleDB | ||
| .AppleDesktop | ||
| .apdisk | ||
|
|
||
| # IDE / editors | ||
| *.iml | ||
| .idea/ | ||
| *~ | ||
| /.project | ||
| /.pydevproject | ||
| /.vscode | ||
|
|
||
| # Virtualenv / local env | ||
| .venv*/ | ||
| env/ | ||
| .envrc | ||
| .python-version | ||
|
|
||
| # Python | ||
| __pycache__/ | ||
| *.py[cod] | ||
| *$py.class | ||
| *.so | ||
| .Python | ||
| build/ | ||
| develop-eggs/ | ||
| dist/ | ||
| downloads/ | ||
| eggs/ | ||
| .eggs/ | ||
| lib/ | ||
| lib64/ | ||
| parts/ | ||
| sdist/ | ||
| var/ | ||
| *.egg-info/ | ||
| .installed.cfg | ||
| *.egg | ||
|
|
||
| # Test / coverage | ||
| htmlcov/ | ||
| .tox/ | ||
| .coverage | ||
| .coverage.* | ||
| .cache | ||
| nosetests.xml | ||
| coverage.xml | ||
| *,cover | ||
| .hypothesis/ | ||
| junit-*.xml | ||
| .pytest_cache/ | ||
|
|
||
| # Translations / logs | ||
| *.mo | ||
| *.pot | ||
| *.log | ||
|
|
||
| # Docs build | ||
| docs/_build/ | ||
|
|
||
| # PyBuilder | ||
| target/ | ||
|
|
||
| # Pickles | ||
| *.pk | ||
|
|
||
| # Rally-specific | ||
| .rally_it/ | ||
| NOTICE.txt | ||
| recipes/ccr/ccr-target-hosts.json | ||
| tracks/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.