Skip to content

Commit 7350e36

Browse files
Bump versions after 9.0.0 release
1 parent 2e43757 commit 7350e36

File tree

9 files changed

+16
-12
lines changed

9 files changed

+16
-12
lines changed

Diff for: .buildkite/pipelines/intake.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ steps:
5656
timeout_in_minutes: 300
5757
matrix:
5858
setup:
59-
BWC_VERSION: ["8.17.6", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
59+
BWC_VERSION: ["8.17.6", "8.18.0", "8.19.0", "9.0.1", "9.1.0"]
6060
agents:
6161
provider: gcp
6262
image: family/elasticsearch-ubuntu-2004

Diff for: .buildkite/pipelines/periodic-packaging.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ steps:
351351
env:
352352
BWC_VERSION: 8.19.0
353353

354-
- label: "{{matrix.image}} / 9.0.0 / packaging-tests-upgrade"
355-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.0.0
354+
- label: "{{matrix.image}} / 9.0.1 / packaging-tests-upgrade"
355+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.0.1
356356
timeout_in_minutes: 300
357357
matrix:
358358
setup:
@@ -365,7 +365,7 @@ steps:
365365
machineType: custom-16-32768
366366
buildDirectory: /dev/shm/bk
367367
env:
368-
BWC_VERSION: 9.0.0
368+
BWC_VERSION: 9.0.1
369369

370370
- label: "{{matrix.image}} / 9.1.0 / packaging-tests-upgrade"
371371
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.1.0

Diff for: .buildkite/pipelines/periodic.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,8 @@ steps:
382382
- signal_reason: agent_stop
383383
limit: 3
384384

385-
- label: 9.0.0 / bwc
386-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v9.0.0#bwcTest
385+
- label: 9.0.1 / bwc
386+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v9.0.1#bwcTest
387387
timeout_in_minutes: 300
388388
agents:
389389
provider: gcp
@@ -392,7 +392,7 @@ steps:
392392
buildDirectory: /dev/shm/bk
393393
preemptible: true
394394
env:
395-
BWC_VERSION: 9.0.0
395+
BWC_VERSION: 9.0.1
396396
retry:
397397
automatic:
398398
- exit_status: "-1"
@@ -486,7 +486,7 @@ steps:
486486
setup:
487487
ES_RUNTIME_JAVA:
488488
- openjdk21
489-
BWC_VERSION: ["8.17.6", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
489+
BWC_VERSION: ["8.17.6", "8.18.0", "8.19.0", "9.0.1", "9.1.0"]
490490
agents:
491491
provider: gcp
492492
image: family/elasticsearch-ubuntu-2004
@@ -533,7 +533,7 @@ steps:
533533
ES_RUNTIME_JAVA:
534534
- openjdk21
535535
- openjdk23
536-
BWC_VERSION: ["8.17.6", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
536+
BWC_VERSION: ["8.17.6", "8.18.0", "8.19.0", "9.0.1", "9.1.0"]
537537
agents:
538538
provider: gcp
539539
image: family/elasticsearch-ubuntu-2004

Diff for: .ci/bwcVersions

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ BWC_VERSION:
1919
- "8.17.6"
2020
- "8.18.0"
2121
- "8.19.0"
22-
- "9.0.0"
22+
- "9.0.1"
2323
- "9.1.0"

Diff for: .ci/snapshotBwcVersions

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ BWC_VERSION:
22
- "8.17.6"
33
- "8.18.0"
44
- "8.19.0"
5-
- "9.0.0"
5+
- "9.0.1"
66
- "9.1.0"

Diff for: server/src/main/java/org/elasticsearch/TransportVersions.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ static TransportVersion def(int id) {
170170
public static final TransportVersion RETRY_ILM_ASYNC_ACTION_REQUIRE_ERROR_90 = def(9_000_0_07);
171171
public static final TransportVersion RE_REMOVE_MIN_COMPATIBLE_SHARD_NODE_90 = def(9_000_0_08);
172172
public static final TransportVersion STORED_SCRIPT_CONTENT_LENGTH_90 = def(9_000_0_09);
173+
public static final TransportVersion INITIAL_ELASTICSEARCH_9_0_1 = def(9_000_0_10);
173174
public static final TransportVersion COHERE_BIT_EMBEDDING_TYPE_SUPPORT_ADDED = def(9_001_0_00);
174175
public static final TransportVersion REMOVE_SNAPSHOT_FAILURES = def(9_002_0_00);
175176
public static final TransportVersion TRANSPORT_STATS_HANDLING_TIME_REQUIRED = def(9_003_0_00);
@@ -287,7 +288,7 @@ static TransportVersion def(int id) {
287288
* Reference to the minimum transport version that can be used with CCS.
288289
* This should be the transport version used by the previous minor release.
289290
*/
290-
public static final TransportVersion MINIMUM_CCS_VERSION = BYTE_SIZE_VALUE_ALWAYS_USES_BYTES_1;
291+
public static final TransportVersion MINIMUM_CCS_VERSION = STORED_SCRIPT_CONTENT_LENGTH_90;
291292

292293
/**
293294
* Sorted list of all versions defined in this class

Diff for: server/src/main/java/org/elasticsearch/Version.java

+1
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
206206
public static final Version V_8_18_0 = new Version(8_18_00_99);
207207
public static final Version V_8_19_0 = new Version(8_19_00_99);
208208
public static final Version V_9_0_0 = new Version(9_00_00_99);
209+
public static final Version V_9_0_1 = new Version(9_00_01_99);
209210
public static final Version V_9_1_0 = new Version(9_01_00_99);
210211
public static final Version CURRENT = V_9_1_0;
211212

Diff for: server/src/main/resources/org/elasticsearch/TransportVersions.csv

+1
Original file line numberDiff line numberDiff line change
@@ -146,3 +146,4 @@
146146
8.17.3,8797003
147147
8.17.4,8797004
148148
8.17.5,8797005
149+
9.0.0,9000009

Diff for: server/src/main/resources/org/elasticsearch/index/IndexVersions.csv

+1
Original file line numberDiff line numberDiff line change
@@ -146,3 +146,4 @@
146146
8.17.3,8521000
147147
8.17.4,8521000
148148
8.17.5,8521000
149+
9.0.0,9009000

0 commit comments

Comments
 (0)