Skip to content

Commit 2c09614

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.15.4 release
1 parent 3a25566 commit 2c09614

File tree

10 files changed

+17
-14
lines changed

10 files changed

+17
-14
lines changed

.backportrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"targetBranchChoices" : [ "main", "8.15", "8.14", "8.13", "8.12", "8.11", "8.10", "8.9", "8.8", "8.7", "8.6", "8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.17", "6.8" ],
44
"targetPRLabels" : [ "backport" ],
55
"branchLabelMapping" : {
6-
"^v8.15.4$" : "main",
6+
"^v8.15.5$" : "main",
77
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
88
}
99
}

.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.26", "8.15.4"]
59+
BWC_VERSION: ["7.17.26", "8.15.5"]
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.4 / packaging-tests-upgrade"
563-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.15.4
562+
- label: "{{matrix.image}} / 8.15.5 / packaging-tests-upgrade"
563+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.15.5
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.4
576+
BWC_VERSION: 8.15.5
577577

578578
- group: packaging-tests-windows
579579
steps:

.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.4 / bwc
633-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.15.4#bwcTest
632+
- label: 8.15.5 / bwc
633+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.15.5#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.4
642+
BWC_VERSION: 8.15.5
643643
retry:
644644
automatic:
645645
- exit_status: "-1"
@@ -714,7 +714,7 @@ steps:
714714
setup:
715715
ES_RUNTIME_JAVA:
716716
- openjdk17
717-
BWC_VERSION: ["7.17.26", "8.15.4"]
717+
BWC_VERSION: ["7.17.26", "8.15.5"]
718718
agents:
719719
provider: gcp
720720
image: family/elasticsearch-ubuntu-2004
@@ -762,7 +762,7 @@ steps:
762762
- openjdk21
763763
- openjdk22
764764
- openjdk23
765-
BWC_VERSION: ["7.17.26", "8.15.4"]
765+
BWC_VERSION: ["7.17.26", "8.15.5"]
766766
agents:
767767
provider: gcp
768768
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ BWC_VERSION:
3232
- "8.12.2"
3333
- "8.13.4"
3434
- "8.14.3"
35-
- "8.15.4"
35+
- "8.15.5"

.ci/snapshotBwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
BWC_VERSION:
22
- "7.17.26"
3-
- "8.15.4"
3+
- "8.15.5"

build-tools-internal/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
elasticsearch = 8.15.4
1+
elasticsearch = 8.15.5
22
lucene = 9.11.1
33

44
bundled_jdk_vendor = openjdk

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
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);
189189
public static final Version V_8_15_4 = new Version(8_15_04_99);
190-
public static final Version CURRENT = V_8_15_4;
190+
public static final Version V_8_15_5 = new Version(8_15_05_99);
191+
public static final Version CURRENT = V_8_15_5;
191192

192193
private static final NavigableMap<Integer, Version> VERSION_IDS;
193194
private static final Map<String, Version> VERSION_STRINGS;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,4 @@
132132
8.15.1,8702002
133133
8.15.2,8702003
134134
8.15.3,8702003
135+
8.15.4,8702003

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,4 @@
132132
8.15.1,8512000
133133
8.15.2,8512000
134134
8.15.3,8512000
135+
8.15.4,8512000

0 commit comments

Comments
 (0)