Skip to content

Commit 144ef11

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.18.5 release
1 parent 9a62852 commit 144ef11

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
@@ -56,7 +56,7 @@ steps:
5656
timeout_in_minutes: 300
5757
matrix:
5858
setup:
59-
BWC_VERSION: ["8.17.10", "8.18.5", "9.0.5"]
59+
BWC_VERSION: ["8.17.10", "8.18.6", "9.0.5"]
6060
agents:
6161
provider: gcp
6262
image: family/elasticsearch-ubuntu-2404

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@ steps:
318318
env:
319319
BWC_VERSION: 8.17.10
320320

321-
- label: "{{matrix.image}} / 8.18.5 / packaging-tests-upgrade"
322-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.18.5
321+
- label: "{{matrix.image}} / 8.18.6 / packaging-tests-upgrade"
322+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.18.6
323323
timeout_in_minutes: 300
324324
matrix:
325325
setup:
@@ -332,7 +332,7 @@ steps:
332332
machineType: custom-16-32768
333333
buildDirectory: /dev/shm/bk
334334
env:
335-
BWC_VERSION: 8.18.5
335+
BWC_VERSION: 8.18.6
336336

337337
- label: "{{matrix.image}} / 9.0.5 / packaging-tests-upgrade"
338338
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.0.5

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,8 @@ steps:
344344
- signal_reason: agent_stop
345345
limit: 3
346346

347-
- label: 8.18.5 / bwc
348-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.18.5#bwcTest
347+
- label: 8.18.6 / bwc
348+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.18.6#bwcTest
349349
timeout_in_minutes: 300
350350
agents:
351351
provider: gcp
@@ -354,7 +354,7 @@ steps:
354354
buildDirectory: /dev/shm/bk
355355
preemptible: true
356356
env:
357-
BWC_VERSION: 8.18.5
357+
BWC_VERSION: 8.18.6
358358
retry:
359359
automatic:
360360
- exit_status: "-1"
@@ -448,7 +448,7 @@ steps:
448448
setup:
449449
ES_RUNTIME_JAVA:
450450
- openjdk21
451-
BWC_VERSION: ["8.17.10", "8.18.5", "9.0.5"]
451+
BWC_VERSION: ["8.17.10", "8.18.6", "9.0.5"]
452452
agents:
453453
provider: gcp
454454
image: family/elasticsearch-ubuntu-2404
@@ -490,7 +490,7 @@ steps:
490490
ES_RUNTIME_JAVA:
491491
- openjdk21
492492
- openjdk23
493-
BWC_VERSION: ["8.17.10", "8.18.5", "9.0.5"]
493+
BWC_VERSION: ["8.17.10", "8.18.6", "9.0.5"]
494494
agents:
495495
provider: gcp
496496
image: family/elasticsearch-ubuntu-2404

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ BWC_VERSION:
1717
- "8.15.5"
1818
- "8.16.6"
1919
- "8.17.10"
20-
- "8.18.5"
20+
- "8.18.6"
2121
- "9.0.5"

.ci/snapshotBwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
BWC_VERSION:
22
- "8.17.10"
3-
- "8.18.5"
3+
- "8.18.6"
44
- "9.0.5"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ static TransportVersion def(int id) {
188188
public static final TransportVersion INITIAL_ELASTICSEARCH_8_18_3 = def(8_840_0_05);
189189
public static final TransportVersion INITIAL_ELASTICSEARCH_8_18_4 = def(8_840_0_06);
190190
public static final TransportVersion INITIAL_ELASTICSEARCH_8_18_5 = def(8_840_0_07);
191+
public static final TransportVersion INITIAL_ELASTICSEARCH_8_18_6 = def(8_840_0_08);
191192
public static final TransportVersion INITIAL_ELASTICSEARCH_8_19 = def(8_841_0_00);
192193
public static final TransportVersion INITIAL_ELASTICSEARCH_9_0 = def(9_000_0_00);
193194
public static final TransportVersion REMOVE_SNAPSHOT_FAILURES_90 = def(9_000_0_01);

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
212212
public static final Version V_8_18_3 = new Version(8_18_03_99);
213213
public static final Version V_8_18_4 = new Version(8_18_04_99);
214214
public static final Version V_8_18_5 = new Version(8_18_05_99);
215+
public static final Version V_8_18_6 = new Version(8_18_06_99);
215216
public static final Version V_9_0_0 = new Version(9_00_00_99);
216217
public static final Version V_9_0_1 = new Version(9_00_01_99);
217218
public static final Version V_9_0_2 = new Version(9_00_02_99);

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@
155155
8.18.2,8840004
156156
8.18.3,8840005
157157
8.18.4,8840006
158+
8.18.5,8840007
158159
9.0.0,9000009
159160
9.0.1,9000010
160161
9.0.2,9000011

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@
155155
8.18.2,8525000
156156
8.18.3,8525000
157157
8.18.4,8525000
158+
8.18.5,8525000
158159
9.0.0,9009000
159160
9.0.1,9009000
160161
9.0.2,9009000

0 commit comments

Comments
 (0)