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=\
49
49
noRetrievalMethodLoops
50
50
jceks.key.serialFilter = java.base/java.lang.Enum;java.base/java.security.KeyRep;\
51
51
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=\
50
50
noRetrievalMethodLoops
51
51
jceks.key.serialFilter = java.base/java.lang.Enum;java.base/java.security.KeyRep;\
52
52
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
2
2
lucene = 10.1.0
3
3
4
4
bundled_jdk_vendor = openjdk
5
- bundled_jdk = 24.0.2+12@fdc5d0102fe0414db21410ad5834341f
5
+ bundled_jdk = 25+36@bd75d5f9689641da8e1daabeccb5528b
6
6
# optional dependencies
7
7
spatial4j = 0.7
8
8
jts = 1.15.0
Original file line number Diff line number Diff line change 49
49
import static org .elasticsearch .client .RestClientTestUtil .randomErrorNoRetryStatusCode ;
50
50
import static org .elasticsearch .client .RestClientTestUtil .randomOkStatusCode ;
51
51
import static org .hamcrest .CoreMatchers .instanceOf ;
52
+ import static org .hamcrest .Matchers .startsWith ;
52
53
import static org .junit .Assert .assertEquals ;
53
54
import static org .junit .Assert .assertThat ;
54
55
import static org .junit .Assert .assertTrue ;
@@ -314,7 +315,7 @@ public void testNodeSelector() throws Exception {
314
315
} catch (ConnectException e ) {
315
316
// Windows isn't consistent here. Sometimes the message is even null!
316
317
if (false == System .getProperty ("os.name" ).startsWith ("Windows" )) {
317
- assertEquals ( "Connection refused" , e . getMessage ( ));
318
+ assertThat ( e . getMessage (), startsWith ( "Connection refused" ));
318
319
}
319
320
}
320
321
} else {
Original file line number Diff line number Diff line change 44
44
45
45
import static java .util .Collections .singletonList ;
46
46
import static org .hamcrest .Matchers .instanceOf ;
47
+ import static org .hamcrest .Matchers .startsWith ;
47
48
import static org .junit .Assert .assertEquals ;
48
49
import static org .junit .Assert .assertFalse ;
49
50
import static org .junit .Assert .assertSame ;
@@ -105,7 +106,7 @@ public void onSuccess(Response response) {
105
106
public void onFailure (Exception exception ) {
106
107
try {
107
108
assertThat (exception , instanceOf (IllegalArgumentException .class ));
108
- assertEquals ( "Expected scheme name at index 0: ::http:///" , exception . getMessage ( ));
109
+ assertThat ( exception . getMessage (), startsWith (( "Expected scheme name" ) ));
109
110
} finally {
110
111
latch .countDown ();
111
112
}
Original file line number Diff line number Diff line change 4606
4606
<sha256 value =" f885be71b5c90556f5f1ad1c4f9276b29b96057c497d46666fe4ddbec3cb43c6" origin =" Generated by Gradle" />
4607
4607
</artifact >
4608
4608
</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 >
4609
4614
<component group =" org.reactivestreams" name =" reactive-streams" version =" 1.0.4" >
4610
4615
<artifact name =" reactive-streams-1.0.4.jar" >
4611
4616
<sha256 value =" f75ca597789b3dac58f61857b9ac2e1034a68fa672db35055a8fb4509e325f28" origin =" Generated by Gradle" />
4651
4656
<sha256 value =" 18c4a0095d5c1da6b817592e767bb23d29dd2f560ad74df75ff3961dbde25b79" origin =" Generated by Gradle" />
4652
4657
</artifact >
4653
4658
</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 >
4654
4664
<component group =" org.slf4j" name =" slf4j-api" version =" 2.0.17" >
4655
4665
<artifact name =" slf4j-api-2.0.17.jar" >
4656
4666
<sha256 value =" 7b751d952061954d5abfed7181c1f645d336091b679891591d63329c622eb832" origin =" Generated by Gradle" />
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ dependencies {
13
13
compileOnly project(' :libs:entitlement' )
14
14
compileOnly project(' :libs:core' )
15
15
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 '
20
20
testImplementation project(" :test:framework" )
21
21
testImplementation project(" :libs:entitlement:bridge" )
22
22
}
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ repositories {
46
46
47
47
dependencies {
48
48
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 '
51
51
implementation(project(' :libs:entitlement:tools:common' ))
52
52
}
53
53
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ repositories {
46
46
47
47
dependencies {
48
48
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 '
51
51
implementation(project(' :libs:entitlement:tools:common' ))
52
52
}
53
53
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ dependencies {
19
19
api " org.apache.lucene:lucene-expressions:${ versions.lucene} "
20
20
runtimeOnly " org.apache.lucene:lucene-codecs:${ versions.lucene} "
21
21
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 '
26
26
}
27
27
restResources {
28
28
restApi {
You can’t perform that action at this time.
0 commit comments