Skip to content

Commit 2b15d03

Browse files
committed
Merge branch '8.16' into non-issue/esql-match-qstr-back-to-snapshot-builds-8.16
2 parents 00ac393 + 2715c18 commit 2b15d03

File tree

100 files changed

+2352
-935
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+2352
-935
lines changed

.buildkite/hooks/pre-command

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ export COMPOSE_HTTP_TIMEOUT
1616
JOB_BRANCH="$BUILDKITE_BRANCH"
1717
export JOB_BRANCH
1818

19-
GRADLEW="./gradlew --parallel --scan --build-cache --no-watch-fs -Dorg.elasticsearch.build.cache.url=https://gradle-enterprise.elastic.co/cache/"
19+
GRADLEW="./gradlew --console=plain --parallel --scan --build-cache --no-watch-fs -Dorg.elasticsearch.build.cache.url=https://gradle-enterprise.elastic.co/cache/"
2020
export GRADLEW
2121

22-
GRADLEW_BAT="./gradlew.bat --parallel --scan --build-cache --no-watch-fs -Dorg.elasticsearch.build.cache.url=https://gradle-enterprise.elastic.co/cache/"
22+
GRADLEW_BAT="./gradlew.bat --console=plain --parallel --scan --build-cache --no-watch-fs -Dorg.elasticsearch.build.cache.url=https://gradle-enterprise.elastic.co/cache/"
2323
export GRADLEW_BAT
2424

2525
export $(cat .ci/java-versions.properties | grep '=' | xargs)

.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: ["7.17.25", "8.15.4", "8.16.0"]
59+
BWC_VERSION: ["7.17.26", "8.15.4", "8.16.0"]
6060
agents:
6161
provider: gcp
6262
image: family/elasticsearch-ubuntu-2004

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,8 @@ steps:
303303
env:
304304
BWC_VERSION: 7.16.3
305305

306-
- label: "{{matrix.image}} / 7.17.25 / packaging-tests-upgrade"
307-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.25
306+
- label: "{{matrix.image}} / 7.17.26 / packaging-tests-upgrade"
307+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.26
308308
timeout_in_minutes: 300
309309
matrix:
310310
setup:
@@ -317,7 +317,7 @@ steps:
317317
machineType: custom-16-32768
318318
buildDirectory: /dev/shm/bk
319319
env:
320-
BWC_VERSION: 7.17.25
320+
BWC_VERSION: 7.17.26
321321

322322
- label: "{{matrix.image}} / 8.0.1 / packaging-tests-upgrade"
323323
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.0.1

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ steps:
325325
- signal_reason: agent_stop
326326
limit: 3
327327

328-
- label: 7.17.25 / bwc
329-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.25#bwcTest
328+
- label: 7.17.26 / bwc
329+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.26#bwcTest
330330
timeout_in_minutes: 300
331331
agents:
332332
provider: gcp
@@ -335,7 +335,7 @@ steps:
335335
buildDirectory: /dev/shm/bk
336336
preemptible: true
337337
env:
338-
BWC_VERSION: 7.17.25
338+
BWC_VERSION: 7.17.26
339339
retry:
340340
automatic:
341341
- exit_status: "-1"
@@ -733,7 +733,7 @@ steps:
733733
setup:
734734
ES_RUNTIME_JAVA:
735735
- openjdk17
736-
BWC_VERSION: ["7.17.25", "8.15.4", "8.16.0"]
736+
BWC_VERSION: ["7.17.26", "8.15.4", "8.16.0"]
737737
agents:
738738
provider: gcp
739739
image: family/elasticsearch-ubuntu-2004
@@ -781,7 +781,7 @@ steps:
781781
- openjdk21
782782
- openjdk22
783783
- openjdk23
784-
BWC_VERSION: ["7.17.25", "8.15.4", "8.16.0"]
784+
BWC_VERSION: ["7.17.26", "8.15.4", "8.16.0"]
785785
agents:
786786
provider: gcp
787787
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ BWC_VERSION:
1616
- "7.14.2"
1717
- "7.15.2"
1818
- "7.16.3"
19-
- "7.17.25"
19+
- "7.17.26"
2020
- "8.0.1"
2121
- "8.1.3"
2222
- "8.2.3"

.ci/scripts/packaging-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ sudo -E env \
7878
--unset=JAVA_HOME \
7979
SYSTEM_JAVA_HOME=`readlink -f -n $BUILD_JAVA_HOME` \
8080
DOCKER_CONFIG="${HOME}/.docker" \
81-
./gradlew -g $HOME/.gradle --scan --parallel --build-cache -Dorg.elasticsearch.build.cache.url=https://gradle-enterprise.elastic.co/cache/ --continue $@
81+
./gradlew -g $HOME/.gradle --console=plain --scan --parallel --build-cache -Dorg.elasticsearch.build.cache.url=https://gradle-enterprise.elastic.co/cache/ --continue $@
8282

.ci/snapshotBwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
BWC_VERSION:
2-
- "7.17.25"
2+
- "7.17.26"
33
- "8.15.4"
44
- "8.16.0"

docs/changelog/113588.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 113588
2+
summary: Add asset criticality indices for `kibana_system_user`
3+
area: Security
4+
type: enhancement
5+
issues: []

docs/changelog/114002.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/changelog/114774.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114774
2+
summary: "ESQL: Add support for multivalue fields in Arrow output"
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

0 commit comments

Comments
 (0)