Bump to version 8.8.0

This commit is contained in:
Ryan Ernst 2023-02-08 11:46:42 -08:00
parent a6f365c51c
commit 05d1011d3d
No known key found for this signature in database
GPG key ID: 5F7EA39E15F54DCE
11 changed files with 45 additions and 7 deletions

View file

@ -1,9 +1,9 @@
{
"upstream" : "elastic/elasticsearch",
"targetBranchChoices" : [ "main", "8.6", "8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.17", "6.8" ],
"targetBranchChoices" : [ "main", "8.7", "8.6", "8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.17", "6.8" ],
"targetPRLabels" : [ "backport" ],
"branchLabelMapping" : {
"^v8.7.0$" : "main",
"^v8.8.0$" : "main",
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
}
}

View file

@ -85,3 +85,4 @@ BWC_VERSION:
- "8.6.1"
- "8.6.2"
- "8.7.0"
- "8.8.0"

View file

@ -2,3 +2,4 @@ BWC_VERSION:
- "7.17.10"
- "8.6.2"
- "8.7.0"
- "8.8.0"

View file

@ -1,4 +1,4 @@
elasticsearch = 8.7.0
elasticsearch = 8.8.0
lucene = 9.5.0
bundled_jdk_vendor = openjdk

View file

@ -1,5 +1,6 @@
include::migration_intro.asciidoc[]
* <<migrating-8.8,Migrating to 8.8>>
* <<migrating-8.7,Migrating to 8.7>>
* <<migrating-8.6,Migrating to 8.6>>
* <<migrating-8.5,Migrating to 8.5>>
@ -9,6 +10,7 @@ include::migration_intro.asciidoc[]
* <<migrating-8.1,Migrating to 8.1>>
* <<migrating-8.0,Migrating to 8.0>>
include::migrate_8_8.asciidoc[]
include::migrate_8_7.asciidoc[]
include::migrate_8_6.asciidoc[]
include::migrate_8_5.asciidoc[]

View file

@ -0,0 +1,22 @@
[[migrating-8.8]]
== Migrating to 8.8
++++
<titleabbrev>8.8</titleabbrev>
++++
This section discusses the changes that you need to be aware of when migrating
your application to {es} 8.8.
See also {ref-bare}/8.8/release-highlights.html[What's new in 8.8] and <<es-release-notes>>.
coming::[8.8.0]
[discrete]
[[breaking-changes-8.8]]
=== Breaking changes
// tag::notable-breaking-changes[]
There are no breaking changes in {es} 8.8.
// end::notable-breaking-changes[]

View file

@ -6,7 +6,7 @@
This section summarizes the changes in each release.
* <<release-notes-8.8.0>>
* <<release-notes-8.7.0>>
* <<release-notes-8.6.1>>
* <<release-notes-8.6.0>>
@ -40,6 +40,7 @@ This section summarizes the changes in each release.
--
include::release-notes/8.8.0.asciidoc[]
include::release-notes/8.7.0.asciidoc[]
include::release-notes/8.6.1.asciidoc[]
include::release-notes/8.6.0.asciidoc[]

View file

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

View file

@ -12,7 +12,8 @@ endif::[]
// Add previous release to the list
Other versions:
{ref-bare}/8.6/release-highlights.html[8.6]
{ref-bare}/8.7/release-highlights.html[8.7]
| {ref-bare}/8.6/release-highlights.html[8.6]
| {ref-bare}/8.5/release-highlights.html[8.5]
| {ref-bare}/8.4/release-highlights.html[8.4]
| {ref-bare}/8.3/release-highlights.html[8.3]

View file

@ -133,6 +133,7 @@ public class TransportVersion implements Comparable<TransportVersion> {
public static final TransportVersion V_8_6_1 = new TransportVersion(8_06_01_99, "9f113acb-1b21-4fda-bef9-2a3e669b5c7b");
public static final TransportVersion V_8_6_2 = new TransportVersion(8_06_02_99, "5a82fb68-b265-4a06-97c5-53496f823f51");
public static final TransportVersion V_8_7_0 = new TransportVersion(8_07_00_99, "f1ee7a85-4fa6-43f5-8679-33e2b750448b");
public static final TransportVersion V_8_8_0 = new TransportVersion(8_08_00_99, "f64fe576-0767-4ec3-984e-3e30b33b6c46");
/*
* READ THE JAVADOC ABOVE BEFORE ADDING NEW TRANSPORT VERSIONS
* Detached transport versions added below here. Starts at ES major version 10 equivalent.
@ -148,7 +149,7 @@ public class TransportVersion implements Comparable<TransportVersion> {
*/
/** Reference to the current transport version */
public static final TransportVersion CURRENT = V_8_7_0;
public static final TransportVersion CURRENT = V_8_8_0;
/** Reference to the earliest compatible transport version to this version of the codebase */
// TODO: can we programmatically calculate or check this? Don't want to introduce circular ref between Version/TransportVersion

View file

@ -138,7 +138,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_8_6_2 = new Version(8_06_02_99, TransportVersion.V_8_6_2, org.apache.lucene.util.Version.LUCENE_9_4_2);
public static final Version V_8_7_0 = new Version(8_07_00_99, TransportVersion.V_8_7_0, org.apache.lucene.util.Version.LUCENE_9_5_0);
public static final Version CURRENT = V_8_7_0;
public static final Version V_8_8_0 = new Version(8_08_00_99, TransportVersion.V_8_8_0, org.apache.lucene.util.Version.LUCENE_9_5_0);
public static final Version CURRENT = V_8_8_0;
private static final NavigableMap<Integer, Version> VERSION_IDS;
private static final Map<String, Version> VERSION_STRINGS;