瀏覽代碼

Bump versions after 8.9.2 release

Craig Taverner 2 年之前
父節點
當前提交
2fccd019d5

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

@@ -40,7 +40,7 @@ steps:
         timeout_in_minutes: 300
         matrix:
           setup:
-            BWC_VERSION: ["7.17.14", "8.9.2", "8.10.0", "8.11.0"]
+            BWC_VERSION: ["7.17.14", "8.9.3", "8.10.0", "8.11.0"]
         agents:
           provider: gcp
           image: family/elasticsearch-ubuntu-2004

+ 16 - 0
.buildkite/pipelines/periodic-packaging.yml

@@ -1584,6 +1584,22 @@ steps:
         env:
           BWC_VERSION: 8.9.2
 
+      - label: "{{matrix.image}} / 8.9.3 / packaging-tests-upgrade"
+        command: ./.ci/scripts/packaging-test.sh --build-cache -Dorg.elasticsearch.build.cache.url=https://gradle-enterprise.elastic.co/cache/ -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.9.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.9.3
+
       - label: "{{matrix.image}} / 8.10.0 / packaging-tests-upgrade"
         command: ./.ci/scripts/packaging-test.sh --build-cache -Dorg.elasticsearch.build.cache.url=https://gradle-enterprise.elastic.co/cache/ -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.10.0
         timeout_in_minutes: 300

+ 10 - 0
.buildkite/pipelines/periodic.yml

@@ -972,6 +972,16 @@ steps:
           buildDirectory: /dev/shm/bk
         env:
           BWC_VERSION: 8.9.2
+      - label: 8.9.3 / bwc
+        command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.9.3#bwcTest
+        timeout_in_minutes: 300
+        agents:
+          provider: gcp
+          image: family/elasticsearch-ubuntu-2004
+          machineType: custom-32-98304
+          buildDirectory: /dev/shm/bk
+        env:
+          BWC_VERSION: 8.9.3
       - label: 8.10.0 / bwc
         command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.10.0#bwcTest
         timeout_in_minutes: 300

+ 1 - 0
.ci/bwcVersions

@@ -96,5 +96,6 @@ BWC_VERSION:
   - "8.9.0"
   - "8.9.1"
   - "8.9.2"
+  - "8.9.3"
   - "8.10.0"
   - "8.11.0"

+ 1 - 1
.ci/snapshotBwcVersions

@@ -1,5 +1,5 @@
 BWC_VERSION:
   - "7.17.14"
-  - "8.9.2"
+  - "8.9.3"
   - "8.10.0"
   - "8.11.0"

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

@@ -147,6 +147,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
     public static final Version V_8_9_0 = new Version(8_09_00_99);
     public static final Version V_8_9_1 = new Version(8_09_01_99);
     public static final Version V_8_9_2 = new Version(8_09_02_99);
+    public static final Version V_8_9_3 = new Version(8_09_03_99);
     public static final Version V_8_10_0 = new Version(8_10_00_99);
     public static final Version V_8_11_0 = new Version(8_11_00_99);
     public static final Version CURRENT = V_8_11_0;