Skip to content
Open
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ allprojects {

ext {
// Platforms
grpcVersion = '1.58.1' // [1.38.0,) Needed for io.grpc.protobuf.services.HealthStatusManager
grpcVersion = '1.75.0' // [1.38.0,) Needed for io.grpc.protobuf.services.HealthStatusManager
jacksonVersion = '2.15.4' // [2.9.0,)
nexusVersion = '0.4.0-alpha'
// we don't upgrade to 1.10.x because it requires kotlin 1.6. Users may use 1.10.x in their environments though.
Expand Down
1 change: 1 addition & 0 deletions temporal-serviceclient/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dependencies {
api ("io.grpc:grpc-api") //Classes like io.grpc.Metadata are used as a part of our API
api "io.grpc:grpc-stub" //Part of WorkflowServiceStubs API
api "io.grpc:grpc-netty-shaded" //Part of WorkflowServiceStubs API, specifically SslContext
api "io.grpc:grpc-protobuf" //For io.grpc.protobuf.StatusProto and ProtoUtils used by generated stubs
api "io.grpc:grpc-services" //Standard gRPC HealthCheck Response class
api "io.grpc:grpc-inprocess" //For the in-process time skipping test server
api "com.google.protobuf:protobuf-java-util:$protoVersion" //proto request and response objects are a part of this module's API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ public <R> void addWorkflowImplementationFactory(
.registerWorkflowImplementationFactory(factoryImpl, factoryFunc);
}

@SuppressWarnings("deprecation")
public void regenerateHistoryForReplay(String workflowId, String fileName) {
if (REGENERATE_JSON_FILES) {
String json = getExecutionHistory(workflowId).toJson(true);
Expand Down
Loading