Skip to content

Commit 81cc6e0

Browse files
Update proto API to 1.32.0 (#2039)
Update proto
1 parent 920a361 commit 81cc6e0

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.gitmodules

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
[submodule "temporal-serviceclient/src/main/proto"]
22
path = temporal-serviceclient/src/main/proto
33
url = https://github.com/temporalio/api.git
4-
hexsha = ddf07ab9933e8230309850e3c579e1ff34b03f53

gradle/licensing.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ subprojects {
55
apply plugin: 'org.cadixdev.licenser'
66
license {
77
header rootProject.file('LICENSE.header')
8-
exclude '**/*.puml', 'io/temporal/api', 'gogoproto/Gogo.java'
8+
exclude '**/*.puml', 'io/temporal/api', 'com/google/protobuf', 'com/google/api','gogoproto/Gogo.java'
99

1010
}
1111
tasks.check.dependsOn('checkLicenseMain')

temporal-sdk/src/main/java/io/temporal/internal/sync/SyncWorkflowContext.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ private ExecuteActivityParameters constructExecuteActivityParameters(
552552
attributes.setHeader(grpcHeader);
553553

554554
if (options.getVersioningIntent() != null) {
555-
attributes.setUseCompatibleVersion(
555+
attributes.setUseWorkflowBuildId(
556556
options
557557
.getVersioningIntent()
558558
.determineUseCompatibleFlag(
@@ -765,7 +765,7 @@ private StartChildWorkflowExecutionParameters createChildWorkflowParameters(
765765
}
766766

767767
if (options.getVersioningIntent() != null) {
768-
attributes.setUseCompatibleVersion(
768+
attributes.setInheritBuildId(
769769
options
770770
.getVersioningIntent()
771771
.determineUseCompatibleFlag(
@@ -1131,7 +1131,7 @@ public void continueAsNew(ContinueAsNewInput input) {
11311131
.putAllFields(intoPayloadMap(dataConverterWithCurrentWorkflowContext, memo)));
11321132
}
11331133
if (options.getVersioningIntent() != null) {
1134-
attributes.setUseCompatibleVersion(
1134+
attributes.setInheritBuildId(
11351135
options
11361136
.getVersioningIntent()
11371137
.determineUseCompatibleFlag(

temporal-serviceclient/src/main/proto

Submodule proto updated 57 files

0 commit comments

Comments
 (0)