소스 검색

Bump versions after 8.8.2 release

Mark Vieira 2 년 전
부모
커밋
e3fe4cfa08

+ 1 - 0
.ci/bwcVersions

@@ -90,5 +90,6 @@ BWC_VERSION:
   - "8.8.0"
   - "8.8.1"
   - "8.8.2"
+  - "8.8.3"
   - "8.9.0"
   - "8.10.0"

+ 1 - 1
.ci/snapshotBwcVersions

@@ -1,5 +1,5 @@
 BWC_VERSION:
   - "7.17.11"
-  - "8.8.2"
+  - "8.8.3"
   - "8.9.0"
   - "8.10.0"

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

@@ -142,6 +142,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
     public static final Version V_8_8_0 = new Version(8_08_00_99, IndexVersion.V_8_8_0);
     public static final Version V_8_8_1 = new Version(8_08_01_99, IndexVersion.V_8_8_1);
     public static final Version V_8_8_2 = new Version(8_08_02_99, IndexVersion.V_8_8_2);
+    public static final Version V_8_8_3 = new Version(8_08_03_99, IndexVersion.V_8_8_3);
     public static final Version V_8_9_0 = new Version(8_09_00_99, IndexVersion.V_8_9_0);
     public static final Version V_8_10_0 = new Version(8_10_00_99, IndexVersion.V_8_10_0);
     public static final Version CURRENT = V_8_10_0;

+ 1 - 1
server/src/main/java/org/elasticsearch/index/IndexVersion.java

@@ -173,13 +173,13 @@ public record IndexVersion(int id, Version luceneVersion) implements Comparable<
     public static final IndexVersion V_8_8_0 = registerIndexVersion(8_08_00_99, Version.LUCENE_9_6_0, "d6ffc8d7-f6bd-469b-8495-01688c310000");
     public static final IndexVersion V_8_8_1 = registerIndexVersion(8_08_01_99, Version.LUCENE_9_6_0, "a613499e-ec1a-4b0b-81d3-a766aff3c27c");
     public static final IndexVersion V_8_8_2 = registerIndexVersion(8_08_02_99, Version.LUCENE_9_6_0, "9db9d888-6be8-4a58-825c-f423fd8c6b00");
+    public static final IndexVersion V_8_8_3 = registerIndexVersion(8_08_03_99, Version.LUCENE_9_6_0, "e279a94a-25e8-4919-9a17-39af37b75a67");
     public static final IndexVersion V_8_9_0 = registerIndexVersion(8_09_00_99, Version.LUCENE_9_7_0, "32f6dbab-cc24-4f5b-87b5-015a848480d9");
     public static final IndexVersion V_8_10_0 = registerIndexVersion(8_10_00_99, Version.LUCENE_9_7_0, "2e107286-12ad-4c51-9a6f-f8943663b6e7");
     /*
      * READ THE JAVADOC ABOVE BEFORE ADDING NEW INDEX VERSIONS
      * Detached index versions added below here.
      */
-
     private static class CurrentHolder {
         private static final IndexVersion CURRENT = findCurrent(V_8_10_0);