Skip to content

Commit 7dff3e5

Browse files
authored
Update dependencies (#333)
Motivation There is a CVE in the Java Protobuf java-protobuf that we are currently using. GHSA-h4h5-3hr4-j3g2 Modifications - gRPC Java: 1.48.1 -> 1.62.2 - Java Protobuf: 3.21.5 -> 3.25.1 - Guava Cache: 31.1-android -> 32.1.3-android - Jacoco: 0.8.5 -> 0.8.11 Signed-off-by: minwoox <[email protected]>
1 parent 2ba92ea commit 7dff3e5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@
2727
<auto-value.version>1.6.3</auto-value.version>
2828
<awaitility.version>3.1.6</awaitility.version>
2929
<checkstyle.version>8.18</checkstyle.version>
30-
<grpc.version>1.48.1</grpc.version>
31-
<guava.version>31.1-android</guava.version><!-- Keep the Guava version in sync with grpc-java -->
30+
<grpc.version>1.62.2</grpc.version>
31+
<guava.version>32.1.3-android</guava.version><!-- Keep the Guava version in sync with grpc-java -->
3232
<junit.version>4.13.2</junit.version>
33-
<protobuf.version>3.21.5</protobuf.version><!-- Keep the Protobuf version in sync with grpc-java -->
33+
<protobuf.version>3.25.1</protobuf.version><!-- Keep the Protobuf version in sync with grpc-java -->
3434
<rest-assured.version>3.1.0</rest-assured.version>
3535
<slf4j.version>1.7.26</slf4j.version>
3636
<testcontainers.version>1.17.1</testcontainers.version>
3737

3838
<!-- Maven Plugin Versions -->
39-
<jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version>
39+
<jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version>
4040
<maven-checkstyle-plugin.version>3.0.0</maven-checkstyle-plugin.version>
4141
<maven-failsafe-plugin.version>2.21.0</maven-failsafe-plugin.version>
4242
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>

server/src/test/java/io/envoyproxy/controlplane/server/V3DiscoveryServerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,7 @@ public void onV3StreamRequest(long streamId, DiscoveryRequest request) throws Re
995995

996996
assertThat(responseObserver.errorException).isInstanceOfSatisfying(StatusRuntimeException.class, ex -> {
997997
assertThat(ex.getStatus().getCode()).isEqualTo(Status.Code.UNKNOWN);
998-
assertThat(ex.getStatus().getDescription()).isNull();
998+
assertThat(ex.getStatus().getDescription()).isEqualTo("Application error processing RPC");
999999
});
10001000

10011001
assertThat(callbacks.streamCloseCount).hasValue(0);

0 commit comments

Comments
 (0)