Bump to version 8.12.0
This commit is contained in:
parent
99b8242291
commit
132220bf83
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"upstream" : "elastic/elasticsearch",
|
||||
"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" ],
|
||||
"targetBranchChoices" : [ "main", "8.11", "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.11.0$" : "main",
|
||||
"^v8.12.0$" : "main",
|
||||
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
|
||||
}
|
||||
}
|
|
@ -40,7 +40,7 @@ steps:
|
|||
timeout_in_minutes: 300
|
||||
matrix:
|
||||
setup:
|
||||
BWC_VERSION: ["7.17.14", "8.10.3", "8.11.0"]
|
||||
BWC_VERSION: ["7.17.14", "8.10.3", "8.11.0", "8.12.0"]
|
||||
agents:
|
||||
provider: gcp
|
||||
image: family/elasticsearch-ubuntu-2004
|
||||
|
|
|
@ -1664,6 +1664,22 @@ steps:
|
|||
env:
|
||||
BWC_VERSION: 8.11.0
|
||||
|
||||
- label: "{{matrix.image}} / 8.12.0 / packaging-tests-upgrade"
|
||||
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.12.0
|
||||
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.12.0
|
||||
|
||||
- group: packaging-tests-windows
|
||||
steps:
|
||||
- label: "{{matrix.image}} / packaging-tests-windows"
|
||||
|
|
|
@ -1022,6 +1022,16 @@ steps:
|
|||
buildDirectory: /dev/shm/bk
|
||||
env:
|
||||
BWC_VERSION: 8.11.0
|
||||
- label: 8.12.0 / bwc
|
||||
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.12.0#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.12.0
|
||||
- label: concurrent-search-tests
|
||||
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true -Dtests.jvm.argline=-Des.concurrent_search=true -Des.concurrent_search=true check
|
||||
timeout_in_minutes: 420
|
||||
|
@ -1176,6 +1186,7 @@ steps:
|
|||
provider: gcp
|
||||
image: family/elasticsearch-ubuntu-2004
|
||||
machineType: n2-standard-8
|
||||
buildDirectory: /dev/shm/bk
|
||||
- label: third-party / s3
|
||||
command: |
|
||||
export amazon_s3_bucket=elasticsearch-ci.us-west-2
|
||||
|
|
|
@ -101,3 +101,4 @@ BWC_VERSION:
|
|||
- "8.10.2"
|
||||
- "8.10.3"
|
||||
- "8.11.0"
|
||||
- "8.12.0"
|
||||
|
|
|
@ -2,3 +2,4 @@ BWC_VERSION:
|
|||
- "7.17.14"
|
||||
- "8.10.3"
|
||||
- "8.11.0"
|
||||
- "8.12.0"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
elasticsearch = 8.11.0
|
||||
elasticsearch = 8.12.0
|
||||
lucene = 9.8.0
|
||||
|
||||
bundled_jdk_vendor = openjdk
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
include::migration_intro.asciidoc[]
|
||||
|
||||
* <<migrating-8.12,Migrating to 8.12>>
|
||||
* <<migrating-8.11,Migrating to 8.11>>
|
||||
* <<migrating-8.10,Migrating to 8.10>>
|
||||
* <<migrating-8.9,Migrating to 8.9>>
|
||||
|
@ -13,6 +14,7 @@ include::migration_intro.asciidoc[]
|
|||
* <<migrating-8.1,Migrating to 8.1>>
|
||||
* <<migrating-8.0,Migrating to 8.0>>
|
||||
|
||||
include::migrate_8_12.asciidoc[]
|
||||
include::migrate_8_11.asciidoc[]
|
||||
include::migrate_8_10.asciidoc[]
|
||||
include::migrate_8_9.asciidoc[]
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
[[migrating-8.12]]
|
||||
== Migrating to 8.12
|
||||
++++
|
||||
<titleabbrev>8.12</titleabbrev>
|
||||
++++
|
||||
|
||||
This section discusses the changes that you need to be aware of when migrating
|
||||
your application to {es} 8.12.
|
||||
|
||||
See also <<release-highlights>> and <<es-release-notes>>.
|
||||
|
||||
coming::[8.12.0]
|
||||
|
||||
|
||||
[discrete]
|
||||
[[breaking-changes-8.12]]
|
||||
=== Breaking changes
|
||||
|
||||
There are no breaking changes in {es} 8.12.
|
||||
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
This section summarizes the changes in each release.
|
||||
|
||||
* <<release-notes-8.12.0>>
|
||||
* <<release-notes-8.11.0>>
|
||||
* <<release-notes-8.10.2>>
|
||||
* <<release-notes-8.10.1>>
|
||||
|
@ -51,6 +52,7 @@ This section summarizes the changes in each release.
|
|||
|
||||
--
|
||||
|
||||
include::release-notes/8.12.0.asciidoc[]
|
||||
include::release-notes/8.11.0.asciidoc[]
|
||||
include::release-notes/8.10.2.asciidoc[]
|
||||
include::release-notes/8.10.1.asciidoc[]
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
[[release-notes-8.12.0]]
|
||||
== {es} version 8.12.0
|
||||
|
||||
coming[8.12.0]
|
||||
|
||||
Also see <<breaking-changes-8.12,Breaking changes in 8.12>>.
|
||||
|
||||
|
|
@ -11,7 +11,8 @@ For detailed information about this release, see the <<es-release-notes>> and
|
|||
// Add previous release to the list
|
||||
Other versions:
|
||||
|
||||
{ref-bare}/8.10/release-highlights.html[8.10]
|
||||
{ref-bare}/8.11/release-highlights.html[8.11]
|
||||
| {ref-bare}/8.10/release-highlights.html[8.10]
|
||||
| {ref-bare}/8.9/release-highlights.html[8.9]
|
||||
| {ref-bare}/8.8/release-highlights.html[8.8]
|
||||
| {ref-bare}/8.7/release-highlights.html[8.7]
|
||||
|
|
|
@ -152,7 +152,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_11_0 = new Version(8_11_00_99);
|
||||
public static final Version CURRENT = V_8_11_0;
|
||||
public static final Version V_8_12_0 = new Version(8_12_00_99);
|
||||
public static final Version CURRENT = V_8_12_0;
|
||||
|
||||
private static final NavigableMap<Integer, Version> VERSION_IDS;
|
||||
private static final Map<String, Version> VERSION_STRINGS;
|
||||
|
|
Loading…
Reference in New Issue