Skip to content

Commit 70939ed

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.17.10 release
1 parent c546fc9 commit 70939ed

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: ["7.17.30", "8.17.10", "8.18.6"]
59+
BWC_VERSION: ["7.17.30", "8.17.11", "8.18.6"]
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
@@ -593,8 +593,8 @@ steps:
593593
env:
594594
BWC_VERSION: 8.16.6
595595

596-
- label: "{{matrix.image}} / 8.17.10 / packaging-tests-upgrade"
597-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.10
596+
- label: "{{matrix.image}} / 8.17.11 / packaging-tests-upgrade"
597+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.11
598598
timeout_in_minutes: 300
599599
matrix:
600600
setup:
@@ -607,7 +607,7 @@ steps:
607607
machineType: custom-16-32768
608608
buildDirectory: /dev/shm/bk
609609
env:
610-
BWC_VERSION: 8.17.10
610+
BWC_VERSION: 8.17.11
611611

612612
- label: "{{matrix.image}} / 8.18.6 / packaging-tests-upgrade"
613613
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.18.6

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -667,8 +667,8 @@ steps:
667667
- signal_reason: agent_stop
668668
limit: 3
669669

670-
- label: 8.17.10 / bwc
671-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.10#bwcTest
670+
- label: 8.17.11 / bwc
671+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.11#bwcTest
672672
timeout_in_minutes: 300
673673
agents:
674674
provider: gcp
@@ -677,7 +677,7 @@ steps:
677677
buildDirectory: /dev/shm/bk
678678
preemptible: true
679679
env:
680-
BWC_VERSION: 8.17.10
680+
BWC_VERSION: 8.17.11
681681
retry:
682682
automatic:
683683
- exit_status: "-1"
@@ -771,7 +771,7 @@ steps:
771771
setup:
772772
ES_RUNTIME_JAVA:
773773
- openjdk17
774-
BWC_VERSION: ["7.17.30", "8.17.10", "8.18.6"]
774+
BWC_VERSION: ["7.17.30", "8.17.11", "8.18.6"]
775775
agents:
776776
provider: gcp
777777
image: family/elasticsearch-ubuntu-2404
@@ -819,7 +819,7 @@ steps:
819819
- openjdk21
820820
- openjdk22
821821
- openjdk23
822-
BWC_VERSION: ["7.17.30", "8.17.10", "8.18.6"]
822+
BWC_VERSION: ["7.17.30", "8.17.11", "8.18.6"]
823823
agents:
824824
provider: gcp
825825
image: family/elasticsearch-ubuntu-2404

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ BWC_VERSION:
3434
- "8.14.3"
3535
- "8.15.5"
3636
- "8.16.6"
37-
- "8.17.10"
37+
- "8.17.11"
3838
- "8.18.6"

.ci/snapshotBwcVersions

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ static TransportVersion def(int id) {
144144
public static final TransportVersion INITIAL_ELASTICSEARCH_8_17_8 = def(8_797_0_08);
145145
public static final TransportVersion INITIAL_ELASTICSEARCH_8_17_9 = def(8_797_0_09);
146146
public static final TransportVersion INITIAL_ELASTICSEARCH_8_17_10 = def(8_797_0_10);
147+
public static final TransportVersion INITIAL_ELASTICSEARCH_8_17_11 = def(8_797_0_11);
147148
public static final TransportVersion INDEXING_PRESSURE_THROTTLING_STATS = def(8_798_0_00);
148149
public static final TransportVersion REINDEX_DATA_STREAMS = def(8_799_0_00);
149150
public static final TransportVersion ESQL_REMOVE_NODE_LEVEL_PLAN = def(8_800_0_00);

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
211211
public static final Version V_8_17_8 = new Version(8_17_08_99);
212212
public static final Version V_8_17_9 = new Version(8_17_09_99);
213213
public static final Version V_8_17_10 = new Version(8_17_10_99);
214+
public static final Version V_8_17_11 = new Version(8_17_11_99);
214215
public static final Version V_8_18_0 = new Version(8_18_00_99);
215216
public static final Version V_8_18_1 = new Version(8_18_01_99);
216217
public static final Version V_8_18_2 = new Version(8_18_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.17.7,8797007
156156
8.17.8,8797008
157157
8.17.9,8797009
158+
8.17.10,8797010
158159
8.18.0,8840002
159160
8.18.1,8840003
160161
8.18.2,8840004

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.17.7,8521000
156156
8.17.8,8521000
157157
8.17.9,8521000
158+
8.17.10,8521000
158159
8.18.0,8525000
159160
8.18.1,8525000
160161
8.18.2,8525000

0 commit comments

Comments
 (0)