Skip to content

Commit e54283b

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.13.1 release
1 parent 602150f commit e54283b

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.1$" : "main",
6+
"^v8.13.2$" : "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
@@ -48,7 +48,7 @@ steps:
4848
timeout_in_minutes: 300
4949
matrix:
5050
setup:
51-
BWC_VERSION: ["7.17.20", "8.13.1"]
51+
BWC_VERSION: ["7.17.20", "8.13.2"]
5252
agents:
5353
provider: gcp
5454
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.1 / packaging-tests-upgrade"
533-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.13.1
532+
- label: "{{matrix.image}} / 8.13.2 / packaging-tests-upgrade"
533+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.13.2
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.1
546+
BWC_VERSION: 8.13.2
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
@@ -312,16 +312,16 @@ steps:
312312
buildDirectory: /dev/shm/bk
313313
env:
314314
BWC_VERSION: 8.12.2
315-
- label: 8.13.1 / bwc
316-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.13.1#bwcTest
315+
- label: 8.13.2 / bwc
316+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.13.2#bwcTest
317317
timeout_in_minutes: 300
318318
agents:
319319
provider: gcp
320320
image: family/elasticsearch-ubuntu-2004
321321
machineType: n1-standard-32
322322
buildDirectory: /dev/shm/bk
323323
env:
324-
BWC_VERSION: 8.13.1
324+
BWC_VERSION: 8.13.2
325325
- label: concurrent-search-tests
326326
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true -Dtests.jvm.argline=-Des.concurrent_search=true -Des.concurrent_search=true functionalTests
327327
timeout_in_minutes: 420
@@ -386,7 +386,7 @@ steps:
386386
setup:
387387
ES_RUNTIME_JAVA:
388388
- openjdk17
389-
BWC_VERSION: ["7.17.20", "8.13.1"]
389+
BWC_VERSION: ["7.17.20", "8.13.2"]
390390
agents:
391391
provider: gcp
392392
image: family/elasticsearch-ubuntu-2004
@@ -428,7 +428,7 @@ steps:
428428
- graalvm-ce17
429429
- openjdk17
430430
- openjdk21
431-
BWC_VERSION: ["7.17.20", "8.13.1"]
431+
BWC_VERSION: ["7.17.20", "8.13.2"]
432432
agents:
433433
provider: gcp
434434
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.1"
33+
- "8.13.2"

.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.20"
3-
- "8.13.1"
3+
- "8.13.2"

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.1
1+
elasticsearch = 8.13.2
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
@@ -169,7 +169,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
169169
public static final Version V_8_12_2 = new Version(8_12_02_99);
170170
public static final Version V_8_13_0 = new Version(8_13_00_99);
171171
public static final Version V_8_13_1 = new Version(8_13_01_99);
172-
public static final Version CURRENT = V_8_13_1;
172+
public static final Version V_8_13_2 = new Version(8_13_02_99);
173+
public static final Version CURRENT = V_8_13_2;
173174

174175
private static final NavigableMap<Integer, Version> VERSION_IDS;
175176
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
@@ -114,3 +114,4 @@
114114
8.12.1,8560001
115115
8.12.2,8560001
116116
8.13.0,8595000
117+
8.13.1,8595000

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,4 @@
114114
8.12.1,8500010
115115
8.12.2,8500010
116116
8.13.0,8503000
117+
8.13.1,8503000

0 commit comments

Comments
 (0)