Update com.nimbusds to 9.15
Closes gh-10287
This commit is contained in:
@@ -18,8 +18,8 @@ dependencies {
|
||||
constraints {
|
||||
api "ch.qos.logback:logback-classic:1.2.6"
|
||||
api "com.google.inject:guice:3.0"
|
||||
api "com.nimbusds:nimbus-jose-jwt:9.11.3"
|
||||
api "com.nimbusds:oauth2-oidc-sdk:9.12"
|
||||
api "com.nimbusds:nimbus-jose-jwt:9.12.1"
|
||||
api "com.nimbusds:oauth2-oidc-sdk:9.15"
|
||||
api "com.squareup.okhttp3:mockwebserver:3.14.9"
|
||||
api "com.squareup.okhttp3:okhttp:3.14.9"
|
||||
api "com.unboundid:unboundid-ldapsdk:4.0.14"
|
||||
|
||||
@@ -694,7 +694,7 @@ public class NimbusJwtDecoderTests {
|
||||
assertThatExceptionOfType(BadJwtException.class)
|
||||
.isThrownBy(() -> jwtDecoder.decode(SIGNED_JWT))
|
||||
.withMessageContaining("An error occurred while attempting to decode the Jwt: "
|
||||
+ "Required JOSE header \"typ\" (type) parameter is missing");
|
||||
+ "Required JOSE header typ (type) parameter is missing");
|
||||
// @formatter:on
|
||||
}
|
||||
|
||||
|
||||
@@ -359,7 +359,7 @@ public class NimbusReactiveJwtDecoderTests {
|
||||
.build();
|
||||
assertThatExceptionOfType(BadJwtException.class)
|
||||
.isThrownBy(() -> decoder.decode(this.messageReadToken).block())
|
||||
.havingRootCause().withMessage("Required JOSE header \"typ\" (type) parameter is missing");
|
||||
.havingRootCause().withMessage("Required JOSE header typ (type) parameter is missing");
|
||||
// @formatter:on
|
||||
}
|
||||
|
||||
@@ -442,7 +442,7 @@ public class NimbusReactiveJwtDecoderTests {
|
||||
.build();
|
||||
assertThatExceptionOfType(BadJwtException.class)
|
||||
.isThrownBy(() -> decoder.decode(this.rsa256).block())
|
||||
.havingRootCause().withMessage("Required JOSE header \"typ\" (type) parameter is missing");
|
||||
.havingRootCause().withMessage("Required JOSE header typ (type) parameter is missing");
|
||||
// @formatter:on
|
||||
}
|
||||
|
||||
@@ -486,7 +486,7 @@ public class NimbusReactiveJwtDecoderTests {
|
||||
assertThatExceptionOfType(BadJwtException.class)
|
||||
.isThrownBy(() -> decoder.decode(this.messageReadToken).block())
|
||||
.havingRootCause()
|
||||
.withMessage("Required JOSE header \"typ\" (type) parameter is missing");
|
||||
.withMessage("Required JOSE header typ (type) parameter is missing");
|
||||
// @formatter:on
|
||||
}
|
||||
|
||||
@@ -559,7 +559,7 @@ public class NimbusReactiveJwtDecoderTests {
|
||||
.build();
|
||||
assertThatExceptionOfType(BadJwtException.class)
|
||||
.isThrownBy(() -> decoder.decode(this.messageReadToken).block())
|
||||
.havingRootCause().withMessage("Required JOSE header \"typ\" (type) parameter is missing");
|
||||
.havingRootCause().withMessage("Required JOSE header typ (type) parameter is missing");
|
||||
// @formatter:on
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user