Skip to content

Commit dd09524

Browse files
Updating dependency versions. (#766)
Updating dependency versions.
1 parent 8a883ba commit dd09524

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ buildscript {
77

88
plugins {
99
id "com.github.hierynomus.license" version"0.15.0"
10-
id 'com.github.nbaztec.coveralls-jacoco' version '1.2.11'
11-
id 'com.github.sherter.google-java-format' version '0.8'
10+
id 'com.github.nbaztec.coveralls-jacoco' version '1.2.15'
11+
id 'com.github.sherter.google-java-format' version '0.9'
1212
id 'net.ltgt.errorprone' version '1.1.1'
1313
id 'java-library'
1414
id 'jacoco'
@@ -58,18 +58,18 @@ dependencies {
5858
errorprone('com.google.errorprone:error_prone_core:2.3.4')
5959

6060
compile group: 'com.uber.tchannel', name: 'tchannel-core', version: '0.8.30'
61-
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
61+
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.36'
6262
compile group: 'org.apache.thrift', name: 'libthrift', version: '0.9.3'
63-
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
63+
compile group: 'com.google.code.gson', name: 'gson', version: '2.10'
6464
compile group: 'com.uber.m3', name: 'tally-core', version: '0.4.0'
65-
compile group: 'com.google.guava', name: 'guava', version: '28.1-jre'
66-
compile group: 'com.cronutils', name: 'cron-utils', version: '9.0.0'
67-
compile group: 'io.micrometer', name: 'micrometer-core', version: '1.1.2'
65+
compile group: 'com.google.guava', name: 'guava', version: '31.1-jre'
66+
compile group: 'com.cronutils', name: 'cron-utils', version: '9.2.0'
67+
compile group: 'io.micrometer', name: 'micrometer-core', version: '1.10.2'
6868
compile group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
6969
compile group: 'com.auth0', name: 'java-jwt', version:'3.10.2'
7070
compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.8.0'
7171
compile group: 'com.google.api.grpc', name: 'proto-google-common-protos', version: '1.17.0'
72-
compile group: 'io.grpc', name: 'grpc-testing', version: '1.28.0'
72+
compile group: 'io.grpc', name: 'grpc-testing', version: '1.51.0'
7373
compile group: 'com.google.protobuf', name: 'protobuf-java-util', version: '3.21.1'
7474

7575
implementation 'io.grpc:grpc-netty-shaded:1.28.0'

src/test/java/com/uber/cadence/converter/JsonDataConverterTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
import static org.junit.Assert.*;
2121

22+
import com.google.gson.JsonIOException;
2223
import com.uber.cadence.EventType;
2324
import com.uber.cadence.History;
2425
import com.uber.cadence.HistoryEvent;
@@ -262,7 +263,7 @@ public void testException() {
262263
assertNotNull(causeFromConverted);
263264
assertEquals(DataConverterException.class, causeFromConverted.getClass());
264265
assertNotNull(causeFromConverted.getCause());
265-
assertEquals(IllegalArgumentException.class, causeFromConverted.getCause().getClass());
266+
assertEquals(JsonIOException.class, causeFromConverted.getCause().getClass());
266267

267268
assertNotNull(causeFromConverted.getSuppressed());
268269
assertEquals(1, causeFromConverted.getSuppressed().length);

0 commit comments

Comments
 (0)