Skip to content

Commit 91666d1

Browse files
Bump versions after 8.17.2 release
1 parent f06e936 commit 91666d1

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

.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.16.4", "8.17.2", "8.18.0", "9.0.0"]
59+
BWC_VERSION: ["8.16.4", "8.17.3", "8.18.0", "9.0.0"]
6060
agents:
6161
provider: gcp
6262
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-packaging.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,8 @@ steps:
303303
env:
304304
BWC_VERSION: 8.16.4
305305

306-
- label: "{{matrix.image}} / 8.17.2 / packaging-tests-upgrade"
307-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.2
306+
- label: "{{matrix.image}} / 8.17.3 / packaging-tests-upgrade"
307+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.3
308308
timeout_in_minutes: 300
309309
matrix:
310310
setup:
@@ -317,7 +317,7 @@ steps:
317317
machineType: custom-16-32768
318318
buildDirectory: /dev/shm/bk
319319
env:
320-
BWC_VERSION: 8.17.2
320+
BWC_VERSION: 8.17.3
321321

322322
- label: "{{matrix.image}} / 8.18.0 / packaging-tests-upgrade"
323323
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.18.0

.buildkite/pipelines/periodic.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ steps:
325325
- signal_reason: agent_stop
326326
limit: 3
327327

328-
- label: 8.17.2 / bwc
329-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.2#bwcTest
328+
- label: 8.17.3 / bwc
329+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.3#bwcTest
330330
timeout_in_minutes: 300
331331
agents:
332332
provider: gcp
@@ -335,7 +335,7 @@ steps:
335335
buildDirectory: /dev/shm/bk
336336
preemptible: true
337337
env:
338-
BWC_VERSION: 8.17.2
338+
BWC_VERSION: 8.17.3
339339
retry:
340340
automatic:
341341
- exit_status: "-1"
@@ -448,7 +448,7 @@ steps:
448448
setup:
449449
ES_RUNTIME_JAVA:
450450
- openjdk21
451-
BWC_VERSION: ["8.16.4", "8.17.2", "8.18.0", "9.0.0"]
451+
BWC_VERSION: ["8.16.4", "8.17.3", "8.18.0", "9.0.0"]
452452
agents:
453453
provider: gcp
454454
image: family/elasticsearch-ubuntu-2004
@@ -490,7 +490,7 @@ steps:
490490
ES_RUNTIME_JAVA:
491491
- openjdk21
492492
- openjdk23
493-
BWC_VERSION: ["8.16.4", "8.17.2", "8.18.0", "9.0.0"]
493+
BWC_VERSION: ["8.16.4", "8.17.3", "8.18.0", "9.0.0"]
494494
agents:
495495
provider: gcp
496496
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ BWC_VERSION:
1616
- "8.14.3"
1717
- "8.15.5"
1818
- "8.16.4"
19-
- "8.17.2"
19+
- "8.17.3"
2020
- "8.18.0"
2121
- "9.0.0"

.ci/snapshotBwcVersions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BWC_VERSION:
22
- "8.16.4"
3-
- "8.17.2"
3+
- "8.17.3"
44
- "8.18.0"
55
- "9.0.0"

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

+1
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
196196
public static final Version V_8_17_0 = new Version(8_17_00_99);
197197
public static final Version V_8_17_1 = new Version(8_17_01_99);
198198
public static final Version V_8_17_2 = new Version(8_17_02_99);
199+
public static final Version V_8_17_3 = new Version(8_17_03_99);
199200
public static final Version V_8_18_0 = new Version(8_18_00_99);
200201
public static final Version V_9_0_0 = new Version(9_00_00_99);
201202
public static final Version CURRENT = V_9_0_0;

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

+1
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,4 @@
139139
8.16.3,8772004
140140
8.17.0,8797002
141141
8.17.1,8797002
142+
8.17.2,8797002

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

+1
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,4 @@
139139
8.16.3,8518000
140140
8.17.0,8521000
141141
8.17.1,8521000
142+
8.17.2,8521000

0 commit comments

Comments
 (0)