Skip to content

Commit

Permalink
Bump versions after 8.11.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brianseeders committed Dec 7, 2023
1 parent 851cab6 commit ee68cd4
Showing 8 changed files with 33 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .backportrc.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"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" ],
"targetPRLabels" : [ "backport" ],
"branchLabelMapping" : {
"^v8.11.2$" : "main",
"^v8.11.3$" : "main",
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
}
}
2 changes: 1 addition & 1 deletion .buildkite/pipelines/intake.yml
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ steps:
timeout_in_minutes: 300
matrix:
setup:
BWC_VERSION: ["7.17.16", "8.11.2"]
BWC_VERSION: ["7.17.16", "8.11.3"]
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
16 changes: 16 additions & 0 deletions .buildkite/pipelines/periodic-packaging.yml
Original file line number Diff line number Diff line change
@@ -1745,6 +1745,22 @@ steps:
env:
BWC_VERSION: 8.11.2

- label: "{{matrix.image}} / 8.11.3 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.11.3
timeout_in_minutes: 300
matrix:
setup:
image:
- rocky-8
- ubuntu-2004
agents:
provider: gcp
image: family/elasticsearch-{{matrix.image}}
machineType: custom-16-32768
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.11.3

- group: packaging-tests-windows
steps:
- label: "{{matrix.image}} / packaging-tests-windows"
10 changes: 10 additions & 0 deletions .buildkite/pipelines/periodic.yml
Original file line number Diff line number Diff line change
@@ -1072,6 +1072,16 @@ steps:
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.11.2
- label: 8.11.3 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.11.3#bwcTest
timeout_in_minutes: 300
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
machineType: n1-standard-32
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.11.3
- label: concurrent-search-tests
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true -Dtests.jvm.argline=-Des.concurrent_search=true -Des.concurrent_search=true check
timeout_in_minutes: 420
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
@@ -106,3 +106,4 @@ BWC_VERSION:
- "8.11.0"
- "8.11.1"
- "8.11.2"
- "8.11.3"
2 changes: 1 addition & 1 deletion .ci/snapshotBwcVersions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
BWC_VERSION:
- "7.17.16"
- "8.11.2"
- "8.11.3"
2 changes: 1 addition & 1 deletion build-tools-internal/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch = 8.11.2
elasticsearch = 8.11.3
lucene = 9.8.0

bundled_jdk_vendor = openjdk
3 changes: 2 additions & 1 deletion server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
@@ -157,7 +157,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
public static final Version V_8_11_0 = new Version(8_11_00_99);
public static final Version V_8_11_1 = new Version(8_11_01_99);
public static final Version V_8_11_2 = new Version(8_11_02_99);
public static final Version CURRENT = V_8_11_2;
public static final Version V_8_11_3 = new Version(8_11_03_99);
public static final Version CURRENT = V_8_11_3;

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

0 comments on commit ee68cd4

Please sign in to comment.