Skip to content

Commit

Permalink
python
Browse files Browse the repository at this point in the history
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
  • Loading branch information
hhunter-ms committed Feb 4, 2025
1 parent 04180d9 commit 529c140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdkdocs/python
Submodule python updated 81 files
+2 −2 .github/workflows/build-push-to-main.yaml
+2 −2 .github/workflows/build-tag.yaml
+2 −2 .github/workflows/build.yaml
+1 −1 .github/workflows/validate_examples.yaml
+2 −3 README.md
+122 −0 dapr/actor/runtime/mock_actor.py
+238 −0 dapr/actor/runtime/mock_state_manager.py
+3 −4 dapr/actor/runtime/state_manager.py
+22 −14 dapr/aio/clients/grpc/client.py
+7 −0 dapr/aio/clients/grpc/subscription.py
+12 −0 dapr/clients/exceptions.py
+3 −3 dapr/clients/grpc/_request.py
+28 −17 dapr/clients/grpc/client.py
+6 −0 dapr/clients/grpc/subscription.py
+1 −1 dapr/proto/README.md
+7 −7 dapr/proto/common/v1/common_pb2.py
+11 −11 dapr/proto/runtime/v1/appcallback_pb2.py
+104 −90 dapr/proto/runtime/v1/dapr_pb2.py
+12 −12 dapr/proto/runtime/v1/dapr_pb2.pyi
+6 −6 dapr/proto/runtime/v1/dapr_pb2_grpc.py
+1 −1 daprdocs/content/en/python-sdk-docs/_index.md
+71 −2 daprdocs/content/en/python-sdk-docs/python-actor.md
+26 −21 daprdocs/content/en/python-sdk-docs/python-client.md
+1 −5 daprdocs/content/en/python-sdk-docs/python-sdk-extensions/python-workflow-ext/python-workflow.md
+1 −1 dev-requirements.txt
+31 −0 docs/clients/clients.grpc.rst
+18 −0 docs/proto/proto.runtime.rst
+37 −0 docs/proto/proto.runtime.v1.rst
+1 −1 examples/configuration/README.md
+1 −1 examples/crypto/README.md
+56 −1 examples/demo_actor/README.md
+40 −0 examples/demo_actor/demo_actor/test_demo_actor.py
+1 −1 examples/demo_workflow/README.md
+3 −0 examples/demo_workflow/app.py
+1 −1 examples/demo_workflow/demo_workflow/requirements.txt
+1 −1 examples/distributed_lock/README.md
+2 −2 examples/error_handling/README.md
+15 −0 examples/error_handling/components/state_redis.yaml
+1 −1 examples/grpc_proxying/README.md
+1 −1 examples/invoke-binding/README.md
+1 −1 examples/invoke-custom-data/README.md
+75 −0 examples/invoke-http/README.md
+22 −11 examples/invoke-http/invoke-caller.py
+9 −0 examples/invoke-http/invoke-receiver.py
+1 −1 examples/invoke-simple/README.md
+1 −1 examples/metadata/README.md
+1 −1 examples/pubsub-simple/README.md
+1 −1 examples/pubsub-streaming-async/README.md
+1 −1 examples/pubsub-streaming-async/subscriber-handler.py
+23 −19 examples/pubsub-streaming-async/subscriber.py
+1 −1 examples/pubsub-streaming/README.md
+1 −1 examples/pubsub-streaming/subscriber-handler.py
+20 −24 examples/pubsub-streaming/subscriber.py
+1 −1 examples/secret_store/README.md
+4 −1 examples/state_store/README.md
+22 −2 examples/state_store/state_store.py
+1 −1 examples/state_store_query/README.md
+1 −1 examples/w3c-tracing/README.md
+1 −1 examples/workflow/README.md
+1 −0 examples/workflow/monitor.py
+1 −0 examples/workflow/task_chaining.py
+7 −8 ext/dapr-ext-fastapi/dapr/ext/fastapi/actor.py
+2 −2 ext/dapr-ext-fastapi/setup.cfg
+2 −2 ext/dapr-ext-grpc/setup.cfg
+25 −3 ext/dapr-ext-workflow/dapr/ext/workflow/dapr_workflow_client.py
+4 −0 ext/dapr-ext-workflow/dapr/ext/workflow/dapr_workflow_context.py
+5 −0 ext/dapr-ext-workflow/dapr/ext/workflow/workflow_context.py
+3 −3 ext/dapr-ext-workflow/setup.cfg
+8 −0 ext/dapr-ext-workflow/tests/test_dapr_workflow_context.py
+30 −13 ext/dapr-ext-workflow/tests/test_workflow_client.py
+5 −5 ext/flask_dapr/flask_dapr/actor.py
+2 −2 ext/flask_dapr/setup.cfg
+1 −1 mypy.ini
+3 −3 setup.cfg
+314 −0 tests/actor/test_mock_actor.py
+73 −0 tests/actor/test_mock_state_manager.py
+15 −1 tests/actor/test_state_manager.py
+19 −2 tests/clients/test_dapr_grpc_client.py
+30 −1 tests/clients/test_exceptions.py
+1 −1 tools/requirements.txt
+3 −3 tox.ini

0 comments on commit 529c140

Please sign in to comment.