Skip to content

Commit 0ee5b7f

Browse files
Merge branch 'master' into gmt/java-standalone-activities
2 parents e10dbd6 + 4b2c294 commit 0ee5b7f

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ allprojects {
2121

2222
ext {
2323
// Platforms
24-
grpcVersion = '1.75.0' // [1.38.0,) Needed for io.grpc.protobuf.services.HealthStatusManager
24+
grpcVersion = '1.76.0' // [1.38.0,) Needed for io.grpc.protobuf.services.HealthStatusManager
2525
jacksonVersion = '2.15.4' // [2.9.0,)
2626
jackson3Version = '3.0.4'
2727
nexusVersion = '0.5.0-alpha'
@@ -39,7 +39,7 @@ ext {
3939
// For more information see: https://github.com/grpc/grpc-java/issues/11015#issuecomment-2560196695
4040
protoVersion = '3.25.8'
4141
annotationApiVersion = '1.3.2'
42-
guavaVersion = '32.0.1-jre' // [10.0,)
42+
guavaVersion = '33.4.8-android' // [10.0,)
4343
tallyVersion = '0.13.0' // [0.4.0,)
4444

4545
gsonVersion = '2.10.1' // [2.0,)
@@ -67,7 +67,7 @@ ext {
6767
// Edge Dependencies are used by tests to validate the SDK with the latest version of various libraries.
6868
// Not just the version of the library the SDK is built against.
6969
protoVersionEdge = '4.32.1'
70-
grpcVersionEdge = '1.75.0'
70+
grpcVersionEdge = '1.80.0'
7171
}
7272

7373
apply from: "$rootDir/gradle/versioning.gradle"

temporal-envconfig/src/test/java/io/temporal/envconfig/ClientConfigProfileTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package io.temporal.envconfig;
22

3-
import com.google.common.base.Charsets;
43
import com.google.common.collect.ImmutableMap;
54
import com.google.common.io.Files;
65
import io.grpc.Metadata;
76
import io.grpc.netty.shaded.io.netty.handler.ssl.SslContext;
87
import io.temporal.serviceclient.WorkflowServiceStubsOptions;
98
import java.io.*;
9+
import java.nio.charset.StandardCharsets;
1010
import java.nio.file.Paths;
1111
import java.util.Collections;
1212
import org.junit.Assert;
@@ -116,7 +116,7 @@ public void loadClientConfigProfileFile() throws IOException {
116116
// Put some data in temp file and set the env var to use that file
117117
File temp = File.createTempFile("envConfigTest", "");
118118
temp.deleteOnExit();
119-
Files.asCharSink(temp, Charsets.UTF_8)
119+
Files.asCharSink(temp, StandardCharsets.UTF_8)
120120
.write(
121121
"[profile.default]\n" + "address = \"my-address\"\n" + "namespace = \"my-namespace\"");
122122
// Explicitly set

temporal-sdk/src/test/java/io/temporal/internal/statemachines/CommandsGeneratePlantUMLStateDiagramsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package io.temporal.internal.statemachines;
22

3-
import com.google.common.base.Charsets;
43
import com.google.common.io.CharSink;
54
import com.google.common.io.Files;
65
import io.temporal.workflow.Functions;
76
import java.io.File;
87
import java.lang.reflect.Field;
98
import java.lang.reflect.InvocationTargetException;
109
import java.lang.reflect.Method;
10+
import java.nio.charset.StandardCharsets;
1111
import org.junit.Test;
1212
import org.slf4j.Logger;
1313
import org.slf4j.LoggerFactory;
@@ -66,7 +66,7 @@ static void writeToFile(String prefix, Class<?> type, String diagram) {
6666
String diagramFile =
6767
(projectPath + "/" + fullRelativePath).replace("/", File.separator) + ".puml";
6868
File file = new File(diagramFile);
69-
CharSink sink = Files.asCharSink(file, Charsets.UTF_8);
69+
CharSink sink = Files.asCharSink(file, StandardCharsets.UTF_8);
7070
StringBuilder content = new StringBuilder();
7171
try {
7272
content.append("` PlantUML <plantuml.com> State Diagram.\n");

0 commit comments

Comments
 (0)