Skip to content

Commit bceeced

Browse files
ChrisHegartydavidkyle
authored andcommitted
Bump Elasticsearch to a minimum of JDK 21 (#112252)
1 parent ca2b144 commit bceeced

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.ci/java-versions-aarch64.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# build and test Elasticsearch for this branch. Valid Java versions
55
# are 'java' or 'openjdk' followed by the major release number.
66

7-
ES_BUILD_JAVA=jdk17
7+
ES_BUILD_JAVA=jdk21

.ci/java-versions-fips.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# build and test Elasticsearch for this branch. Valid Java versions
55
# are 'java' or 'openjdk' followed by the major release number.
66

7-
ES_BUILD_JAVA=openjdk17
7+
ES_BUILD_JAVA=openjdk21

.ci/java-versions.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# build and test Elasticsearch for this branch. Valid Java versions
55
# are 'java' or 'openjdk' followed by the major release number.
66

7-
ES_BUILD_JAVA=openjdk17
7+
ES_BUILD_JAVA=openjdk21
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17
1+
21
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17
1+
21
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17
1+
21

x-pack/plugin/esql/compute/gen/src/main/java/org/elasticsearch/compute/gen/AggregatorProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public Set<String> getSupportedAnnotationTypes() {
5252

5353
@Override
5454
public SourceVersion getSupportedSourceVersion() {
55-
return SourceVersion.RELEASE_17;
55+
return SourceVersion.RELEASE_21;
5656
}
5757

5858
@Override

x-pack/plugin/esql/compute/gen/src/main/java/org/elasticsearch/compute/gen/ConsumeProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public Set<String> getSupportedAnnotationTypes() {
4848

4949
@Override
5050
public SourceVersion getSupportedSourceVersion() {
51-
return SourceVersion.latest();
51+
return SourceVersion.RELEASE_21;
5252
}
5353

5454
@Override

x-pack/plugin/esql/compute/gen/src/main/java/org/elasticsearch/compute/gen/EvaluatorProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public Set<String> getSupportedAnnotationTypes() {
4444

4545
@Override
4646
public SourceVersion getSupportedSourceVersion() {
47-
return SourceVersion.RELEASE_17;
47+
return SourceVersion.RELEASE_21;
4848
}
4949

5050
@Override

0 commit comments

Comments
 (0)