Răsfoiți Sursa

Bump to version 8.11.0

Michael Peterson 2 ani în urmă
părinte
comite
4d3fb8d993

+ 2 - 2
.backportrc.json

@@ -1,9 +1,9 @@
 {
   "upstream" : "elastic/elasticsearch",
-  "targetBranchChoices" : [ "main", "8.9", "8.8", "8.7", "8.6", "8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.17", "6.8" ],
+  "targetBranchChoices" : [ "main", "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.10.0$" : "main",
+    "^v8.11.0$" : "main",
     "^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
   }
 }

+ 1 - 0
.ci/bwcVersions

@@ -95,3 +95,4 @@ BWC_VERSION:
   - "8.9.0"
   - "8.9.1"
   - "8.10.0"
+  - "8.11.0"

+ 1 - 0
.ci/snapshotBwcVersions

@@ -2,3 +2,4 @@ BWC_VERSION:
   - "7.17.13"
   - "8.9.1"
   - "8.10.0"
+  - "8.11.0"

+ 1 - 1
build-tools-internal/version.properties

@@ -1,4 +1,4 @@
-elasticsearch     = 8.10.0
+elasticsearch     = 8.11.0
 lucene            = 9.7.0
 
 bundled_jdk_vendor = openjdk

+ 2 - 0
docs/reference/migration/index.asciidoc

@@ -1,5 +1,6 @@
 include::migration_intro.asciidoc[]
 
+* <<migrating-8.11,Migrating to 8.11>>
 * <<migrating-8.10,Migrating to 8.10>>
 * <<migrating-8.9,Migrating to 8.9>>
 * <<migrating-8.8,Migrating to 8.8>>
@@ -12,6 +13,7 @@ include::migration_intro.asciidoc[]
 * <<migrating-8.1,Migrating to 8.1>>
 * <<migrating-8.0,Migrating to 8.0>>
 
+include::migrate_8_11.asciidoc[]
 include::migrate_8_10.asciidoc[]
 include::migrate_8_9.asciidoc[]
 include::migrate_8_8.asciidoc[]

+ 20 - 0
docs/reference/migration/migrate_8_11.asciidoc

@@ -0,0 +1,20 @@
+[[migrating-8.11]]
+== Migrating to 8.11
+++++
+<titleabbrev>8.11</titleabbrev>
+++++
+
+This section discusses the changes that you need to be aware of when migrating
+your application to {es} 8.11.
+
+See also <<release-highlights>> and <<es-release-notes>>.
+
+coming::[8.11.0]
+
+
+[discrete]
+[[breaking-changes-8.11]]
+=== Breaking changes
+
+There are no breaking changes in {es} 8.11.
+

+ 2 - 0
docs/reference/release-notes.asciidoc

@@ -6,6 +6,7 @@
 
 This section summarizes the changes in each release.
 
+* <<release-notes-8.11.0>>
 * <<release-notes-8.10.0>>
 * <<release-notes-8.9.0>>
 * <<release-notes-8.8.2>>
@@ -46,6 +47,7 @@ This section summarizes the changes in each release.
 
 --
 
+include::release-notes/8.11.0.asciidoc[]
 include::release-notes/8.10.0.asciidoc[]
 include::release-notes/8.9.0.asciidoc[]
 include::release-notes/8.8.2.asciidoc[]

+ 8 - 0
docs/reference/release-notes/8.11.0.asciidoc

@@ -0,0 +1,8 @@
+[[release-notes-8.11.0]]
+== {es} version 8.11.0
+
+coming[8.11.0]
+
+Also see <<breaking-changes-8.11,Breaking changes in 8.11>>.
+
+

Fișier diff suprimat deoarece este prea mare
+ 2 - 5
docs/reference/release-notes/highlights.asciidoc


+ 2 - 1
server/src/main/java/org/elasticsearch/TransportVersion.java

@@ -173,6 +173,7 @@ public record TransportVersion(int id) implements VersionId<TransportVersion> {
     public static final TransportVersion V_8_500_058 = registerTransportVersion(8_500_058, "41d9c98a-1de2-4dc1-86f1-abd4cc1bef57");
     public static final TransportVersion V_8_500_059 = registerTransportVersion(8_500_059, "2f2090c0-7cd0-4a10-8f02-63d26073604f");
     public static final TransportVersion V_8_500_060 = registerTransportVersion(8_500_060, "ec065a44-b468-4f8a-aded-7b90ca8d792b");
+    // 8.10.0 release version is:
     public static final TransportVersion V_8_500_061 = registerTransportVersion(8_500_061, "4e07f830-8be4-448c-851e-62b3d2f0bf0a");
     /*
      * STOP! READ THIS FIRST! No, really,
@@ -220,7 +221,7 @@ public record TransportVersion(int id) implements VersionId<TransportVersion> {
      * Reference to the minimum transport version that can be used with CCS.
      * This should be the transport version used by the previous minor release.
      */
-    public static final TransportVersion MINIMUM_CCS_VERSION = V_8_500_020;
+    public static final TransportVersion MINIMUM_CCS_VERSION = V_8_500_061;
 
     static {
         // see comment on IDS field

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

@@ -148,7 +148,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
     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_9_1 = new Version(8_09_01_99, IndexVersion.V_8_9_1);
     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;
+    public static final Version V_8_11_0 = new Version(8_11_00_99, IndexVersion.V_8_11_0);
+    public static final Version CURRENT = V_8_11_0;
 
     private static final NavigableMap<Integer, Version> VERSION_IDS;
     private static final Map<String, Version> VERSION_STRINGS;

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

@@ -179,6 +179,7 @@ public record IndexVersion(int id, Version luceneVersion) implements VersionId<I
     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_9_1 = registerIndexVersion(8_09_01_99, Version.LUCENE_9_7_0, "955a80ac-f70c-40a5-9399-1d8a1e5d342d");
     public static final IndexVersion V_8_10_0 = registerIndexVersion(8_10_00_99, Version.LUCENE_9_7_0, "2e107286-12ad-4c51-9a6f-f8943663b6e7");
+    public static final IndexVersion V_8_11_0 = registerIndexVersion(8_11_00_99, Version.LUCENE_9_7_0, "f08382c0-06ab-41f4-a56a-cf5397275627");
     /*
      * READ THE JAVADOC ABOVE BEFORE ADDING NEW INDEX VERSIONS
      * Detached index versions added below here.

Unele fișiere nu au fost afișate deoarece prea multe fișiere au fost modificate în acest diff