Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit cf2c056

Browse files
Update dependencies to address CVE-2023-3635
This vulnerability exists in a transitive dependency used by OpenTelemetry. However, OpenTelemetry are of the opinion that they did not make use of the vulnerable capability. Signed-off-by: Mark S. Lewis <[email protected]>
1 parent 39f6f98 commit cf2c056

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

pom.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
<url>http://github.com/hyperledger/fabric-sdk-java</url>
2929
</scm>
3030
<properties>
31-
<grpc.version>1.57.2</grpc.version>
32-
<protobuf.version>3.22.5</protobuf.version> <!-- Must match version used by grpc-protobuf -->
33-
<bouncycastle.version>1.76</bouncycastle.version>
31+
<grpc.version>1.59.0</grpc.version>
32+
<protobuf.version>3.24.4</protobuf.version> <!-- Must match version used by grpc-protobuf -->
33+
<bouncycastle.version>1.77</bouncycastle.version>
3434
<httpclient.version>4.5.14</httpclient.version>
35-
<javadoc.version>3.5.0</javadoc.version>
35+
<javadoc.version>3.6.2</javadoc.version>
3636
<skipITs>true</skipITs>
3737
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38-
<jacoco.version>0.8.10</jacoco.version>
39-
<log4j.version>2.20.0</log4j.version>
38+
<jacoco.version>0.8.11</jacoco.version>
39+
<log4j.version>2.21.1</log4j.version>
4040
<org.hyperledger.fabric.sdktest.ITSuite>IntegrationSuite.java</org.hyperledger.fabric.sdktest.ITSuite>
4141
<gpg.executable>gpg</gpg.executable>
4242
<javaVersion>8</javaVersion>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>io.opentelemetry</groupId>
5656
<artifactId>opentelemetry-bom</artifactId>
57-
<version>1.29.0</version>
57+
<version>1.32.0</version>
5858
<type>pom</type>
5959
<scope>import</scope>
6060
</dependency>
@@ -116,7 +116,7 @@
116116
<dependency>
117117
<groupId>commons-cli</groupId>
118118
<artifactId>commons-cli</artifactId>
119-
<version>1.5.0</version>
119+
<version>1.6.0</version>
120120
</dependency>
121121
<dependency>
122122
<groupId>org.apache.commons</groupId>
@@ -126,7 +126,7 @@
126126
<dependency>
127127
<groupId>commons-io</groupId>
128128
<artifactId>commons-io</artifactId>
129-
<version>2.13.0</version>
129+
<version>2.15.0</version>
130130
</dependency>
131131

132132
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
@@ -162,12 +162,12 @@
162162
<dependency>
163163
<groupId>com.spotify</groupId>
164164
<artifactId>futures-extra</artifactId>
165-
<version>4.3.1</version>
165+
<version>4.3.3</version>
166166
</dependency>
167167
<dependency>
168168
<groupId>com.google.api</groupId>
169169
<artifactId>api-common</artifactId>
170-
<version>2.15.0</version>
170+
<version>2.20.0</version>
171171
</dependency>
172172

173173
<dependency>
@@ -179,7 +179,7 @@
179179
<dependency>
180180
<groupId>org.yaml</groupId>
181181
<artifactId>snakeyaml</artifactId>
182-
<version>2.1</version>
182+
<version>2.2</version>
183183
</dependency>
184184

185185
<dependency>
@@ -222,7 +222,7 @@
222222
<dependency>
223223
<groupId>io.opentelemetry.instrumentation</groupId>
224224
<artifactId>opentelemetry-grpc-1.6</artifactId>
225-
<version>1.29.0-alpha</version>
225+
<version>1.32.0-alpha</version>
226226
</dependency>
227227
<dependency>
228228
<groupId>io.opentelemetry.proto</groupId>
@@ -255,7 +255,7 @@
255255
<plugin>
256256
<groupId>org.apache.maven.plugins</groupId>
257257
<artifactId>maven-surefire-plugin</artifactId>
258-
<version>3.1.2</version>
258+
<version>3.2.2</version>
259259
<configuration>
260260
<argLine>${surefireArgLine}</argLine>
261261
<includes>
@@ -267,7 +267,7 @@
267267
<plugin>
268268
<groupId>org.apache.maven.plugins</groupId>
269269
<artifactId>maven-failsafe-plugin</artifactId>
270-
<version>3.1.2</version>
270+
<version>3.2.2</version>
271271
<configuration>
272272
<argLine>${failsafeArgLine}</argLine>
273273
<includes>
@@ -584,7 +584,7 @@
584584
<plugin>
585585
<groupId>org.apache.maven.plugins</groupId>
586586
<artifactId>maven-enforcer-plugin</artifactId>
587-
<version>3.3.0</version>
587+
<version>3.4.1</version>
588588
<executions>
589589
<execution>
590590
<id>enforce-maven</id>
@@ -619,7 +619,7 @@
619619
<plugin>
620620
<groupId>org.owasp</groupId>
621621
<artifactId>dependency-check-maven</artifactId>
622-
<version>8.3.1</version>
622+
<version>8.4.3</version>
623623
<configuration>
624624
<skipProvidedScope>true</skipProvidedScope>
625625
<skipTestScope>true</skipTestScope>
@@ -668,7 +668,7 @@
668668
<plugin>
669669
<groupId>org.apache.maven.plugins</groupId>
670670
<artifactId>maven-checkstyle-plugin</artifactId>
671-
<version>3.3.0</version>
671+
<version>3.3.1</version>
672672
<executions>
673673
<execution>
674674
<id>validate</id>
@@ -695,7 +695,7 @@
695695
<dependency>
696696
<groupId>com.puppycrawl.tools</groupId>
697697
<artifactId>checkstyle</artifactId>
698-
<version>10.12.2</version>
698+
<version>10.12.5</version>
699699
</dependency>
700700
</dependencies>
701701
</plugin>

0 commit comments

Comments
 (0)