Skip to content

Commit d55ddee

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.15.3 release
1 parent b2fa443 commit d55ddee

File tree

9 files changed

+15
-12
lines changed

9 files changed

+15
-12
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.25", "8.15.3", "8.16.0", "8.17.0"]
59+
BWC_VERSION: ["7.17.25", "8.15.4", "8.16.0", "8.17.0"]
6060
agents:
6161
provider: gcp
6262
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -559,8 +559,8 @@ steps:
559559
env:
560560
BWC_VERSION: 8.14.3
561561

562-
- label: "{{matrix.image}} / 8.15.3 / packaging-tests-upgrade"
563-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.15.3
562+
- label: "{{matrix.image}} / 8.15.4 / packaging-tests-upgrade"
563+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.15.4
564564
timeout_in_minutes: 300
565565
matrix:
566566
setup:
@@ -573,7 +573,7 @@ steps:
573573
machineType: custom-16-32768
574574
buildDirectory: /dev/shm/bk
575575
env:
576-
BWC_VERSION: 8.15.3
576+
BWC_VERSION: 8.15.4
577577

578578
- label: "{{matrix.image}} / 8.16.0 / packaging-tests-upgrade"
579579
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.16.0

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -629,8 +629,8 @@ steps:
629629
- signal_reason: agent_stop
630630
limit: 3
631631

632-
- label: 8.15.3 / bwc
633-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.15.3#bwcTest
632+
- label: 8.15.4 / bwc
633+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.15.4#bwcTest
634634
timeout_in_minutes: 300
635635
agents:
636636
provider: gcp
@@ -639,7 +639,7 @@ steps:
639639
buildDirectory: /dev/shm/bk
640640
preemptible: true
641641
env:
642-
BWC_VERSION: 8.15.3
642+
BWC_VERSION: 8.15.4
643643
retry:
644644
automatic:
645645
- exit_status: "-1"
@@ -752,7 +752,7 @@ steps:
752752
setup:
753753
ES_RUNTIME_JAVA:
754754
- openjdk17
755-
BWC_VERSION: ["7.17.25", "8.15.3", "8.16.0", "8.17.0"]
755+
BWC_VERSION: ["7.17.25", "8.15.4", "8.16.0", "8.17.0"]
756756
agents:
757757
provider: gcp
758758
image: family/elasticsearch-ubuntu-2004
@@ -800,7 +800,7 @@ steps:
800800
- openjdk21
801801
- openjdk22
802802
- openjdk23
803-
BWC_VERSION: ["7.17.25", "8.15.3", "8.16.0", "8.17.0"]
803+
BWC_VERSION: ["7.17.25", "8.15.4", "8.16.0", "8.17.0"]
804804
agents:
805805
provider: gcp
806806
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ BWC_VERSION:
3232
- "8.12.2"
3333
- "8.13.4"
3434
- "8.14.3"
35-
- "8.15.3"
35+
- "8.15.4"
3636
- "8.16.0"
3737
- "8.17.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.25"
3-
- "8.15.3"
3+
- "8.15.4"
44
- "8.16.0"
55
- "8.17.0"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ static TransportVersion def(int id) {
240240
* Reference to the minimum transport version that can be used with CCS.
241241
* This should be the transport version used by the previous minor release.
242242
*/
243-
public static final TransportVersion MINIMUM_CCS_VERSION = V_8_15_0;
243+
public static final TransportVersion MINIMUM_CCS_VERSION = V_8_15_2;
244244

245245
static final NavigableMap<Integer, TransportVersion> VERSION_IDS = getAllVersionIds(TransportVersions.class);
246246

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
186186
public static final Version V_8_15_1 = new Version(8_15_01_99);
187187
public static final Version V_8_15_2 = new Version(8_15_02_99);
188188
public static final Version V_8_15_3 = new Version(8_15_03_99);
189+
public static final Version V_8_15_4 = new Version(8_15_04_99);
189190
public static final Version V_8_16_0 = new Version(8_16_00_99);
190191
public static final Version V_8_17_0 = new Version(8_17_00_99);
191192
public static final Version CURRENT = V_8_17_0;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,4 @@
130130
8.15.0,8702002
131131
8.15.1,8702002
132132
8.15.2,8702003
133+
8.15.3,8702003

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,4 @@
130130
8.15.0,8512000
131131
8.15.1,8512000
132132
8.15.2,8512000
133+
8.15.3,8512000

0 commit comments

Comments
 (0)