Skip to content

Commit

Permalink
Bump version to 2.9.0
Browse files Browse the repository at this point in the history
* Bump version to 2.9.0

* Remove second blob-store-stats change

* Fix running tests on release versions
  • Loading branch information
pquentin authored Aug 24, 2023
1 parent b0b5e05 commit a3b5286
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ DJRickyB
Domenico Andreoli
Evgenia Badiyanova
Evgenia Badyanova
Gareth Ellis
Gavin Fowler
gdmello
Grzegorz Banasiak
Expand Down
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
### 2.9.0

#### Highlights

* [#1760](https://github.com/elastic/rally/pull/1760): Exclude tasks based on serverless status
* [#1750](https://github.com/elastic/rally/pull/1750) (Breaking): Inject build_flavor in track templates

#### Enhancements

* [#1756](https://github.com/elastic/rally/pull/1756): Retrieve serverless build hash from nodes info API
* [#1755](https://github.com/elastic/rally/pull/1755): Add blob-store-stats telemetry device and tests
* [#1743](https://github.com/elastic/rally/pull/1743): Bulk action refresh param

#### Bug Fixes

* [#1763](https://github.com/elastic/rally/pull/1763): Fix running tracks across multiple load driver machines
* [#1747](https://github.com/elastic/rally/pull/1747): Fix rally-annotations index creation

#### Doc Changes

* [#1748](https://github.com/elastic/rally/pull/1748): Document actor system

#### Miscellaneous Changes

* [#1759](https://github.com/elastic/rally/pull/1759): Ensure serverless.mode/operator are always set

### 2.8.0

#### Highlights
Expand Down
2 changes: 1 addition & 1 deletion esrally/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.9.0.dev0"
__version__ = "2.9.0"
6 changes: 3 additions & 3 deletions tests/racecontrol_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ def test_fails_without_benchmark_only_pipeline_in_docker(running_in_docker, unit

with pytest.raises(
exceptions.SystemSetupError,
match=re.escape(
"Only the [benchmark-only] pipeline is supported by the Rally Docker image.\n"
match=(
f"Only the {re.escape('[benchmark-only]')} pipeline is supported by the Rally Docker image.\n"
"Add --pipeline=benchmark-only in your Rally arguments and try again.\n"
"For more details read the docs for the benchmark-only pipeline in "
"https://esrally.readthedocs.io/en/latest/pipelines.html#benchmark-only\n"
"https://esrally.readthedocs.io/en/.*/pipelines.html#benchmark-only\n"
),
):
racecontrol.run(cfg)
Expand Down

0 comments on commit a3b5286

Please sign in to comment.