Skip to content

Commit d165305

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.14.2 release
1 parent 74a99ab commit d165305

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.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.14.2$" : "main",
6+
"^v8.14.3$" : "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
@@ -62,7 +62,7 @@ steps:
6262
timeout_in_minutes: 300
6363
matrix:
6464
setup:
65-
BWC_VERSION: ["7.17.23", "8.14.2"]
65+
BWC_VERSION: ["7.17.23", "8.14.3"]
6666
agents:
6767
provider: gcp
6868
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -577,8 +577,8 @@ steps:
577577
env:
578578
BWC_VERSION: 8.13.4
579579

580-
- label: "{{matrix.image}} / 8.14.2 / packaging-tests-upgrade"
581-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.14.2
580+
- label: "{{matrix.image}} / 8.14.3 / packaging-tests-upgrade"
581+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.14.3
582582
timeout_in_minutes: 300
583583
matrix:
584584
setup:
@@ -592,7 +592,7 @@ steps:
592592
buildDirectory: /dev/shm/bk
593593
diskSizeGb: 250
594594
env:
595-
BWC_VERSION: 8.14.2
595+
BWC_VERSION: 8.14.3
596596

597597
- group: packaging-tests-windows
598598
steps:

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -642,8 +642,8 @@ steps:
642642
- signal_reason: agent_stop
643643
limit: 3
644644

645-
- label: 8.14.2 / bwc
646-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.14.2#bwcTest
645+
- label: 8.14.3 / bwc
646+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.14.3#bwcTest
647647
timeout_in_minutes: 300
648648
agents:
649649
provider: gcp
@@ -653,7 +653,7 @@ steps:
653653
preemptible: true
654654
diskSizeGb: 250
655655
env:
656-
BWC_VERSION: 8.14.2
656+
BWC_VERSION: 8.14.3
657657
retry:
658658
automatic:
659659
- exit_status: "-1"
@@ -731,7 +731,7 @@ steps:
731731
setup:
732732
ES_RUNTIME_JAVA:
733733
- openjdk17
734-
BWC_VERSION: ["7.17.23", "8.14.2"]
734+
BWC_VERSION: ["7.17.23", "8.14.3"]
735735
agents:
736736
provider: gcp
737737
image: family/elasticsearch-ubuntu-2004
@@ -779,7 +779,7 @@ steps:
779779
- openjdk17
780780
- openjdk21
781781
- openjdk22
782-
BWC_VERSION: ["7.17.23", "8.14.2"]
782+
BWC_VERSION: ["7.17.23", "8.14.3"]
783783
agents:
784784
provider: gcp
785785
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ BWC_VERSION:
3131
- "8.11.4"
3232
- "8.12.2"
3333
- "8.13.4"
34-
- "8.14.2"
34+
- "8.14.3"

.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.23"
3-
- "8.14.2"
3+
- "8.14.3"

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.14.2
1+
elasticsearch = 8.14.3
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
@@ -178,7 +178,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
178178
public static final Version V_8_14_0 = new Version(8_14_00_99);
179179
public static final Version V_8_14_1 = new Version(8_14_01_99);
180180
public static final Version V_8_14_2 = new Version(8_14_02_99);
181-
public static final Version CURRENT = V_8_14_2;
181+
public static final Version V_8_14_3 = new Version(8_14_03_99);
182+
public static final Version CURRENT = V_8_14_3;
182183

183184
private static final NavigableMap<Integer, Version> VERSION_IDS;
184185
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
@@ -123,3 +123,4 @@
123123
8.13.4,8595001
124124
8.14.0,8636001
125125
8.14.1,8636001
126+
8.14.2,8636001

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,4 @@
123123
8.13.4,8503000
124124
8.14.0,8505000
125125
8.14.1,8505000
126+
8.14.2,8505000

0 commit comments

Comments
 (0)