Skip to content

Commit cf7cb4b

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.17.0 release
1 parent 0441555 commit cf7cb4b

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

.buildkite/pipelines/intake.yml

Lines changed: 1 addition & 1 deletion
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.2", "8.17.0", "8.18.0", "9.0.0"]
59+
BWC_VERSION: ["8.16.2", "8.17.1", "8.18.0", "9.0.0"]
6060
agents:
6161
provider: gcp
6262
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,8 @@ steps:
301301
env:
302302
BWC_VERSION: 8.16.2
303303

304-
- label: "{{matrix.image}} / 8.17.0 / packaging-tests-upgrade"
305-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.0
304+
- label: "{{matrix.image}} / 8.17.1 / packaging-tests-upgrade"
305+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.1
306306
timeout_in_minutes: 300
307307
matrix:
308308
setup:
@@ -315,7 +315,7 @@ steps:
315315
machineType: custom-16-32768
316316
buildDirectory: /dev/shm/bk
317317
env:
318-
BWC_VERSION: 8.17.0
318+
BWC_VERSION: 8.17.1
319319

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

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
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.0 / bwc
329-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.0#bwcTest
328+
- label: 8.17.1 / bwc
329+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.1#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.0
338+
BWC_VERSION: 8.17.1
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.2", "8.17.0", "8.18.0", "9.0.0"]
451+
BWC_VERSION: ["8.16.2", "8.17.1", "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.2", "8.17.0", "8.18.0", "9.0.0"]
493+
BWC_VERSION: ["8.16.2", "8.17.1", "8.18.0", "9.0.0"]
494494
agents:
495495
provider: gcp
496496
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
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.2"
19-
- "8.17.0"
19+
- "8.17.1"
2020
- "8.18.0"
2121
- "9.0.0"

.ci/snapshotBwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BWC_VERSION:
22
- "8.16.2"
3-
- "8.17.0"
3+
- "8.17.1"
44
- "8.18.0"
55
- "9.0.0"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
192192
public static final Version V_8_16_1 = new Version(8_16_01_99);
193193
public static final Version V_8_16_2 = new Version(8_16_02_99);
194194
public static final Version V_8_17_0 = new Version(8_17_00_99);
195+
public static final Version V_8_17_1 = new Version(8_17_01_99);
195196
public static final Version V_8_18_0 = new Version(8_18_00_99);
196197
public static final Version V_9_0_0 = new Version(9_00_00_99);
197198
public static final Version CURRENT = V_9_0_0;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,4 @@
135135
8.15.5,8702003
136136
8.16.0,8772001
137137
8.16.1,8772004
138+
8.17.0,8797002

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,4 @@
135135
8.15.5,8512000
136136
8.16.0,8518000
137137
8.16.1,8518000
138+
8.17.0,8521000

0 commit comments

Comments
 (0)