Skip to content

Commit 6f3b812

Browse files
elasticsearchmachinealbertzaharovits
authored andcommitted
Bump versions after 8.14.3 release
1 parent e21d2be commit 6f3b812

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

.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.3", "8.15.0", "8.16.0"]
65+
BWC_VERSION: ["7.17.23", "8.14.4", "8.15.0", "8.16.0"]
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.3 / packaging-tests-upgrade"
581-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.14.3
580+
- label: "{{matrix.image}} / 8.14.4 / packaging-tests-upgrade"
581+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.14.4
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.3
595+
BWC_VERSION: 8.14.4
596596

597597
- label: "{{matrix.image}} / 8.15.0 / packaging-tests-upgrade"
598598
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.15.0

.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.3 / bwc
646-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.14.3#bwcTest
645+
- label: 8.14.4 / bwc
646+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.14.4#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.3
656+
BWC_VERSION: 8.14.4
657657
retry:
658658
automatic:
659659
- exit_status: "-1"
@@ -771,7 +771,7 @@ steps:
771771
setup:
772772
ES_RUNTIME_JAVA:
773773
- openjdk17
774-
BWC_VERSION: ["7.17.23", "8.14.3", "8.15.0", "8.16.0"]
774+
BWC_VERSION: ["7.17.23", "8.14.4", "8.15.0", "8.16.0"]
775775
agents:
776776
provider: gcp
777777
image: family/elasticsearch-ubuntu-2004
@@ -821,7 +821,7 @@ steps:
821821
- openjdk21
822822
- openjdk22
823823
- openjdk23
824-
BWC_VERSION: ["7.17.23", "8.14.3", "8.15.0", "8.16.0"]
824+
BWC_VERSION: ["7.17.23", "8.14.4", "8.15.0", "8.16.0"]
825825
agents:
826826
provider: gcp
827827
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ BWC_VERSION:
3131
- "8.11.4"
3232
- "8.12.2"
3333
- "8.13.4"
34-
- "8.14.3"
34+
- "8.14.4"
3535
- "8.15.0"
3636
- "8.16.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.23"
3-
- "8.14.3"
3+
- "8.14.4"
44
- "8.15.0"
55
- "8.16.0"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
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);
181181
public static final Version V_8_14_3 = new Version(8_14_03_99);
182+
public static final Version V_8_14_4 = new Version(8_14_04_99);
182183
public static final Version V_8_15_0 = new Version(8_15_00_99);
183184
public static final Version V_8_16_0 = new Version(8_16_00_99);
184185
public static final Version CURRENT = V_8_16_0;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,4 @@
124124
8.14.0,8636001
125125
8.14.1,8636001
126126
8.14.2,8636001
127+
8.14.3,8636001

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,4 @@
124124
8.14.0,8505000
125125
8.14.1,8505000
126126
8.14.2,8505000
127+
8.14.3,8505000

0 commit comments

Comments
 (0)