Skip to content

Commit

Permalink
Update proto API to 1.32.0 (temporalio#2039)
Browse files Browse the repository at this point in the history
Update proto
  • Loading branch information
Quinn-With-Two-Ns authored Apr 15, 2024
1 parent 920a361 commit 81cc6e0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[submodule "temporal-serviceclient/src/main/proto"]
path = temporal-serviceclient/src/main/proto
url = https://github.com/temporalio/api.git
hexsha = ddf07ab9933e8230309850e3c579e1ff34b03f53
2 changes: 1 addition & 1 deletion gradle/licensing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ subprojects {
apply plugin: 'org.cadixdev.licenser'
license {
header rootProject.file('LICENSE.header')
exclude '**/*.puml', 'io/temporal/api', 'gogoproto/Gogo.java'
exclude '**/*.puml', 'io/temporal/api', 'com/google/protobuf', 'com/google/api','gogoproto/Gogo.java'

}
tasks.check.dependsOn('checkLicenseMain')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ private ExecuteActivityParameters constructExecuteActivityParameters(
attributes.setHeader(grpcHeader);

if (options.getVersioningIntent() != null) {
attributes.setUseCompatibleVersion(
attributes.setUseWorkflowBuildId(
options
.getVersioningIntent()
.determineUseCompatibleFlag(
Expand Down Expand Up @@ -765,7 +765,7 @@ private StartChildWorkflowExecutionParameters createChildWorkflowParameters(
}

if (options.getVersioningIntent() != null) {
attributes.setUseCompatibleVersion(
attributes.setInheritBuildId(
options
.getVersioningIntent()
.determineUseCompatibleFlag(
Expand Down Expand Up @@ -1131,7 +1131,7 @@ public void continueAsNew(ContinueAsNewInput input) {
.putAllFields(intoPayloadMap(dataConverterWithCurrentWorkflowContext, memo)));
}
if (options.getVersioningIntent() != null) {
attributes.setUseCompatibleVersion(
attributes.setInheritBuildId(
options
.getVersioningIntent()
.determineUseCompatibleFlag(
Expand Down
2 changes: 1 addition & 1 deletion temporal-serviceclient/src/main/proto
Submodule proto updated 57 files
+0 −2 .buildkite/Dockerfile
+0 −15 .buildkite/docker-compose.yml
+0 −10 .buildkite/pipeline.yml
+3 −0 .github/PULL_REQUEST_TEMPLATE.md
+26 −0 .github/workflows/ci.yml
+3 −1 .gitignore
+66 −25 Makefile
+2 −0 README.md
+52 −26 api-linter.yaml
+20 −0 buf.gen.yaml
+13 −0 buf.lock
+17 −1 buf.yaml
+0 −7 build/go.mod
+0 −5 build/go.sum
+0 −141 dependencies/gogoproto/gogo.proto
+0 −6 go.mod
+31 −0 google/api/annotations.proto
+379 −0 google/api/http.proto
+162 −0 google/protobuf/any.proto
+1,212 −0 google/protobuf/descriptor.proto
+115 −0 google/protobuf/duration.proto
+51 −0 google/protobuf/empty.proto
+95 −0 google/protobuf/struct.proto
+144 −0 google/protobuf/timestamp.proto
+123 −0 google/protobuf/wrappers.proto
+8,881 −0 openapi/openapiv2.json
+6,667 −0 openapi/openapiv3.yaml
+2 −0 openapi/payload_description.txt
+12 −9 temporal/api/batch/v1/message.proto
+20 −24 temporal/api/command/v1/message.proto
+48 −7 temporal/api/common/v1/message.proto
+16 −0 temporal/api/enums/v1/common.proto
+4 −0 temporal/api/enums/v1/event_type.proto
+11 −0 temporal/api/enums/v1/failed_cause.proto
+19 −6 temporal/api/enums/v1/reset.proto
+30 −0 temporal/api/enums/v1/task_queue.proto
+10 −0 temporal/api/enums/v1/update.proto
+22 −4 temporal/api/enums/v1/workflow.proto
+1 −0 temporal/api/errordetails/v1/message.proto
+22 −6 temporal/api/export/v1/message.proto
+9 −0 temporal/api/failure/v1/message.proto
+2 −4 temporal/api/filter/v1/message.proto
+79 −34 temporal/api/history/v1/message.proto
+14 −4 temporal/api/namespace/v1/message.proto
+187 −0 temporal/api/nexus/v1/message.proto
+142 −6 temporal/api/operatorservice/v1/request_response.proto
+63 −4 temporal/api/operatorservice/v1/service.proto
+1 −3 temporal/api/replication/v1/message.proto
+40 −20 temporal/api/schedule/v1/message.proto
+13 −0 temporal/api/sdk/v1/task_complete_metadata.proto
+66 −0 temporal/api/sdk/v1/workflow_metadata.proto
+118 −4 temporal/api/taskqueue/v1/message.proto
+1 −1 temporal/api/update/v1/message.proto
+2 −3 temporal/api/version/v1/message.proto
+101 −22 temporal/api/workflow/v1/message.proto
+317 −60 temporal/api/workflowservice/v1/request_response.proto
+246 −48 temporal/api/workflowservice/v1/service.proto

0 comments on commit 81cc6e0

Please sign in to comment.