durable-workflow 0.4.74__tar.gz → 0.4.76__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {durable_workflow-0.4.74/src/durable_workflow.egg-info → durable_workflow-0.4.76}/PKG-INFO +4 -2
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/README.md +3 -1
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/pyproject.toml +1 -1
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/python_conformance.py +447 -75
- {durable_workflow-0.4.74 → durable_workflow-0.4.76/src/durable_workflow.egg-info}/PKG-INFO +4 -2
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_python_conformance.py +156 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/LICENSE +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/setup.cfg +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/__init__.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/_avro.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/activity.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/auth_composition.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/client.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/errors.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/external_storage.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/external_task_input.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/external_task_result.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/history_bundle_verify.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/interceptors.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/invocable.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/metrics.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/py.typed +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/replay_conformance.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/replay_verify.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/retry_policy.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/serializer.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/sync.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/testing.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/worker.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow/workflow.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow.egg-info/SOURCES.txt +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow.egg-info/dependency_links.txt +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow.egg-info/entry_points.txt +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow.egg-info/requires.txt +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/src/durable_workflow.egg-info/top_level.txt +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_activity_context.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_auth_composition.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_client.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_control_plane_parity_fixtures.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_errors.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_external_storage.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_external_task_input.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_external_task_result.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_golden_history_replay.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_history_bundle_verify.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_history_event_contract.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_invocable.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_metrics.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_order_processing_example.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_public_boundary_scanner.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_queries.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_readme_quickstart.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_replay.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_replay_conformance.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_replay_verify.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_retry_policy.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_schedules.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_serializer.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_signals.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_sleep.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_standalone_activity_client.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_sync.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_testing_harness.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_updates.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_wait_condition.py +0 -0
- {durable_workflow-0.4.74 → durable_workflow-0.4.76}/tests/test_worker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: durable-workflow
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.76
|
|
4
4
|
Summary: Python SDK for the Durable Workflow server (language-neutral HTTP protocol)
|
|
5
5
|
Author: Durable Workflow Contributors
|
|
6
6
|
License-Expression: MIT
|
|
@@ -316,7 +316,9 @@ artifact versions, protocol traces, a no-PHP-assumption audit, and the complete
|
|
|
316
316
|
Python capability table. Host runners can feed their raw published-artifact
|
|
317
317
|
observations to `--compose`; omitted parity cells become explicit
|
|
318
318
|
`not_covered` entries so the gate reports the remaining scenario or capability
|
|
319
|
-
instead of accepting a smoke-only result.
|
|
319
|
+
instead of accepting a smoke-only result. The composer accepts canonical
|
|
320
|
+
snake_case IDs and runbook-style hyphenated IDs such as `server-up` and
|
|
321
|
+
`result-returned`.
|
|
320
322
|
|
|
321
323
|
## External payload storage
|
|
322
324
|
|
|
@@ -280,7 +280,9 @@ artifact versions, protocol traces, a no-PHP-assumption audit, and the complete
|
|
|
280
280
|
Python capability table. Host runners can feed their raw published-artifact
|
|
281
281
|
observations to `--compose`; omitted parity cells become explicit
|
|
282
282
|
`not_covered` entries so the gate reports the remaining scenario or capability
|
|
283
|
-
instead of accepting a smoke-only result.
|
|
283
|
+
instead of accepting a smoke-only result. The composer accepts canonical
|
|
284
|
+
snake_case IDs and runbook-style hyphenated IDs such as `server-up` and
|
|
285
|
+
`result-returned`.
|
|
284
286
|
|
|
285
287
|
## External payload storage
|
|
286
288
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "durable-workflow"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.76"
|
|
8
8
|
description = "Python SDK for the Durable Workflow server (language-neutral HTTP protocol)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|