Skip to content

Commit

Permalink
Merge branch 'v1.14' into wf-backoff-coefficient
Browse files Browse the repository at this point in the history
  • Loading branch information
hhunter-ms authored Oct 31, 2024
2 parents 7397b24 + 639362e commit 1af275a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ description: Get started with the Dapr Workflow building block
Dapr Workflow is currently in beta. [See known limitations for {{% dapr-latest-version cli="true" %}}]({{< ref "workflow-overview.md#limitations" >}}).
{{% /alert %}}

{{% alert title="Note" color="primary" %}}
Redis is currently used as the state store component for Workflows in the Quickstarts. However, Redis does not support transaction rollbacks and should not be used in production as an actor state store.
{{% /alert %}}

Let's take a look at the Dapr [Workflow building block]({{< ref workflow-overview.md >}}). In this Quickstart, you'll create a simple console application to demonstrate Dapr's workflow programming model and the workflow management APIs.

In this guide, you'll:
Expand Down Expand Up @@ -1356,4 +1360,4 @@ Join the discussion in our [discord channel](https://discord.com/channels/778680
- Walk through a more in-depth [.NET SDK example workflow](https://github.com/dapr/dotnet-sdk/tree/master/examples/Workflow)
- Learn more about [Workflow as a Dapr building block]({{< ref workflow-overview >}})
{{< button text="Explore Dapr tutorials >>" page="getting-started/tutorials/_index.md" >}}
{{< button text="Explore Dapr tutorials >>" page="getting-started/tutorials/_index.md" >}}
2 changes: 1 addition & 1 deletion sdkdocs/dotnet
Submodule dotnet updated 198 files
2 changes: 1 addition & 1 deletion sdkdocs/java
Submodule java updated 1432 files
2 changes: 1 addition & 1 deletion sdkdocs/js
Submodule js updated 58 files
+3 −3 .github/workflows/test-e2e.yml
+0 −17 README.md
+20 −5 documentation/development.md
+1 −1 examples/distributedLock/README.md
+2 −2 examples/workflow/authoring/package-lock.json
+2 −2 examples/workflow/management/package-lock.json
+9 −9 package-lock.json
+2 −2 package.json
+1 −1 scripts/fetch-proto.sh
+160 −0 scripts/src/proto/dapr/proto/common/v1/common.proto
+27 −0 scripts/src/proto/dapr/proto/internals/v1/apiversion.proto
+125 −0 scripts/src/proto/dapr/proto/internals/v1/service_invocation.proto
+32 −0 scripts/src/proto/dapr/proto/internals/v1/status.proto
+172 −0 scripts/src/proto/dapr/proto/operator/v1/operator.proto
+56 −0 scripts/src/proto/dapr/proto/placement/v1/placement.proto
+343 −0 scripts/src/proto/dapr/proto/runtime/v1/appcallback.proto
+1,276 −0 scripts/src/proto/dapr/proto/runtime/v1/dapr.proto
+60 −0 scripts/src/proto/dapr/proto/sentry/v1/sentry.proto
+162 −0 scripts/src/proto/google/protobuf/any.proto
+51 −0 scripts/src/proto/google/protobuf/empty.proto
+144 −0 scripts/src/proto/google/protobuf/timestamp.proto
+1 −1 src/actors/runtime/AbstractActor.ts
+11 −3 src/proto/dapr/proto/common/v1/common_pb.js
+7 −1 src/proto/dapr/proto/internals/v1/apiversion_pb.js
+5 −0 src/proto/dapr/proto/internals/v1/service_invocation.proto
+0 −77 src/proto/dapr/proto/internals/v1/service_invocation_grpc_pb.d.ts
+0 −125 src/proto/dapr/proto/internals/v1/service_invocation_grpc_pb.js
+0 −189 src/proto/dapr/proto/internals/v1/service_invocation_pb.d.ts
+0 −1,409 src/proto/dapr/proto/internals/v1/service_invocation_pb.js
+7 −1 src/proto/dapr/proto/internals/v1/status_pb.js
+17 −0 src/proto/dapr/proto/operator/v1/operator.proto
+15 −0 src/proto/dapr/proto/operator/v1/operator_grpc_pb.d.ts
+34 −0 src/proto/dapr/proto/operator/v1/operator_grpc_pb.js
+48 −0 src/proto/dapr/proto/operator/v1/operator_pb.d.ts
+395 −1 src/proto/dapr/proto/operator/v1/operator_pb.js
+1 −0 src/proto/dapr/proto/placement/v1/placement.proto
+3 −0 src/proto/dapr/proto/placement/v1/placement_pb.d.ts
+44 −5 src/proto/dapr/proto/placement/v1/placement_pb.js
+30 −0 src/proto/dapr/proto/runtime/v1/appcallback.proto
+18 −0 src/proto/dapr/proto/runtime/v1/appcallback_grpc_pb.d.ts
+35 −0 src/proto/dapr/proto/runtime/v1/appcallback_grpc_pb.js
+56 −0 src/proto/dapr/proto/runtime/v1/appcallback_pb.d.ts
+455 −6 src/proto/dapr/proto/runtime/v1/appcallback_pb.js
+184 −18 src/proto/dapr/proto/runtime/v1/dapr.proto
+68 −0 src/proto/dapr/proto/runtime/v1/dapr_grpc_pb.d.ts
+138 −0 src/proto/dapr/proto/runtime/v1/dapr_grpc_pb.js
+334 −0 src/proto/dapr/proto/runtime/v1/dapr_pb.d.ts
+8,220 −5,759 src/proto/dapr/proto/runtime/v1/dapr_pb.js
+7 −1 src/proto/dapr/proto/sentry/v1/sentry_pb.js
+7 −1 src/proto/google/protobuf/any_pb.js
+7 −1 src/proto/google/protobuf/empty_pb.js
+7 −1 src/proto/google/protobuf/timestamp_pb.js
+4 −0 src/utils/HttpVerb.util.ts
+4 −3 src/workflow/client/DaprWorkflowClient.ts
+11 −1 src/workflow/internal/index.ts
+4 −3 src/workflow/runtime/WorkflowRuntime.ts
+3 −1 test/components/binding-mqtt.yaml
+4 −1 test/e2e/grpc/server.test.ts
2 changes: 1 addition & 1 deletion sdkdocs/python
Submodule python updated 34 files
+2 −2 .github/workflows/fossa.yaml
+1 −1 README.md
+70 −1 dapr/aio/clients/grpc/client.py
+19 −3 dapr/aio/clients/grpc/interceptors.py
+116 −0 dapr/aio/clients/grpc/subscription.py
+75 −1 dapr/clients/grpc/client.py
+22 −5 dapr/clients/grpc/interceptors.py
+145 −0 dapr/clients/grpc/subscription.py
+92 −0 dapr/common/pubsub/subscription.py
+8 −8 dapr/proto/common/v1/common_pb2.py
+31 −39 dapr/proto/common/v1/common_pb2.pyi
+0 −25 dapr/proto/common/v1/common_pb2_grpc.py
+12 −12 dapr/proto/runtime/v1/appcallback_pb2.py
+69 −87 dapr/proto/runtime/v1/appcallback_pb2.pyi
+32 −137 dapr/proto/runtime/v1/appcallback_pb2_grpc.py
+280 −256 dapr/proto/runtime/v1/dapr_pb2.py
+575 −375 dapr/proto/runtime/v1/dapr_pb2.pyi
+269 −841 dapr/proto/runtime/v1/dapr_pb2_grpc.py
+122 −2 daprdocs/content/en/python-sdk-docs/python-client.md
+3 −3 examples/invoke-binding/README.md
+122 −0 examples/pubsub-streaming-async/README.md
+52 −0 examples/pubsub-streaming-async/publisher.py
+50 −0 examples/pubsub-streaming-async/subscriber-handler.py
+67 −0 examples/pubsub-streaming-async/subscriber.py
+121 −0 examples/pubsub-streaming/README.md
+43 −0 examples/pubsub-streaming/publisher.py
+44 −0 examples/pubsub-streaming/subscriber-handler.py
+76 −0 examples/pubsub-streaming/subscriber.py
+55 −2 tests/clients/fake_dapr_server.py
+125 −0 tests/clients/test_dapr_grpc_client.py
+123 −2 tests/clients/test_dapr_grpc_client_async.py
+109 −0 tests/clients/test_subscription.py
+1 −1 tools/requirements.txt
+2 −0 tox.ini

0 comments on commit 1af275a

Please sign in to comment.