Skip to content

Commit 917caf5

Browse files
author
elasticsearchmachine
committed
Bump versions after 8.16.3 release
1 parent 2f1c2f8 commit 917caf5

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.x", "8.16", "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.16.3$" : "main",
6+
"^v8.16.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.28", "8.16.3"]
59+
BWC_VERSION: ["7.17.28", "8.16.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
@@ -576,8 +576,8 @@ steps:
576576
env:
577577
BWC_VERSION: 8.15.5
578578

579-
- label: "{{matrix.image}} / 8.16.3 / packaging-tests-upgrade"
580-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.16.3
579+
- label: "{{matrix.image}} / 8.16.4 / packaging-tests-upgrade"
580+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.16.4
581581
timeout_in_minutes: 300
582582
matrix:
583583
setup:
@@ -590,7 +590,7 @@ steps:
590590
machineType: custom-16-32768
591591
buildDirectory: /dev/shm/bk
592592
env:
593-
BWC_VERSION: 8.16.3
593+
BWC_VERSION: 8.16.4
594594

595595
- group: packaging-tests-windows
596596
steps:

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -648,8 +648,8 @@ steps:
648648
- signal_reason: agent_stop
649649
limit: 3
650650

651-
- label: 8.16.3 / bwc
652-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.16.3#bwcTest
651+
- label: 8.16.4 / bwc
652+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.16.4#bwcTest
653653
timeout_in_minutes: 300
654654
agents:
655655
provider: gcp
@@ -658,7 +658,7 @@ steps:
658658
buildDirectory: /dev/shm/bk
659659
preemptible: true
660660
env:
661-
BWC_VERSION: 8.16.3
661+
BWC_VERSION: 8.16.4
662662
retry:
663663
automatic:
664664
- exit_status: "-1"
@@ -733,7 +733,7 @@ steps:
733733
setup:
734734
ES_RUNTIME_JAVA:
735735
- openjdk17
736-
BWC_VERSION: ["7.17.28", "8.16.3"]
736+
BWC_VERSION: ["7.17.28", "8.16.4"]
737737
agents:
738738
provider: gcp
739739
image: family/elasticsearch-ubuntu-2004
@@ -781,7 +781,7 @@ steps:
781781
- openjdk21
782782
- openjdk22
783783
- openjdk23
784-
BWC_VERSION: ["7.17.28", "8.16.3"]
784+
BWC_VERSION: ["7.17.28", "8.16.4"]
785785
agents:
786786
provider: gcp
787787
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ BWC_VERSION:
3333
- "8.13.4"
3434
- "8.14.3"
3535
- "8.15.5"
36-
- "8.16.3"
36+
- "8.16.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.28"
3-
- "8.16.3"
3+
- "8.16.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.16.3
1+
elasticsearch = 8.16.4
22
lucene = 9.12.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
@@ -195,7 +195,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
195195
public static final Version V_8_16_1 = new Version(8_16_01_99);
196196
public static final Version V_8_16_2 = new Version(8_16_02_99);
197197
public static final Version V_8_16_3 = new Version(8_16_03_99);
198-
public static final Version CURRENT = V_8_16_3;
198+
public static final Version V_8_16_4 = new Version(8_16_04_99);
199+
public static final Version CURRENT = V_8_16_4;
199200

200201
private static final NavigableMap<Integer, Version> VERSION_IDS;
201202
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
@@ -139,3 +139,4 @@
139139
8.16.0,8772001
140140
8.16.1,8772004
141141
8.16.2,8772004
142+
8.16.3,8772004

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,4 @@
139139
8.16.0,8518000
140140
8.16.1,8518000
141141
8.16.2,8518000
142+
8.16.3,8518000

0 commit comments

Comments
 (0)