Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions temporalio/bridge/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion temporalio/bridge/sdk-core
Submodule sdk-core updated 69 files
+1 −0 .gitattributes
+5 −3 .github/workflows/per-pr.yml
+20 −0 CHANGELOG.md
+21 −0 CONTRIBUTING.md
+1 −1 README.md
+1 −1 arch_docs/diagrams/README.md
+1 −1 crates/client/Cargo.toml
+3 −0 crates/client/src/grpc.rs
+29 −19 crates/client/src/lib.rs
+18 −0 crates/client/src/options_structs.rs
+1 −0 crates/client/src/schedules.rs
+2 −0 crates/client/src/workflow_handle.rs
+9 −6 crates/common-wasm/src/data_converters/failure_converter.rs
+33 −3 crates/common-wasm/src/error.rs
+5 −5 crates/protos/protos/api_cloud_upstream/README.md
+1 −1 crates/protos/protos/api_cloud_upstream/VERSION
+51 −0 crates/protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/request_response.proto
+50 −2 crates/protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/service.proto
+39 −0 crates/protos/protos/api_cloud_upstream/temporal/api/cloud/identity/v1/message.proto
+3 −3 crates/protos/protos/api_upstream/.github/workflows/create-release.yml
+0 −23 crates/protos/protos/api_upstream/.github/workflows/publish-docs.yml
+1 −1 crates/protos/protos/api_upstream/.github/workflows/push-to-buf.yml
+1 −1 crates/protos/protos/api_upstream/.github/workflows/trigger-api-go-delete-release.yml
+1 −1 crates/protos/protos/api_upstream/.github/workflows/trigger-api-go-publish-release.yml
+3 −3 crates/protos/protos/api_upstream/.github/workflows/trigger-api-go-update.yml
+48 −5 crates/protos/protos/api_upstream/Makefile
+1 −0 crates/protos/protos/api_upstream/README.md
+9 −4 crates/protos/protos/api_upstream/buf.lock
+4 −0 crates/protos/protos/api_upstream/buf.yaml
+272 −0 crates/protos/protos/api_upstream/cmd/protoc-gen-nexus-rpc-yaml/generator.go
+12 −0 crates/protos/protos/api_upstream/cmd/protoc-gen-nexus-rpc-yaml/go.mod
+10 −0 crates/protos/protos/api_upstream/cmd/protoc-gen-nexus-rpc-yaml/go.sum
+13 −0 crates/protos/protos/api_upstream/cmd/protoc-gen-nexus-rpc-yaml/main.go
+187 −0 crates/protos/protos/api_upstream/cmd/protoc-gen-system-nexus-wit/generator.go
+8 −0 crates/protos/protos/api_upstream/cmd/protoc-gen-system-nexus-wit/go.mod
+8 −0 crates/protos/protos/api_upstream/cmd/protoc-gen-system-nexus-wit/go.sum
+11 −0 crates/protos/protos/api_upstream/cmd/protoc-gen-system-nexus-wit/main.go
+149 −0 crates/protos/protos/api_upstream/nexus/deps/nexus-temporal-types/model.wit
+19 −0 crates/protos/protos/api_upstream/nexus/temporal-proto-models-nexusrpc.yaml
+119 −0 crates/protos/protos/api_upstream/nexus/workflow-service.wit
+29 −0 crates/protos/protos/api_upstream/nexusannotations/v1/options.proto
+191 −9 crates/protos/protos/api_upstream/openapi/openapiv2.json
+127 −5 crates/protos/protos/api_upstream/openapi/openapiv3.yaml
+13 −0 crates/protos/protos/api_upstream/temporal/api/activity/v1/message.proto
+11 −0 crates/protos/protos/api_upstream/temporal/api/common/v1/message.proto
+11 −0 crates/protos/protos/api_upstream/temporal/api/history/v1/message.proto
+4 −0 crates/protos/protos/api_upstream/temporal/api/namespace/v1/message.proto
+6 −0 crates/protos/protos/api_upstream/temporal/api/nexus/v1/message.proto
+0 −32 crates/protos/protos/api_upstream/temporal/api/nexusservices/workerservice/v1/service.yaml
+6 −0 crates/protos/protos/api_upstream/temporal/api/schedule/v1/message.proto
+6 −0 crates/protos/protos/api_upstream/temporal/api/update/v1/message.proto
+27 −24 crates/protos/protos/api_upstream/temporal/api/workflow/v1/message.proto
+17 −4 crates/protos/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto
+9 −3 crates/protos/protos/api_upstream/temporal/api/workflowservice/v1/service.proto
+2 −2 crates/protos/protos/testsrv_upstream/Makefile
+11 −0 crates/sdk-core-c-bridge/include/temporal-sdk-core-c-bridge.h
+59 −0 crates/sdk-core-c-bridge/src/client.rs
+6 −0 crates/sdk-core-c-bridge/src/tests/context.rs
+1 −0 crates/sdk-core/Cargo.toml
+1 −0 crates/sdk-core/src/replay/history_builder.rs
+1 −0 crates/sdk-core/src/test_help/integ_helpers.rs
+1 −0 crates/sdk-core/src/worker/workflow/machines/update_state_machine.rs
+1 −0 crates/sdk-core/src/worker/workflow/machines/workflow_machines.rs
+5 −0 crates/sdk-core/tests/cloud_tests.rs
+22 −3 crates/sdk-core/tests/common/mod.rs
+5 −0 crates/sdk-core/tests/integ_tests/client_tests.rs
+177 −2 crates/sdk-core/tests/shared_tests/mod.rs
+1 −3 crates/sdk/src/activities.rs
+3 −3 crates/sdk/src/error.rs
Loading