Skip to content

Commit fc62674

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.13.3 release
1 parent c62df16 commit fc62674

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.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.13.3$" : "main",
6+
"^v8.13.4$" : "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.21", "8.13.3"]
59+
BWC_VERSION: ["7.17.21", "8.13.4"]
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
@@ -529,8 +529,8 @@ steps:
529529
env:
530530
BWC_VERSION: 8.12.2
531531

532-
- label: "{{matrix.image}} / 8.13.3 / packaging-tests-upgrade"
533-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.13.3
532+
- label: "{{matrix.image}} / 8.13.4 / packaging-tests-upgrade"
533+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.13.4
534534
timeout_in_minutes: 300
535535
matrix:
536536
setup:
@@ -543,7 +543,7 @@ steps:
543543
machineType: custom-16-32768
544544
buildDirectory: /dev/shm/bk
545545
env:
546-
BWC_VERSION: 8.13.3
546+
BWC_VERSION: 8.13.4
547547

548548
- group: packaging-tests-windows
549549
steps:

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -591,8 +591,8 @@ steps:
591591
- signal_reason: agent_stop
592592
limit: 3
593593

594-
- label: 8.13.3 / bwc
595-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.13.3#bwcTest
594+
- label: 8.13.4 / bwc
595+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.13.4#bwcTest
596596
timeout_in_minutes: 300
597597
agents:
598598
provider: gcp
@@ -601,7 +601,7 @@ steps:
601601
buildDirectory: /dev/shm/bk
602602
preemptible: true
603603
env:
604-
BWC_VERSION: 8.13.3
604+
BWC_VERSION: 8.13.4
605605
retry:
606606
automatic:
607607
- exit_status: "-1"
@@ -676,7 +676,7 @@ steps:
676676
setup:
677677
ES_RUNTIME_JAVA:
678678
- openjdk17
679-
BWC_VERSION: ["7.17.21", "8.13.3"]
679+
BWC_VERSION: ["7.17.21", "8.13.4"]
680680
agents:
681681
provider: gcp
682682
image: family/elasticsearch-ubuntu-2004
@@ -722,7 +722,7 @@ steps:
722722
- openjdk17
723723
- openjdk21
724724
- openjdk22
725-
BWC_VERSION: ["7.17.21", "8.13.3"]
725+
BWC_VERSION: ["7.17.21", "8.13.4"]
726726
agents:
727727
provider: gcp
728728
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ BWC_VERSION:
3030
- "8.10.4"
3131
- "8.11.4"
3232
- "8.12.2"
33-
- "8.13.3"
33+
- "8.13.4"

.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.21"
3-
- "8.13.3"
3+
- "8.13.4"

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.13.3
1+
elasticsearch = 8.13.4
22
lucene = 9.10.0
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
@@ -172,7 +172,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
172172
public static final Version V_8_13_1 = new Version(8_13_01_99);
173173
public static final Version V_8_13_2 = new Version(8_13_02_99);
174174
public static final Version V_8_13_3 = new Version(8_13_03_99);
175-
public static final Version CURRENT = V_8_13_3;
175+
public static final Version V_8_13_4 = new Version(8_13_04_99);
176+
public static final Version CURRENT = V_8_13_4;
176177

177178
private static final NavigableMap<Integer, Version> VERSION_IDS;
178179
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
@@ -117,3 +117,4 @@
117117
8.13.0,8595000
118118
8.13.1,8595000
119119
8.13.2,8595000
120+
8.13.3,8595000

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,4 @@
117117
8.13.0,8503000
118118
8.13.1,8503000
119119
8.13.2,8503000
120+
8.13.3,8503000

0 commit comments

Comments
 (0)