Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ allprojects {

ext {
// Platforms
grpcVersion = '1.75.0' // [1.38.0,) Needed for io.grpc.protobuf.services.HealthStatusManager
grpcVersion = '1.76.0' // [1.38.0,) Needed for io.grpc.protobuf.services.HealthStatusManager
jacksonVersion = '2.15.4' // [2.9.0,)
jackson3Version = '3.0.4'
nexusVersion = '0.5.0-alpha'
Expand All @@ -39,7 +39,7 @@ ext {
// For more information see: https://github.com/grpc/grpc-java/issues/11015#issuecomment-2560196695
protoVersion = '3.25.8'
annotationApiVersion = '1.3.2'
guavaVersion = '32.0.1-jre' // [10.0,)
guavaVersion = '33.4.8-android' // [10.0,)
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Android?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tallyVersion = '0.13.0' // [0.4.0,)

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

apply from: "$rootDir/gradle/versioning.gradle"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package io.temporal.envconfig;

import com.google.common.base.Charsets;
import com.google.common.collect.ImmutableMap;
import com.google.common.io.Files;
import io.grpc.Metadata;
import io.grpc.netty.shaded.io.netty.handler.ssl.SslContext;
import io.temporal.serviceclient.WorkflowServiceStubsOptions;
import java.io.*;
import java.nio.charset.StandardCharsets;
import java.nio.file.Paths;
import java.util.Collections;
import org.junit.Assert;
Expand Down Expand Up @@ -116,7 +116,7 @@ public void loadClientConfigProfileFile() throws IOException {
// Put some data in temp file and set the env var to use that file
File temp = File.createTempFile("envConfigTest", "");
temp.deleteOnExit();
Files.asCharSink(temp, Charsets.UTF_8)
Files.asCharSink(temp, StandardCharsets.UTF_8)
.write(
"[profile.default]\n" + "address = \"my-address\"\n" + "namespace = \"my-namespace\"");
// Explicitly set
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package io.temporal.internal.statemachines;

import com.google.common.base.Charsets;
import com.google.common.io.CharSink;
import com.google.common.io.Files;
import io.temporal.workflow.Functions;
import java.io.File;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.nio.charset.StandardCharsets;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down Expand Up @@ -66,7 +66,7 @@ static void writeToFile(String prefix, Class<?> type, String diagram) {
String diagramFile =
(projectPath + "/" + fullRelativePath).replace("/", File.separator) + ".puml";
File file = new File(diagramFile);
CharSink sink = Files.asCharSink(file, Charsets.UTF_8);
CharSink sink = Files.asCharSink(file, StandardCharsets.UTF_8);
StringBuilder content = new StringBuilder();
try {
content.append("` PlantUML <plantuml.com> State Diagram.\n");
Expand Down
Loading