Skip to content

Commit 2cbeeb5

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.17.8 release
1 parent 1ad0cd2 commit 2cbeeb5

File tree

9 files changed

+16
-11
lines changed

9 files changed

+16
-11
lines changed

.buildkite/pipelines/intake.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,15 @@ steps:
5757
image: family/elasticsearch-ubuntu-2004
5858
machineType: n1-standard-32
5959
buildDirectory: /dev/shm/bk
60+
6061
- group: bwc-snapshots
6162
steps:
6263
- label: "{{matrix.BWC_VERSION}} / bwc-snapshots"
6364
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true -Dorg.elasticsearch.build.cache.push=true -Dignore.tests.seed -Dscan.capture-file-fingerprints v$$BWC_VERSION#bwcTest
6465
timeout_in_minutes: 300
6566
matrix:
6667
setup:
67-
BWC_VERSION: ["7.17.29", "8.17.8", "8.18.3", "8.19.0"]
68+
BWC_VERSION: ["7.17.29", "8.17.9", "8.18.3", "8.19.0"]
6869
agents:
6970
provider: gcp
7071
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -595,8 +595,8 @@ steps:
595595
env:
596596
BWC_VERSION: 8.16.6
597597

598-
- label: "{{matrix.image}} / 8.17.8 / packaging-tests-upgrade"
599-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.8
598+
- label: "{{matrix.image}} / 8.17.9 / packaging-tests-upgrade"
599+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.9
600600
timeout_in_minutes: 300
601601
matrix:
602602
setup:
@@ -609,7 +609,7 @@ steps:
609609
machineType: custom-16-32768
610610
buildDirectory: /dev/shm/bk
611611
env:
612-
BWC_VERSION: 8.17.8
612+
BWC_VERSION: 8.17.9
613613

614614
- label: "{{matrix.image}} / 8.18.3 / packaging-tests-upgrade"
615615
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.18.3

.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.8 / bwc
671-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.8#bwcTest
670+
- label: 8.17.9 / bwc
671+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.9#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.8
680+
BWC_VERSION: 8.17.9
681681
retry:
682682
automatic:
683683
- exit_status: "-1"
@@ -791,7 +791,7 @@ steps:
791791
setup:
792792
ES_RUNTIME_JAVA:
793793
- openjdk17
794-
BWC_VERSION: ["7.17.29", "8.17.8", "8.18.3", "8.19.0"]
794+
BWC_VERSION: ["7.17.29", "8.17.9", "8.18.3", "8.19.0"]
795795
agents:
796796
provider: gcp
797797
image: family/elasticsearch-ubuntu-2004
@@ -840,7 +840,7 @@ steps:
840840
- openjdk21
841841
- openjdk22
842842
- openjdk23
843-
BWC_VERSION: ["7.17.29", "8.17.8", "8.18.3", "8.19.0"]
843+
BWC_VERSION: ["7.17.29", "8.17.9", "8.18.3", "8.19.0"]
844844
agents:
845845
provider: gcp
846846
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ BWC_VERSION:
3434
- "8.14.3"
3535
- "8.15.5"
3636
- "8.16.6"
37-
- "8.17.8"
37+
- "8.17.9"
3838
- "8.18.3"
3939
- "8.19.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
- "7.17.29"
3-
- "8.17.8"
3+
- "8.17.9"
44
- "8.18.3"
55
- "8.19.0"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ static TransportVersion def(int id) {
142142
public static final TransportVersion INITIAL_ELASTICSEARCH_8_17_6 = def(8_797_0_06);
143143
public static final TransportVersion INITIAL_ELASTICSEARCH_8_17_7 = def(8_797_0_07);
144144
public static final TransportVersion INITIAL_ELASTICSEARCH_8_17_8 = def(8_797_0_08);
145+
public static final TransportVersion INITIAL_ELASTICSEARCH_8_17_9 = def(8_797_0_09);
145146
public static final TransportVersion INDEXING_PRESSURE_THROTTLING_STATS = def(8_798_0_00);
146147
public static final TransportVersion REINDEX_DATA_STREAMS = def(8_799_0_00);
147148
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
@@ -208,6 +208,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
208208
public static final Version V_8_17_6 = new Version(8_17_06_99);
209209
public static final Version V_8_17_7 = new Version(8_17_07_99);
210210
public static final Version V_8_17_8 = new Version(8_17_08_99);
211+
public static final Version V_8_17_9 = new Version(8_17_09_99);
211212
public static final Version V_8_18_0 = new Version(8_18_00_99);
212213
public static final Version V_8_18_1 = new Version(8_18_01_99);
213214
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
@@ -152,6 +152,7 @@
152152
8.17.5,8797005
153153
8.17.6,8797006
154154
8.17.7,8797007
155+
8.17.8,8797008
155156
8.18.0,8840002
156157
8.18.1,8840003
157158
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
@@ -152,6 +152,7 @@
152152
8.17.5,8521000
153153
8.17.6,8521000
154154
8.17.7,8521000
155+
8.17.8,8521000
155156
8.18.0,8525000
156157
8.18.1,8525000
157158
8.18.2,8525000

0 commit comments

Comments
 (0)