Skip to content

Commit 711f370

Browse files
Merge 0ed5959 into openjdk23-bundle
2 parents 076f623 + 0ed5959 commit 711f370

File tree

214 files changed

+8009
-4914
lines changed

Some content is hidden

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

214 files changed

+8009
-4914
lines changed

build-tools-internal/build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,15 @@ tasks.named("jar") {
384384
exclude("classpath.index")
385385
}
386386

387+
spotless {
388+
java {
389+
// IDEs can sometimes run annotation processors that leave files in
390+
// here, causing Spotless to complain. Even though this path ought not
391+
// to exist, exclude it anyway in order to avoid spurious failures.
392+
toggleOffOn()
393+
}
394+
}
395+
387396
def resolveMainWrapperVersion() {
388397
new URL("https://raw.githubusercontent.com/elastic/elasticsearch/main/build-tools-internal/src/main/resources/minimumGradleVersion").text.trim()
389398
}

build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DockerBase.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@ public enum DockerBase {
2929
CLOUD_ESS(null, "-cloud-ess", "apt-get"),
3030

3131
// Chainguard based wolfi image with latest jdk
32-
WOLFI(
33-
"docker.elastic.co/wolfi/chainguard-base:latest@sha256:c16d3ad6cebf387e8dd2ad769f54320c4819fbbaa21e729fad087c7ae223b4d0",
32+
// This is usually updated via renovatebot
33+
// spotless:off
34+
WOLFI("docker.elastic.co/wolfi/chainguard-base:latest@sha256:90888b190da54062f67f3fef1372eb0ae7d81ea55f5a1f56d748b13e4853d984",
3435
"-wolfi",
3536
"apk"
3637
),
38+
// spotless:on
3739

3840
// Based on WOLFI above, with more extras. We don't set a base image because
3941
// we programmatically extend from the Wolfi image.

build-tools-internal/src/main/resources/changelog-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@
284284
"Cluster and node setting",
285285
"Command line tool",
286286
"CRUD",
287+
"ES|QL",
287288
"Index setting",
288289
"Ingest",
289290
"JVM option",

docs/changelog/111336.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 111336
2+
summary: Use the same chunking configurations for models in the Elasticsearch service
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/113563.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 113563
2+
summary: Use ELSER By Default For Semantic Text
3+
area: Mapping
4+
type: enhancement
5+
issues: []

docs/changelog/113812.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 113812
2+
summary: Add Streaming Inference spec
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/113897.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 113897
2+
summary: "Add chunking settings configuration to `CohereService,` `AmazonBedrockService,`\
3+
\ and `AzureOpenAiService`"
4+
area: Machine Learning
5+
type: enhancement
6+
issues: []

docs/changelog/113967.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
pr: 113967
2+
summary: "ESQL: Entirely remove META FUNCTIONS"
3+
area: ES|QL
4+
type: breaking
5+
issues: []
6+
breaking:
7+
title: "ESQL: Entirely remove META FUNCTIONS"
8+
area: ES|QL
9+
details: |
10+
Removes an undocumented syntax from ESQL: META FUNCTION. This was never
11+
reliable or really useful. Consult the documentation instead.
12+
impact: "Removes an undocumented syntax from ESQL: META FUNCTION"
13+
notable: false

docs/changelog/114002.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114002
2+
summary: Add a `mustache.max_output_size_bytes` setting to limit the length of results from mustache scripts
3+
area: Infra/Scripting
4+
type: enhancement
5+
issues: []

docs/changelog/114080.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114080
2+
summary: Stream Cohere Completion
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

0 commit comments

Comments
 (0)