Skip to content

Commit 5856539

Browse files
committed
Bump to version 8.13.0
1 parent 4dd9e2a commit 5856539

File tree

13 files changed

+69
-7
lines changed

13 files changed

+69
-7
lines changed

.backportrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"upstream" : "elastic/elasticsearch",
3-
"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" ],
3+
"targetBranchChoices" : [ "main", "8.12", "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" ],
44
"targetPRLabels" : [ "backport" ],
55
"branchLabelMapping" : {
6-
"^v8.12.0$" : "main",
6+
"^v8.13.0$" : "main",
77
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
88
}
99
}

.buildkite/pipelines/intake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ steps:
4848
timeout_in_minutes: 300
4949
matrix:
5050
setup:
51-
BWC_VERSION: ["7.17.16", "8.11.2", "8.12.0"]
51+
BWC_VERSION: ["7.17.16", "8.11.2", "8.12.0", "8.13.0"]
5252
agents:
5353
provider: gcp
5454
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1761,6 +1761,22 @@ steps:
17611761
env:
17621762
BWC_VERSION: 8.12.0
17631763

1764+
- label: "{{matrix.image}} / 8.13.0 / packaging-tests-upgrade"
1765+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.13.0
1766+
timeout_in_minutes: 300
1767+
matrix:
1768+
setup:
1769+
image:
1770+
- rocky-8
1771+
- ubuntu-2004
1772+
agents:
1773+
provider: gcp
1774+
image: family/elasticsearch-{{matrix.image}}
1775+
machineType: custom-16-32768
1776+
buildDirectory: /dev/shm/bk
1777+
env:
1778+
BWC_VERSION: 8.13.0
1779+
17641780
- group: packaging-tests-windows
17651781
steps:
17661782
- label: "{{matrix.image}} / packaging-tests-windows"

.buildkite/pipelines/periodic.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ steps:
658658
agents:
659659
provider: gcp
660660
image: family/elasticsearch-ubuntu-2004
661-
machineType: custom-32-98304
661+
machineType: n1-standard-32
662662
buildDirectory: /dev/shm/bk
663663
env:
664664
BWC_VERSION: 7.17.16
@@ -1082,6 +1082,16 @@ steps:
10821082
buildDirectory: /dev/shm/bk
10831083
env:
10841084
BWC_VERSION: 8.12.0
1085+
- label: 8.13.0 / bwc
1086+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.13.0#bwcTest
1087+
timeout_in_minutes: 300
1088+
agents:
1089+
provider: gcp
1090+
image: family/elasticsearch-ubuntu-2004
1091+
machineType: n1-standard-32
1092+
buildDirectory: /dev/shm/bk
1093+
env:
1094+
BWC_VERSION: 8.13.0
10851095
- label: concurrent-search-tests
10861096
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true -Dtests.jvm.argline=-Des.concurrent_search=true -Des.concurrent_search=true check
10871097
timeout_in_minutes: 420

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,4 @@ BWC_VERSION:
107107
- "8.11.1"
108108
- "8.11.2"
109109
- "8.12.0"
110+
- "8.13.0"

.ci/snapshotBwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ BWC_VERSION:
22
- "7.17.16"
33
- "8.11.2"
44
- "8.12.0"
5+
- "8.13.0"

build-tools-internal/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
elasticsearch = 8.12.0
1+
elasticsearch = 8.13.0
22
lucene = 9.9.0
33

44
bundled_jdk_vendor = openjdk

docs/reference/migration/index.asciidoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
include::migration_intro.asciidoc[]
22

3+
* <<migrating-8.13,Migrating to 8.13>>
34
* <<migrating-8.12,Migrating to 8.12>>
45
* <<migrating-8.11,Migrating to 8.11>>
56
* <<migrating-8.10,Migrating to 8.10>>
@@ -14,6 +15,7 @@ include::migration_intro.asciidoc[]
1415
* <<migrating-8.1,Migrating to 8.1>>
1516
* <<migrating-8.0,Migrating to 8.0>>
1617
18+
include::migrate_8_13.asciidoc[]
1719
include::migrate_8_12.asciidoc[]
1820
include::migrate_8_11.asciidoc[]
1921
include::migrate_8_10.asciidoc[]
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[[migrating-8.13]]
2+
== Migrating to 8.13
3+
++++
4+
<titleabbrev>8.13</titleabbrev>
5+
++++
6+
7+
This section discusses the changes that you need to be aware of when migrating
8+
your application to {es} 8.13.
9+
10+
See also <<release-highlights>> and <<es-release-notes>>.
11+
12+
coming::[8.13.0]
13+
14+
15+
[discrete]
16+
[[breaking-changes-8.13]]
17+
=== Breaking changes
18+
19+
There are no breaking changes in {es} 8.13.
20+

docs/reference/release-notes.asciidoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
This section summarizes the changes in each release.
88

9+
* <<release-notes-8.13.0>>
910
* <<release-notes-8.12.0>>
1011
* <<release-notes-8.11.1>>
1112
* <<release-notes-8.11.0>>
@@ -55,6 +56,7 @@ This section summarizes the changes in each release.
5556

5657
--
5758

59+
include::release-notes/8.13.0.asciidoc[]
5860
include::release-notes/8.12.0.asciidoc[]
5961
include::release-notes/8.11.1.asciidoc[]
6062
include::release-notes/8.11.0.asciidoc[]

0 commit comments

Comments
 (0)