Skip to content

Commit 6ff1731

Browse files
authored
HADOOP-19632. Upgrade nimbus-jose-jwt to 10.4 due to CVE-2025-53864 (#7993) Contributed by Rohit Kumar.
* HADOOP-19632. Upgrade nimbus-jose-jwt to 10.4 due to CVE-2025-53864 Signed-off-by: Shilun Fan <slfan1989@apache.org>
1 parent 63d8825 commit 6ff1731

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

LICENSE-binary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ com.google.guava:guava:20.0
240240
com.google.guava:guava:32.0.1-jre
241241
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
242242
com.microsoft.azure:azure-storage:7.0.0
243-
com.nimbusds:nimbus-jose-jwt:9.37.2
243+
com.nimbusds:nimbus-jose-jwt:10.4
244244
com.zaxxer:HikariCP:4.0.3
245245
commons-beanutils:commons-beanutils:1.9.4
246246
commons-cli:commons-cli:1.9.0

hadoop-project/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,8 @@
233233
<openssl-wildfly.version>2.1.4.Final</openssl-wildfly.version>
234234
<jsonschema2pojo.version>1.0.2</jsonschema2pojo.version>
235235
<woodstox.version>5.4.0</woodstox.version>
236-
<nimbus-jose-jwt.version>9.37.2</nimbus-jose-jwt.version>
236+
<nimbus-jose-jwt.version>10.4</nimbus-jose-jwt.version>
237+
<jcip-annotations.version>1.0-1</jcip-annotations.version>
237238
<nodejs.version>v12.22.1</nodejs.version>
238239
<yarnpkg.version>v1.22.5</yarnpkg.version>
239240
<apache-ant.version>1.10.13</apache-ant.version>
@@ -1602,6 +1603,11 @@
16021603
<artifactId>jaxb-api</artifactId>
16031604
<version>2.2.11</version>
16041605
</dependency>
1606+
<dependency>
1607+
<groupId>com.github.stephenc.jcip</groupId>
1608+
<artifactId>jcip-annotations</artifactId>
1609+
<version>${jcip-annotations.version}</version>
1610+
</dependency>
16051611
<dependency>
16061612
<groupId>org.codehaus.jettison</groupId>
16071613
<artifactId>jettison</artifactId>

hadoop-tools/hadoop-sls/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,11 @@
7878
<artifactId>mockito-core</artifactId>
7979
<scope>test</scope>
8080
</dependency>
81+
<dependency>
82+
<groupId>com.github.stephenc.jcip</groupId>
83+
<artifactId>jcip-annotations</artifactId>
84+
<scope>test</scope>
85+
</dependency>
8186
</dependencies>
8287

8388
<build>

hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,11 @@
335335
<groupId>com.fasterxml.jackson.core</groupId>
336336
<artifactId>jackson-databind</artifactId>
337337
</dependency>
338+
<dependency>
339+
<groupId>com.github.stephenc.jcip</groupId>
340+
<artifactId>jcip-annotations</artifactId>
341+
<scope>test</scope>
342+
</dependency>
338343
</dependencies>
339344

340345
<build>

hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-router/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,11 @@
168168
<type>test-jar</type>
169169
</dependency>
170170

171+
<dependency>
172+
<groupId>com.github.stephenc.jcip</groupId>
173+
<artifactId>jcip-annotations</artifactId>
174+
<scope>test</scope>
175+
</dependency>
171176
</dependencies>
172177

173178
<build>

0 commit comments

Comments
 (0)