Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .buildkite/pipelines/intake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ steps:
timeout_in_minutes: 300
matrix:
setup:
BWC_VERSION: ["8.17.9", "8.18.5", "8.19.1", "9.0.5", "9.1.1"]
BWC_VERSION: ["8.17.10", "8.18.5", "8.19.1", "9.0.5", "9.1.1"]
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2404
Expand Down
6 changes: 3 additions & 3 deletions .buildkite/pipelines/periodic-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@ steps:
env:
BWC_VERSION: 8.16.6

- label: "{{matrix.image}} / 8.17.9 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.9
- label: "{{matrix.image}} / 8.17.10 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.10
timeout_in_minutes: 300
matrix:
setup:
Expand All @@ -316,7 +316,7 @@ steps:
machineType: custom-16-32768
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.17.9
BWC_VERSION: 8.17.10

- label: "{{matrix.image}} / 8.18.5 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.18.5
Expand Down
10 changes: 5 additions & 5 deletions .buildkite/pipelines/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ steps:
- signal_reason: agent_stop
limit: 3

- label: 8.17.9 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.9#bwcTest
- label: 8.17.10 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.17.10#bwcTest
timeout_in_minutes: 300
agents:
provider: gcp
Expand All @@ -335,7 +335,7 @@ steps:
buildDirectory: /dev/shm/bk
preemptible: true
env:
BWC_VERSION: 8.17.9
BWC_VERSION: 8.17.10
retry:
automatic:
- exit_status: "-1"
Expand Down Expand Up @@ -487,7 +487,7 @@ steps:
setup:
ES_RUNTIME_JAVA:
- openjdk21
BWC_VERSION: ["8.17.9", "8.18.5", "8.19.1", "9.0.5", "9.1.1"]
BWC_VERSION: ["8.17.10", "8.18.5", "8.19.1", "9.0.5", "9.1.1"]
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2404
Expand Down Expand Up @@ -531,7 +531,7 @@ steps:
ES_RUNTIME_JAVA:
- openjdk21
- openjdk23
BWC_VERSION: ["8.17.9", "8.18.5", "8.19.1", "9.0.5", "9.1.1"]
BWC_VERSION: ["8.17.10", "8.18.5", "8.19.1", "9.0.5", "9.1.1"]
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2404
Expand Down
2 changes: 1 addition & 1 deletion .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ BWC_VERSION:
- "8.14.3"
- "8.15.5"
- "8.16.6"
- "8.17.9"
- "8.17.10"
- "8.18.5"
- "8.19.1"
- "9.0.5"
Expand Down
2 changes: 1 addition & 1 deletion .ci/snapshotBwcVersions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BWC_VERSION:
- "8.17.9"
- "8.17.10"
- "8.18.5"
- "8.19.1"
- "9.0.5"
Expand Down
1 change: 1 addition & 0 deletions server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
public static final Version V_8_17_7 = new Version(8_17_07_99);
public static final Version V_8_17_8 = new Version(8_17_08_99);
public static final Version V_8_17_9 = new Version(8_17_09_99);
public static final Version V_8_17_10 = new Version(8_17_10_99);
public static final Version V_8_18_0 = new Version(8_18_00_99);
public static final Version V_8_18_1 = new Version(8_18_01_99);
public static final Version V_8_18_2 = new Version(8_18_02_99);
Expand Down