File tree Expand file tree Collapse file tree 16 files changed +57
-29
lines changed
client/rest/src/test/java/org/elasticsearch/client
test/test-clusters/src/main/resources/fips
jdbc/src/test/java/org/elasticsearch/xpack/sql/jdbc
sql-client/src/test/java/org/elasticsearch/xpack/sql/client Expand file tree Collapse file tree 16 files changed +57
-29
lines changed Original file line number Diff line number Diff line change @@ -49,3 +49,6 @@ jdk.xml.dsig.secureValidationPolicy=\
4949 noRetrievalMethodLoops
5050jceks.key.serialFilter = java.base/java.lang.Enum;java.base/java.security.KeyRep;\
5151 java.base/java.security.KeyRep$Type;java.base/javax.crypto.spec.SecretKeySpec;!*
52+
53+ # Needed since JDK25 to match the default config in the out-of-the-box java.security
54+ jdk.includeInExceptions=hostInfoExclSocket
Original file line number Diff line number Diff line change @@ -50,3 +50,6 @@ jdk.xml.dsig.secureValidationPolicy=\
5050 noRetrievalMethodLoops
5151jceks.key.serialFilter = java.base/java.lang.Enum;java.base/java.security.KeyRep;\
5252 java.base/java.security.KeyRep$Type;java.base/javax.crypto.spec.SecretKeySpec;!*
53+
54+ # Needed since JDK25 to match the default config in the out-of-the-box java.security
55+ jdk.includeInExceptions=hostInfoExclSocket
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ elasticsearch = 9.0.8
22lucene = 10.1.0
33
44bundled_jdk_vendor = openjdk
5- bundled_jdk = 24.0.2+12@fdc5d0102fe0414db21410ad5834341f
5+ bundled_jdk = 25+36@bd75d5f9689641da8e1daabeccb5528b
66# optional dependencies
77spatial4j = 0.7
88jts = 1.15.0
Original file line number Diff line number Diff line change 4949import static org .elasticsearch .client .RestClientTestUtil .randomErrorNoRetryStatusCode ;
5050import static org .elasticsearch .client .RestClientTestUtil .randomOkStatusCode ;
5151import static org .hamcrest .CoreMatchers .instanceOf ;
52+ import static org .hamcrest .Matchers .startsWith ;
5253import static org .junit .Assert .assertEquals ;
5354import static org .junit .Assert .assertThat ;
5455import static org .junit .Assert .assertTrue ;
@@ -314,7 +315,7 @@ public void testNodeSelector() throws Exception {
314315 } catch (ConnectException e ) {
315316 // Windows isn't consistent here. Sometimes the message is even null!
316317 if (false == System .getProperty ("os.name" ).startsWith ("Windows" )) {
317- assertEquals ( "Connection refused" , e . getMessage ( ));
318+ assertThat ( e . getMessage (), startsWith ( "Connection refused" ));
318319 }
319320 }
320321 } else {
Original file line number Diff line number Diff line change 4444
4545import static java .util .Collections .singletonList ;
4646import static org .hamcrest .Matchers .instanceOf ;
47+ import static org .hamcrest .Matchers .startsWith ;
4748import static org .junit .Assert .assertEquals ;
4849import static org .junit .Assert .assertFalse ;
4950import static org .junit .Assert .assertSame ;
@@ -105,7 +106,7 @@ public void onSuccess(Response response) {
105106 public void onFailure (Exception exception ) {
106107 try {
107108 assertThat (exception , instanceOf (IllegalArgumentException .class ));
108- assertEquals ( "Expected scheme name at index 0: ::http:///" , exception . getMessage ( ));
109+ assertThat ( exception . getMessage (), startsWith (( "Expected scheme name" ) ));
109110 } finally {
110111 latch .countDown ();
111112 }
Original file line number Diff line number Diff line change 46064606 <sha256 value =" f885be71b5c90556f5f1ad1c4f9276b29b96057c497d46666fe4ddbec3cb43c6" origin =" Generated by Gradle" />
46074607 </artifact >
46084608 </component >
4609+ <component group =" org.ow2.asm" name =" asm-util" version =" 9.8" >
4610+ <artifact name =" asm-util-9.8.jar" >
4611+ <sha256 value =" 8ba0460ecb28fd0e2980e5f3ef3433a513a457bc077f81a53bdc75b587a08d15" origin =" Generated by Gradle" />
4612+ </artifact >
4613+ </component >
46094614 <component group =" org.reactivestreams" name =" reactive-streams" version =" 1.0.4" >
46104615 <artifact name =" reactive-streams-1.0.4.jar" >
46114616 <sha256 value =" f75ca597789b3dac58f61857b9ac2e1034a68fa672db35055a8fb4509e325f28" origin =" Generated by Gradle" />
46514656 <sha256 value =" 18c4a0095d5c1da6b817592e767bb23d29dd2f560ad74df75ff3961dbde25b79" origin =" Generated by Gradle" />
46524657 </artifact >
46534658 </component >
4659+ <component group =" org.slf4j" name =" slf4j-api" version =" 1.7.32" >
4660+ <artifact name =" slf4j-api-1.7.32.jar" >
4661+ <sha256 value =" 3624f8474c1af46d75f98bc097d7864a323c81b3808aa43689a6e1c601c027be" origin =" Generated by Gradle" />
4662+ </artifact >
4663+ </component >
46544664 <component group =" org.slf4j" name =" slf4j-api" version =" 2.0.17" >
46554665 <artifact name =" slf4j-api-2.0.17.jar" >
46564666 <sha256 value =" 7b751d952061954d5abfed7181c1f645d336091b679891591d63329c622eb832" origin =" Generated by Gradle" />
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ dependencies {
1313 compileOnly project(' :libs:entitlement' )
1414 compileOnly project(' :libs:core' )
1515 compileOnly project(' :libs:logging' )
16- implementation ' org.ow2.asm:asm:9.7.1 '
17- implementation ' org.ow2.asm:asm-util:9.7.1 '
18- implementation ' org.ow2.asm:asm-tree:9.7.1 '
19- implementation ' org.ow2.asm:asm-analysis:9.7.1 '
16+ implementation ' org.ow2.asm:asm:9.8 '
17+ implementation ' org.ow2.asm:asm-util:9.8 '
18+ implementation ' org.ow2.asm:asm-tree:9.8 '
19+ implementation ' org.ow2.asm:asm-analysis:9.8 '
2020 testImplementation project(" :test:framework" )
2121 testImplementation project(" :libs:entitlement:bridge" )
2222}
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ repositories {
4646
4747dependencies {
4848 compileOnly(project(' :libs:core' ))
49- implementation ' org.ow2.asm:asm:9.7.1 '
50- implementation ' org.ow2.asm:asm-util:9.7.1 '
49+ implementation ' org.ow2.asm:asm:9.8 '
50+ implementation ' org.ow2.asm:asm-util:9.8 '
5151 implementation(project(' :libs:entitlement:tools:common' ))
5252}
5353
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ repositories {
4646
4747dependencies {
4848 compileOnly(project(' :libs:core' ))
49- implementation ' org.ow2.asm:asm:9.7.1 '
50- implementation ' org.ow2.asm:asm-util:9.7.1 '
49+ implementation ' org.ow2.asm:asm:9.8 '
50+ implementation ' org.ow2.asm:asm-util:9.8 '
5151 implementation(project(' :libs:entitlement:tools:common' ))
5252}
5353
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ dependencies {
1919 api " org.apache.lucene:lucene-expressions:${ versions.lucene} "
2020 runtimeOnly " org.apache.lucene:lucene-codecs:${ versions.lucene} "
2121 runtimeOnly " org.antlr:antlr4-runtime:${ versions.antlr4} "
22- runtimeOnly ' org.ow2.asm:asm:7.2 '
23- runtimeOnly ' org.ow2.asm:asm-commons:7.2 '
24- runtimeOnly ' org.ow2.asm:asm-tree:7.2 '
25- runtimeOnly ' org.ow2.asm:asm-analysis:7.2 '
22+ runtimeOnly ' org.ow2.asm:asm:9.8 '
23+ runtimeOnly ' org.ow2.asm:asm-commons:9.8 '
24+ runtimeOnly ' org.ow2.asm:asm-tree:9.8 '
25+ runtimeOnly ' org.ow2.asm:asm-analysis:9.8 '
2626}
2727restResources {
2828 restApi {
You can’t perform that action at this time.
0 commit comments