Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/changelog/124544.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 124544
summary: Bump nimbus-jose-jwt to 10.0.2
area: Security
type: upgrade
issues: []
6 changes: 3 additions & 3 deletions gradle/verification-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -984,9 +984,9 @@
<sha256 value="e8c1c594e2425bdbea2d860de55c69b69fc5d59454452449a0f0913c2a5b8a31" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="com.nimbusds" name="nimbus-jose-jwt" version="10.0.1">
<artifact name="nimbus-jose-jwt-10.0.1.jar">
<sha256 value="f28dbd9ab128324f05050d76b78469d3a9cd83e0319aabc68d1c276e3923e13a" origin="Generated by Gradle"/>
<component group="com.nimbusds" name="nimbus-jose-jwt" version="10.0.2">
<artifact name="nimbus-jose-jwt-10.0.2.jar">
<sha256 value="960b978a6cd6cbc3319648adc73959789f6742a2bf1e8dd0c843dbc91624218a" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="com.nimbusds" name="nimbus-jose-jwt" version="4.41.1">
Expand Down
2 changes: 1 addition & 1 deletion modules/repository-azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {
api "com.github.stephenc.jcip:jcip-annotations:1.0-1"
api "com.nimbusds:content-type:2.3"
api "com.nimbusds:lang-tag:1.7"
api("com.nimbusds:nimbus-jose-jwt:10.0.1"){
api("com.nimbusds:nimbus-jose-jwt:10.0.2"){
exclude group: 'com.google.crypto.tink', module: 'tink' // it's an optional dependency on which we don't rely
}
api("com.nimbusds:oauth2-oidc-sdk:11.22.2"){
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugin/security/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ dependencies {
* Eclipse can't pick up the shadow dependency so we point it at the unmodified version of the library
* so it can compile things.
*/
api "com.nimbusds:nimbus-jose-jwt:10.0.1"
api "com.nimbusds:nimbus-jose-jwt:10.0.2"
}
api "com.nimbusds:lang-tag:1.7"
api "com.sun.mail:jakarta.mail:1.6.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'com.gradleup.shadow'
// See the build.gradle file in the parent directory for an explanation of this unusual build

dependencies {
implementation "com.nimbusds:nimbus-jose-jwt:10.0.1"
implementation "com.nimbusds:nimbus-jose-jwt:10.0.2"
}

tasks.named('shadowJar').configure {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'com.gradleup.shadow'
// See the build.gradle file in the parent directory for an explanation of this unusual build

dependencies {
implementation "com.nimbusds:nimbus-jose-jwt:10.0.1"
implementation "com.nimbusds:nimbus-jose-jwt:10.0.2"
implementation project(path: xpackModule('security:lib:nimbus-jose-jwt-modified-part2'), configuration: 'shadow')
}

Expand Down