Skip to content

Commit 3fd9f9f

Browse files
Merge branch '8.x' into backport-118173-8.x
2 parents d324dae + 8793efa commit 3fd9f9f

File tree

68 files changed

+2116
-528
lines changed

Some content is hidden

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

68 files changed

+2116
-528
lines changed

.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.27", "8.15.6", "8.16.2", "8.17.0", "8.18.0"]
59+
BWC_VERSION: ["7.17.27", "8.16.2", "8.17.0", "8.18.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
@@ -561,8 +561,8 @@ steps:
561561
env:
562562
BWC_VERSION: 8.14.3
563563

564-
- label: "{{matrix.image}} / 8.15.6 / packaging-tests-upgrade"
565-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.15.6
564+
- label: "{{matrix.image}} / 8.15.5 / packaging-tests-upgrade"
565+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.15.5
566566
timeout_in_minutes: 300
567567
matrix:
568568
setup:
@@ -575,7 +575,7 @@ steps:
575575
machineType: custom-16-32768
576576
buildDirectory: /dev/shm/bk
577577
env:
578-
BWC_VERSION: 8.15.6
578+
BWC_VERSION: 8.15.5
579579

580580
- label: "{{matrix.image}} / 8.16.2 / packaging-tests-upgrade"
581581
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.16.2

.buildkite/pipelines/periodic.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -629,8 +629,8 @@ steps:
629629
- signal_reason: agent_stop
630630
limit: 3
631631

632-
- label: 8.15.6 / bwc
633-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.15.6#bwcTest
632+
- label: 8.15.5 / bwc
633+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.15.5#bwcTest
634634
timeout_in_minutes: 300
635635
agents:
636636
provider: gcp
@@ -639,7 +639,7 @@ steps:
639639
buildDirectory: /dev/shm/bk
640640
preemptible: true
641641
env:
642-
BWC_VERSION: 8.15.6
642+
BWC_VERSION: 8.15.5
643643
retry:
644644
automatic:
645645
- exit_status: "-1"
@@ -771,7 +771,7 @@ steps:
771771
setup:
772772
ES_RUNTIME_JAVA:
773773
- openjdk17
774-
BWC_VERSION: ["7.17.27", "8.15.6", "8.16.2", "8.17.0", "8.18.0"]
774+
BWC_VERSION: ["7.17.27", "8.16.2", "8.17.0", "8.18.0"]
775775
agents:
776776
provider: gcp
777777
image: family/elasticsearch-ubuntu-2004
@@ -819,7 +819,7 @@ steps:
819819
- openjdk21
820820
- openjdk22
821821
- openjdk23
822-
BWC_VERSION: ["7.17.27", "8.15.6", "8.16.2", "8.17.0", "8.18.0"]
822+
BWC_VERSION: ["7.17.27", "8.16.2", "8.17.0", "8.18.0"]
823823
agents:
824824
provider: gcp
825825
image: family/elasticsearch-ubuntu-2004

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ BWC_VERSION:
3232
- "8.12.2"
3333
- "8.13.4"
3434
- "8.14.3"
35-
- "8.15.6"
35+
- "8.15.5"
3636
- "8.16.2"
3737
- "8.17.0"
3838
- "8.18.0"

.ci/snapshotBwcVersions

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
BWC_VERSION:
22
- "7.17.27"
3-
- "8.15.6"
43
- "8.16.2"
54
- "8.17.0"
65
- "8.18.0"

build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/FormattingPrecommitPlugin.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
import org.gradle.api.Project;
1818

1919
import java.io.File;
20-
import java.util.Arrays;
21-
import java.util.Map;
2220

2321
/**
2422
* This plugin configures formatting for Java source using Spotless
@@ -66,8 +64,7 @@ public void apply(Project project) {
6664
java.importOrderFile(new File(elasticsearchWorkspace, importOrderPath));
6765

6866
// Most formatting is done through the Eclipse formatter
69-
java.eclipse().withP2Mirrors(Map.of("https://download.eclipse.org/", "https://mirror.umd.edu/eclipse/"))
70-
.configFile(new File(elasticsearchWorkspace, formatterConfigPath));
67+
java.eclipse().configFile(new File(elasticsearchWorkspace, formatterConfigPath));
7168

7269
// Ensure blank lines are actually empty. Since formatters are applied in
7370
// order, apply this one last, otherwise non-empty blank lines can creep

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,10 @@ allprojects {
290290
if (project.path.contains(":distribution:docker")) {
291291
enabled = false
292292
}
293-
293+
if (project.path.contains(":libs:cli")) {
294+
// ensure we resolve p2 dependencies for the spotless eclipse formatter
295+
dependsOn "spotlessJavaCheck"
296+
}
294297
}
295298

296299
plugins.withId('lifecycle-base') {

docs/changelog/117839.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 117839
2+
summary: Add match support for `semantic_text` fields
3+
area: "Search"
4+
type: enhancement
5+
issues: []

docs/changelog/118035.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 118035
2+
summary: Include hidden indices in `DeprecationInfoAction`
3+
area: Indices APIs
4+
type: bug
5+
issues:
6+
- 118020

docs/changelog/118102.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 118102
2+
summary: "ESQL: Enterprise license enforcement for CCS"
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

0 commit comments

Comments
 (0)