Skip to content

Commit ee68cd4

Browse files
committed
Bump versions after 8.11.2 release
1 parent 851cab6 commit ee68cd4

File tree

8 files changed

+33
-5
lines changed

8 files changed

+33
-5
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.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.11.2$" : "main",
6+
"^v8.11.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
@@ -40,7 +40,7 @@ steps:
4040
timeout_in_minutes: 300
4141
matrix:
4242
setup:
43-
BWC_VERSION: ["7.17.16", "8.11.2"]
43+
BWC_VERSION: ["7.17.16", "8.11.3"]
4444
agents:
4545
provider: gcp
4646
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1745,6 +1745,22 @@ steps:
17451745
env:
17461746
BWC_VERSION: 8.11.2
17471747

1748+
- label: "{{matrix.image}} / 8.11.3 / packaging-tests-upgrade"
1749+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.11.3
1750+
timeout_in_minutes: 300
1751+
matrix:
1752+
setup:
1753+
image:
1754+
- rocky-8
1755+
- ubuntu-2004
1756+
agents:
1757+
provider: gcp
1758+
image: family/elasticsearch-{{matrix.image}}
1759+
machineType: custom-16-32768
1760+
buildDirectory: /dev/shm/bk
1761+
env:
1762+
BWC_VERSION: 8.11.3
1763+
17481764
- group: packaging-tests-windows
17491765
steps:
17501766
- label: "{{matrix.image}} / packaging-tests-windows"

.buildkite/pipelines/periodic.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1072,6 +1072,16 @@ steps:
10721072
buildDirectory: /dev/shm/bk
10731073
env:
10741074
BWC_VERSION: 8.11.2
1075+
- label: 8.11.3 / bwc
1076+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.11.3#bwcTest
1077+
timeout_in_minutes: 300
1078+
agents:
1079+
provider: gcp
1080+
image: family/elasticsearch-ubuntu-2004
1081+
machineType: n1-standard-32
1082+
buildDirectory: /dev/shm/bk
1083+
env:
1084+
BWC_VERSION: 8.11.3
10751085
- label: concurrent-search-tests
10761086
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true -Dtests.jvm.argline=-Des.concurrent_search=true -Des.concurrent_search=true check
10771087
timeout_in_minutes: 420

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,4 @@ BWC_VERSION:
106106
- "8.11.0"
107107
- "8.11.1"
108108
- "8.11.2"
109+
- "8.11.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.16"
3-
- "8.11.2"
3+
- "8.11.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.11.2
1+
elasticsearch = 8.11.3
22
lucene = 9.8.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
@@ -157,7 +157,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
157157
public static final Version V_8_11_0 = new Version(8_11_00_99);
158158
public static final Version V_8_11_1 = new Version(8_11_01_99);
159159
public static final Version V_8_11_2 = new Version(8_11_02_99);
160-
public static final Version CURRENT = V_8_11_2;
160+
public static final Version V_8_11_3 = new Version(8_11_03_99);
161+
public static final Version CURRENT = V_8_11_3;
161162

162163
private static final NavigableMap<Integer, Version> VERSION_IDS;
163164
private static final Map<String, Version> VERSION_STRINGS;

0 commit comments

Comments
 (0)