Przeglądaj źródła

Bump versions after 8.11.0 release

Matt Culbreth 1 rok temu
rodzic
commit
e2fb4515bb

+ 1 - 1
.buildkite/pipelines/intake.yml

@@ -40,7 +40,7 @@ steps:
         timeout_in_minutes: 300
         matrix:
           setup:
-            BWC_VERSION: ["7.17.15", "8.10.5", "8.11.0", "8.12.0"]
+            BWC_VERSION: ["7.17.15", "8.11.1", "8.12.0"]
         agents:
           provider: gcp
           image: family/elasticsearch-ubuntu-2004

+ 6 - 6
.buildkite/pipelines/periodic-packaging.yml

@@ -1681,8 +1681,8 @@ steps:
         env:
           BWC_VERSION: 8.10.4
 
-      - label: "{{matrix.image}} / 8.10.5 / packaging-tests-upgrade"
-        command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.10.5
+      - label: "{{matrix.image}} / 8.11.0 / packaging-tests-upgrade"
+        command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.11.0
         timeout_in_minutes: 300
         matrix:
           setup:
@@ -1695,10 +1695,10 @@ steps:
           machineType: custom-16-32768
           buildDirectory: /dev/shm/bk
         env:
-          BWC_VERSION: 8.10.5
+          BWC_VERSION: 8.11.0
 
-      - label: "{{matrix.image}} / 8.11.0 / packaging-tests-upgrade"
-        command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.11.0
+      - label: "{{matrix.image}} / 8.11.1 / packaging-tests-upgrade"
+        command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.11.1
         timeout_in_minutes: 300
         matrix:
           setup:
@@ -1711,7 +1711,7 @@ steps:
           machineType: custom-16-32768
           buildDirectory: /dev/shm/bk
         env:
-          BWC_VERSION: 8.11.0
+          BWC_VERSION: 8.11.1
 
       - label: "{{matrix.image}} / 8.12.0 / packaging-tests-upgrade"
         command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.12.0

+ 6 - 6
.buildkite/pipelines/periodic.yml

@@ -1032,8 +1032,8 @@ steps:
           buildDirectory: /dev/shm/bk
         env:
           BWC_VERSION: 8.10.4
-      - label: 8.10.5 / bwc
-        command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.10.5#bwcTest
+      - label: 8.11.0 / bwc
+        command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.11.0#bwcTest
         timeout_in_minutes: 300
         agents:
           provider: gcp
@@ -1041,9 +1041,9 @@ steps:
           machineType: custom-32-98304
           buildDirectory: /dev/shm/bk
         env:
-          BWC_VERSION: 8.10.5
-      - label: 8.11.0 / bwc
-        command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.11.0#bwcTest
+          BWC_VERSION: 8.11.0
+      - label: 8.11.1 / bwc
+        command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.11.1#bwcTest
         timeout_in_minutes: 300
         agents:
           provider: gcp
@@ -1051,7 +1051,7 @@ steps:
           machineType: custom-32-98304
           buildDirectory: /dev/shm/bk
         env:
-          BWC_VERSION: 8.11.0
+          BWC_VERSION: 8.11.1
       - label: 8.12.0 / bwc
         command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.12.0#bwcTest
         timeout_in_minutes: 300

+ 1 - 1
.ci/bwcVersions

@@ -102,6 +102,6 @@ BWC_VERSION:
   - "8.10.2"
   - "8.10.3"
   - "8.10.4"
-  - "8.10.5"
   - "8.11.0"
+  - "8.11.1"
   - "8.12.0"

+ 1 - 2
.ci/snapshotBwcVersions

@@ -1,5 +1,4 @@
 BWC_VERSION:
   - "7.17.15"
-  - "8.10.5"
-  - "8.11.0"
+  - "8.11.1"
   - "8.12.0"

+ 1 - 1
server/src/main/java/org/elasticsearch/Version.java

@@ -153,8 +153,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
     public static final Version V_8_10_2 = new Version(8_10_02_99);
     public static final Version V_8_10_3 = new Version(8_10_03_99);
     public static final Version V_8_10_4 = new Version(8_10_04_99);
-    public static final Version V_8_10_5 = new Version(8_10_05_99);
     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_12_0 = new Version(8_12_00_99);
     public static final Version CURRENT = V_8_12_0;