Skip to content

Commit 69bdf46

Browse files
author
elasticsearchmachine
committed
Bump to version 9.1.0
1 parent 2bbf7c7 commit 69bdf46

File tree

13 files changed

+84
-8
lines changed

13 files changed

+84
-8
lines changed

.backportrc.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"upstream" : "elastic/elasticsearch",
3-
"targetBranchChoices" : [ "main", "8.x", "8.18", "8.17", "8.16", "8.15", "8.14", "8.13", "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" ],
3+
"targetBranchChoices" : [ "main", "8.x", "9.0", "8.18", "8.17", "8.16", "8.15", "8.14", "8.13", "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-
"^v9.0.0$" : "main",
6+
"^v9.1.0$" : "main",
77
"^v8.19.0$" : "8.x",
88
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
99
}
10-
}
10+
}

.buildkite/pipelines/intake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ steps:
5656
timeout_in_minutes: 300
5757
matrix:
5858
setup:
59-
BWC_VERSION: ["8.16.4", "8.17.2", "8.18.0", "9.0.0"]
59+
BWC_VERSION: ["8.16.4", "8.17.2", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
6060
agents:
6161
provider: gcp
6262
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,22 @@ steps:
367367
env:
368368
BWC_VERSION: 9.0.0
369369

370+
- label: "{{matrix.image}} / 9.1.0 / packaging-tests-upgrade"
371+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v9.1.0
372+
timeout_in_minutes: 300
373+
matrix:
374+
setup:
375+
image:
376+
- rocky-8
377+
- ubuntu-2004
378+
agents:
379+
provider: gcp
380+
image: family/elasticsearch-{{matrix.image}}
381+
machineType: custom-16-32768
382+
buildDirectory: /dev/shm/bk
383+
env:
384+
BWC_VERSION: 9.1.0
385+
370386
- group: packaging-tests-windows
371387
steps:
372388
- label: "{{matrix.image}} / packaging-tests-windows"

.buildkite/pipelines/periodic.yml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,25 @@ steps:
401401
- signal_reason: agent_stop
402402
limit: 3
403403

404+
- label: 9.1.0 / bwc
405+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v9.1.0#bwcTest
406+
timeout_in_minutes: 300
407+
agents:
408+
provider: gcp
409+
image: family/elasticsearch-ubuntu-2004
410+
machineType: n1-standard-32
411+
buildDirectory: /dev/shm/bk
412+
preemptible: true
413+
env:
414+
BWC_VERSION: 9.1.0
415+
retry:
416+
automatic:
417+
- exit_status: "-1"
418+
limit: 3
419+
signal_reason: none
420+
- signal_reason: agent_stop
421+
limit: 3
422+
404423
- label: concurrent-search-tests
405424
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true -Dtests.jvm.argline=-Des.concurrent_search=true -Des.concurrent_search=true functionalTests
406425
timeout_in_minutes: 420
@@ -467,7 +486,7 @@ steps:
467486
setup:
468487
ES_RUNTIME_JAVA:
469488
- openjdk21
470-
BWC_VERSION: ["8.16.4", "8.17.2", "8.18.0", "9.0.0"]
489+
BWC_VERSION: ["8.16.4", "8.17.2", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
471490
agents:
472491
provider: gcp
473492
image: family/elasticsearch-ubuntu-2004
@@ -509,7 +528,7 @@ steps:
509528
ES_RUNTIME_JAVA:
510529
- openjdk21
511530
- openjdk23
512-
BWC_VERSION: ["8.16.4", "8.17.2", "8.18.0", "9.0.0"]
531+
BWC_VERSION: ["8.16.4", "8.17.2", "8.18.0", "8.19.0", "9.0.0", "9.1.0"]
513532
agents:
514533
provider: gcp
515534
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ BWC_VERSION:
2020
- "8.18.0"
2121
- "8.19.0"
2222
- "9.0.0"
23+
- "9.1.0"

.ci/snapshotBwcVersions

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ BWC_VERSION:
22
- "8.16.4"
33
- "8.17.2"
44
- "8.18.0"
5+
- "8.19.0"
56
- "9.0.0"
7+
- "9.1.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 = 9.0.0
1+
elasticsearch = 9.1.0
22
lucene = 10.1.0
33

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

3+
* <<migrating-9.1,Migrating to 9.1>>
34
* <<migrating-9.0,Migrating to 9.0>>
45
6+
include::migrate_9_1.asciidoc[]
57
include::migrate_9_0.asciidoc[]
68

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[[migrating-9.1]]
2+
== Migrating to 9.1
3+
++++
4+
<titleabbrev>9.1</titleabbrev>
5+
++++
6+
7+
This section discusses the changes that you need to be aware of when migrating
8+
your application to {es} 9.1.
9+
10+
See also <<release-highlights>> and <<es-release-notes>>.
11+
12+
coming::[9.1.0]
13+
14+
15+
[discrete]
16+
[[breaking-changes-9.1]]
17+
=== Breaking changes
18+
19+
There are no breaking changes in {es} 9.1.
20+

docs/reference/release-notes.asciidoc

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

77
This section summarizes the changes in each release.
88

9+
* <<release-notes-9.1.0>>
910
* <<release-notes-9.0.0>>
1011

1112
--
1213

14+
include::release-notes/9.1.0.asciidoc[]
1315
include::release-notes/9.0.0.asciidoc[]
1416

0 commit comments

Comments
 (0)