Skip to content

Commit 6a36f31

Browse files
committedMar 4, 2025·
Bump versions after 8.16.5 release
1 parent efe7379 commit 6a36f31

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-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.5", "8.17.4", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
59+
BWC_VERSION: ["8.16.6", "8.17.4", "8.18.0", "8.19.0", "9.0.0", "9.1.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
@@ -287,8 +287,8 @@ steps:
287287
env:
288288
BWC_VERSION: 8.15.5
289289

290-
- label: "{{matrix.image}} / 8.16.5 / packaging-tests-upgrade"
291-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.16.5
290+
- label: "{{matrix.image}} / 8.16.6 / packaging-tests-upgrade"
291+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.16.6
292292
timeout_in_minutes: 300
293293
matrix:
294294
setup:
@@ -301,7 +301,7 @@ steps:
301301
machineType: custom-16-32768
302302
buildDirectory: /dev/shm/bk
303303
env:
304-
BWC_VERSION: 8.16.5
304+
BWC_VERSION: 8.16.6
305305

306306
- label: "{{matrix.image}} / 8.17.4 / packaging-tests-upgrade"
307307
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.4

‎.buildkite/pipelines/periodic.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ steps:
306306
- signal_reason: agent_stop
307307
limit: 3
308308

309-
- label: 8.16.5 / bwc
310-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.16.5#bwcTest
309+
- label: 8.16.6 / bwc
310+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.16.6#bwcTest
311311
timeout_in_minutes: 300
312312
agents:
313313
provider: gcp
@@ -316,7 +316,7 @@ steps:
316316
buildDirectory: /dev/shm/bk
317317
preemptible: true
318318
env:
319-
BWC_VERSION: 8.16.5
319+
BWC_VERSION: 8.16.6
320320
retry:
321321
automatic:
322322
- exit_status: "-1"
@@ -486,7 +486,7 @@ steps:
486486
setup:
487487
ES_RUNTIME_JAVA:
488488
- openjdk21
489-
BWC_VERSION: ["8.16.5", "8.17.4", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
489+
BWC_VERSION: ["8.16.6", "8.17.4", "8.18.0", "8.19.0", "9.0.0", "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.16.5", "8.17.4", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
536+
BWC_VERSION: ["8.16.6", "8.17.4", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
537537
agents:
538538
provider: gcp
539539
image: family/elasticsearch-ubuntu-2004

‎.ci/bwcVersions

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BWC_VERSION:
1515
- "8.13.4"
1616
- "8.14.3"
1717
- "8.15.5"
18-
- "8.16.5"
18+
- "8.16.6"
1919
- "8.17.4"
2020
- "8.18.0"
2121
- "8.19.0"

‎.ci/snapshotBwcVersions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BWC_VERSION:
2-
- "8.16.5"
2+
- "8.16.6"
33
- "8.17.4"
44
- "8.18.0"
55
- "8.19.0"

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

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ static TransportVersion def(int id) {
103103
public static final TransportVersion SKIP_INNER_HITS_SEARCH_SOURCE_BACKPORT_8_16 = def(8_772_0_03);
104104
public static final TransportVersion QUERY_RULES_LIST_INCLUDES_TYPES_BACKPORT_8_16 = def(8_772_0_04);
105105
public static final TransportVersion INITIAL_ELASTICSEARCH_8_16_5 = def(8_772_0_05);
106+
public static final TransportVersion INITIAL_ELASTICSEARCH_8_16_6 = def(8_772_0_06);
106107
public static final TransportVersion REMOVE_MIN_COMPATIBLE_SHARD_NODE = def(8_773_0_00);
107108
public static final TransportVersion REVERT_REMOVE_MIN_COMPATIBLE_SHARD_NODE = def(8_774_0_00);
108109
public static final TransportVersion ESQL_FIELD_ATTRIBUTE_PARENT_SIMPLIFIED = def(8_775_0_00);

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

+1
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
194194
public static final Version V_8_16_3 = new Version(8_16_03_99);
195195
public static final Version V_8_16_4 = new Version(8_16_04_99);
196196
public static final Version V_8_16_5 = new Version(8_16_05_99);
197+
public static final Version V_8_16_6 = new Version(8_16_06_99);
197198
public static final Version V_8_17_0 = new Version(8_17_00_99);
198199
public static final Version V_8_17_1 = new Version(8_17_01_99);
199200
public static final Version V_8_17_2 = new Version(8_17_02_99);

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

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
8.16.2,8772004
139139
8.16.3,8772004
140140
8.16.4,8772004
141+
8.16.5,8772005
141142
8.17.0,8797002
142143
8.17.1,8797002
143144
8.17.2,8797002

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

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
8.16.2,8518000
139139
8.16.3,8518000
140140
8.16.4,8518000
141+
8.16.5,8518000
141142
8.17.0,8521000
142143
8.17.1,8521000
143144
8.17.2,8521000

0 commit comments

Comments
 (0)
Please sign in to comment.