Skip to content

Commit de2c60a

Browse files
author
elasticsearchmachine
committed
Bump versions after 9.0.5 release
1 parent 59166a6 commit de2c60a

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-11
lines changed

.buildkite/pipelines/intake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ steps:
6565
timeout_in_minutes: 300
6666
matrix:
6767
setup:
68-
BWC_VERSION: ["8.17.10", "8.18.6", "8.19.2", "9.0.5", "9.1.2"]
68+
BWC_VERSION: ["8.17.10", "8.18.6", "8.19.2", "9.0.6", "9.1.2"]
6969
agents:
7070
provider: gcp
7171
image: family/elasticsearch-ubuntu-2404

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,8 @@ steps:
350350
env:
351351
BWC_VERSION: 8.19.2
352352

353-
- label: "{{matrix.image}} / 9.0.5 / packaging-tests-upgrade"
354-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.0.5
353+
- label: "{{matrix.image}} / 9.0.6 / packaging-tests-upgrade"
354+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.0.6
355355
timeout_in_minutes: 300
356356
matrix:
357357
setup:
@@ -364,7 +364,7 @@ steps:
364364
machineType: custom-16-32768
365365
buildDirectory: /dev/shm/bk
366366
env:
367-
BWC_VERSION: 9.0.5
367+
BWC_VERSION: 9.0.6
368368

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

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
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.5 / bwc
386-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v9.0.5#bwcTest
385+
- label: 9.0.6 / bwc
386+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v9.0.6#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.5
395+
BWC_VERSION: 9.0.6
396396
retry:
397397
automatic:
398398
- exit_status: "-1"
@@ -487,7 +487,7 @@ steps:
487487
setup:
488488
ES_RUNTIME_JAVA:
489489
- openjdk21
490-
BWC_VERSION: ["8.17.10", "8.18.6", "8.19.2", "9.0.5", "9.1.2"]
490+
BWC_VERSION: ["8.17.10", "8.18.6", "8.19.2", "9.0.6", "9.1.2"]
491491
agents:
492492
provider: gcp
493493
image: family/elasticsearch-ubuntu-2404
@@ -531,7 +531,7 @@ steps:
531531
ES_RUNTIME_JAVA:
532532
- openjdk21
533533
- openjdk23
534-
BWC_VERSION: ["8.17.10", "8.18.6", "8.19.2", "9.0.5", "9.1.2"]
534+
BWC_VERSION: ["8.17.10", "8.18.6", "8.19.2", "9.0.6", "9.1.2"]
535535
agents:
536536
provider: gcp
537537
image: family/elasticsearch-ubuntu-2404

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ BWC_VERSION:
1919
- "8.17.10"
2020
- "8.18.6"
2121
- "8.19.2"
22-
- "9.0.5"
22+
- "9.0.6"
2323
- "9.1.2"

.ci/snapshotBwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ BWC_VERSION:
22
- "8.17.10"
33
- "8.18.6"
44
- "8.19.2"
5-
- "9.0.5"
5+
- "9.0.6"
66
- "9.1.2"

server/src/main/java/org/elasticsearch/TransportVersions.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ static TransportVersion def(int id) {
221221
public static final TransportVersion INITIAL_ELASTICSEARCH_9_0_3 = def(9_000_0_12);
222222
public static final TransportVersion INITIAL_ELASTICSEARCH_9_0_4 = def(9_000_0_13);
223223
public static final TransportVersion INITIAL_ELASTICSEARCH_9_0_5 = def(9_000_0_14);
224+
public static final TransportVersion INITIAL_ELASTICSEARCH_9_0_6 = def(9_000_0_15);
224225
public static final TransportVersion COHERE_BIT_EMBEDDING_TYPE_SUPPORT_ADDED = def(9_001_0_00);
225226
public static final TransportVersion REMOVE_SNAPSHOT_FAILURES = def(9_002_0_00);
226227
public static final TransportVersion TRANSPORT_STATS_HANDLING_TIME_REQUIRED = def(9_003_0_00);

server/src/main/java/org/elasticsearch/Version.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
222222
public static final Version V_9_0_3 = new Version(9_00_03_99);
223223
public static final Version V_9_0_4 = new Version(9_00_04_99);
224224
public static final Version V_9_0_5 = new Version(9_00_05_99);
225+
public static final Version V_9_0_6 = new Version(9_00_06_99);
225226
public static final Version V_9_1_0 = new Version(9_01_00_99);
226227
public static final Version V_9_1_1 = new Version(9_01_01_99);
227228
public static final Version V_9_1_2 = new Version(9_01_02_99);

server/src/main/resources/org/elasticsearch/TransportVersions.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,6 @@
163163
9.0.2,9000011
164164
9.0.3,9000012
165165
9.0.4,9000013
166+
9.0.5,9000014
166167
9.1.0,9112003
167168
9.1.1,9112004

server/src/main/resources/org/elasticsearch/index/IndexVersions.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,6 @@
163163
9.0.2,9009000
164164
9.0.3,9009000
165165
9.0.4,9009000
166+
9.0.5,9009000
166167
9.1.0,9033000
167168
9.1.1,9033000

0 commit comments

Comments
 (0)