Skip to content

Commit 2fbdb15

Browse files
author
elasticsearchmachine
committed
Bump versions after 9.0.1 release
1 parent 2e9aa86 commit 2fbdb15

File tree

12 files changed

+21
-17
lines changed

12 files changed

+21
-17
lines changed

.backportrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"targetBranchChoices" : [ "main", "9.0", "8.18", "8.17", "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-
"^v9.0.1$" : "main",
6+
"^v9.0.2$" : "main",
77
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
88
}
9-
}
9+
}

.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: ["8.17.7", "8.18.2", "9.0.1"]
59+
BWC_VERSION: ["8.17.7", "8.18.2", "9.0.2"]
6060
agents:
6161
provider: gcp
6262
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-fwc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ steps:
1010
buildDirectory: /dev/shm/bk
1111
matrix:
1212
setup:
13-
FWC_VERSION: ["9.0.0"]
13+
FWC_VERSION: ["9.0.0", "9.0.1"]
1414
env:
1515
FWC_VERSION: $FWC_VERSION

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,8 +335,8 @@ steps:
335335
env:
336336
BWC_VERSION: 8.18.2
337337

338-
- label: "{{matrix.image}} / 9.0.1 / packaging-tests-upgrade"
339-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.0.1
338+
- label: "{{matrix.image}} / 9.0.2 / packaging-tests-upgrade"
339+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.0.2
340340
timeout_in_minutes: 300
341341
matrix:
342342
setup:
@@ -349,7 +349,7 @@ steps:
349349
machineType: custom-16-32768
350350
buildDirectory: /dev/shm/bk
351351
env:
352-
BWC_VERSION: 9.0.1
352+
BWC_VERSION: 9.0.2
353353

354354
- group: packaging-tests-windows
355355
steps:

.buildkite/pipelines/periodic.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -363,8 +363,8 @@ steps:
363363
- signal_reason: agent_stop
364364
limit: 3
365365

366-
- label: 9.0.1 / bwc
367-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v9.0.1#bwcTest
366+
- label: 9.0.2 / bwc
367+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v9.0.2#bwcTest
368368
timeout_in_minutes: 300
369369
agents:
370370
provider: gcp
@@ -373,7 +373,7 @@ steps:
373373
buildDirectory: /dev/shm/bk
374374
preemptible: true
375375
env:
376-
BWC_VERSION: 9.0.1
376+
BWC_VERSION: 9.0.2
377377
retry:
378378
automatic:
379379
- exit_status: "-1"
@@ -448,7 +448,7 @@ steps:
448448
setup:
449449
ES_RUNTIME_JAVA:
450450
- openjdk21
451-
BWC_VERSION: ["8.17.7", "8.18.2", "9.0.1"]
451+
BWC_VERSION: ["8.17.7", "8.18.2", "9.0.2"]
452452
agents:
453453
provider: gcp
454454
image: family/elasticsearch-ubuntu-2004
@@ -490,7 +490,7 @@ steps:
490490
ES_RUNTIME_JAVA:
491491
- openjdk21
492492
- openjdk23
493-
BWC_VERSION: ["8.17.7", "8.18.2", "9.0.1"]
493+
BWC_VERSION: ["8.17.7", "8.18.2", "9.0.2"]
494494
agents:
495495
provider: gcp
496496
image: family/elasticsearch-ubuntu-2004
@@ -613,7 +613,7 @@ steps:
613613
image: family/elasticsearch-ubuntu-2004
614614
machineType: n2-standard-8
615615
buildDirectory: /dev/shm/bk
616-
if: build.branch == "main" || build.branch == "8.x" || build.branch == "7.17"
616+
if: build.branch == "main" || build.branch == "8.19" || build.branch == "7.17"
617617
- label: check-branch-consistency
618618
command: .ci/scripts/run-gradle.sh branchConsistency
619619
timeout_in_minutes: 15

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ BWC_VERSION:
1818
- "8.16.6"
1919
- "8.17.7"
2020
- "8.18.2"
21-
- "9.0.1"
21+
- "9.0.2"

.ci/snapshotBwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
BWC_VERSION:
22
- "8.17.7"
33
- "8.18.2"
4-
- "9.0.1"
4+
- "9.0.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 = 9.0.1
1+
elasticsearch = 9.0.2
22
lucene = 10.1.0
33

44
bundled_jdk_vendor = openjdk

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ static TransportVersion def(int id) {
195195
public static final TransportVersion RE_REMOVE_MIN_COMPATIBLE_SHARD_NODE_90 = def(9_000_0_08);
196196
public static final TransportVersion STORED_SCRIPT_CONTENT_LENGTH_90 = def(9_000_0_09);
197197
public static final TransportVersion INITIAL_ELASTICSEARCH_9_0_1 = def(9_000_0_10);
198+
public static final TransportVersion INITIAL_ELASTICSEARCH_9_0_2 = def(9_000_0_11);
198199

199200
/*
200201
* STOP! READ THIS FIRST! No, really,

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
208208
public static final Version V_8_18_2 = new Version(8_18_02_99);
209209
public static final Version V_9_0_0 = new Version(9_00_00_99);
210210
public static final Version V_9_0_1 = new Version(9_00_01_99);
211-
public static final Version CURRENT = V_9_0_1;
211+
public static final Version V_9_0_2 = new Version(9_00_02_99);
212+
public static final Version CURRENT = V_9_0_2;
212213

213214
private static final NavigableMap<Integer, Version> VERSION_IDS;
214215
private static final Map<String, Version> VERSION_STRINGS;

0 commit comments

Comments
 (0)