Skip to content

Commit 2fbd68e

Browse files
committed
Bump versions after 8.16.1 release
1 parent b92e3c7 commit 2fbd68e

File tree

9 files changed

+15
-12
lines changed

9 files changed

+15
-12
lines changed

.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.26", "8.16.1", "8.17.0", "8.18.0"]
59+
BWC_VERSION: ["7.17.26", "8.16.2", "8.17.0", "8.18.0"]
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
@@ -575,8 +575,8 @@ steps:
575575
env:
576576
BWC_VERSION: 8.15.4
577577

578-
- label: "{{matrix.image}} / 8.16.1 / packaging-tests-upgrade"
579-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.16.1
578+
- label: "{{matrix.image}} / 8.16.2 / packaging-tests-upgrade"
579+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.16.2
580580
timeout_in_minutes: 300
581581
matrix:
582582
setup:
@@ -589,7 +589,7 @@ steps:
589589
machineType: custom-16-32768
590590
buildDirectory: /dev/shm/bk
591591
env:
592-
BWC_VERSION: 8.16.1
592+
BWC_VERSION: 8.16.2
593593

594594
- label: "{{matrix.image}} / 8.17.0 / packaging-tests-upgrade"
595595
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.17.0

.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.1 / bwc
652-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.16.1#bwcTest
651+
- label: 8.16.2 / bwc
652+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.16.2#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.1
661+
BWC_VERSION: 8.16.2
662662
retry:
663663
automatic:
664664
- exit_status: "-1"
@@ -771,7 +771,7 @@ steps:
771771
setup:
772772
ES_RUNTIME_JAVA:
773773
- openjdk17
774-
BWC_VERSION: ["7.17.26", "8.16.1", "8.17.0", "8.18.0"]
774+
BWC_VERSION: ["7.17.26", "8.16.2", "8.17.0", "8.18.0"]
775775
agents:
776776
provider: gcp
777777
image: family/elasticsearch-ubuntu-2004
@@ -819,7 +819,7 @@ steps:
819819
- openjdk21
820820
- openjdk22
821821
- openjdk23
822-
BWC_VERSION: ["7.17.26", "8.16.1", "8.17.0", "8.18.0"]
822+
BWC_VERSION: ["7.17.26", "8.16.2", "8.17.0", "8.18.0"]
823823
agents:
824824
provider: gcp
825825
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ BWC_VERSION:
3333
- "8.13.4"
3434
- "8.14.3"
3535
- "8.15.4"
36-
- "8.16.1"
36+
- "8.16.2"
3737
- "8.17.0"
3838
- "8.18.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.26"
3-
- "8.16.1"
3+
- "8.16.2"
44
- "8.17.0"
55
- "8.18.0"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ static TransportVersion def(int id) {
268268
* Reference to the minimum transport version that can be used with CCS.
269269
* This should be the transport version used by the previous minor release.
270270
*/
271-
public static final TransportVersion MINIMUM_CCS_VERSION = INFERENCE_DONT_PERSIST_ON_READ_BACKPORT_8_16;
271+
public static final TransportVersion MINIMUM_CCS_VERSION = QUERY_RULES_LIST_INCLUDES_TYPES_BACKPORT_8_16;
272272

273273
static final NavigableMap<Integer, TransportVersion> VERSION_IDS = getAllVersionIds(TransportVersions.class);
274274

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
190190
public static final Version V_8_15_4 = new Version(8_15_04_99);
191191
public static final Version V_8_16_0 = new Version(8_16_00_99);
192192
public static final Version V_8_16_1 = new Version(8_16_01_99);
193+
public static final Version V_8_16_2 = new Version(8_16_02_99);
193194
public static final Version V_8_17_0 = new Version(8_17_00_99);
194195
public static final Version V_8_18_0 = new Version(8_18_00_99);
195196
public static final Version CURRENT = V_8_18_0;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,4 @@
134134
8.15.3,8702003
135135
8.15.4,8702003
136136
8.16.0,8772001
137+
8.16.1,8772004

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,4 @@
134134
8.15.3,8512000
135135
8.15.4,8512000
136136
8.16.0,8518000
137+
8.16.1,8518000

0 commit comments

Comments
 (0)