python-cqrs 4.10.3__tar.gz → 4.11.0__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.
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/PKG-INFO +4 -3
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/pyproject.toml +5 -4
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/python_cqrs.egg-info/PKG-INFO +4 -3
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/python_cqrs.egg-info/requires.txt +2 -2
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/LICENSE +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/README.md +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/setup.cfg +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/adapters/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/adapters/amqp.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/adapters/circuit_breaker.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/adapters/kafka.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/adapters/protocol.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/circuit_breaker.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/compressors/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/compressors/protocol.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/compressors/zlib.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/container/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/container/dependency_injector.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/container/di.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/container/protocol.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/deserializers/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/deserializers/exceptions.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/deserializers/json.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/dispatcher/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/dispatcher/event.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/dispatcher/exceptions.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/dispatcher/models.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/dispatcher/request.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/dispatcher/saga.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/dispatcher/streaming.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/events/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/events/bootstrap.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/events/event.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/events/event_emitter.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/events/event_handler.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/events/event_processor.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/events/fallback.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/events/map.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/generic_utils.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/mediator.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/message_brokers/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/message_brokers/amqp.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/message_brokers/devnull.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/message_brokers/kafka.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/message_brokers/protocol.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/middlewares/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/middlewares/base.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/middlewares/logging.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/outbox/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/outbox/map.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/outbox/mock.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/outbox/repository.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/outbox/sqlalchemy.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/producer.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/requests/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/requests/bootstrap.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/requests/cor_request_handler.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/requests/fallback.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/requests/map.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/requests/mermaid.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/requests/request.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/requests/request_handler.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/response.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/bootstrap.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/circuit_breaker.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/compensation.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/execution.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/fallback.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/mermaid.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/models.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/recovery.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/saga.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/step.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/storage/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/storage/enums.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/storage/memory.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/storage/models.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/storage/protocol.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/storage/sqlalchemy.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/saga/validation.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/serializers/__init__.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/serializers/default.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/cqrs/types.py +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/python_cqrs.egg-info/SOURCES.txt +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/python_cqrs.egg-info/dependency_links.txt +0 -0
- {python_cqrs-4.10.3 → python_cqrs-4.11.0}/src/python_cqrs.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-cqrs
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.11.0
|
|
4
4
|
Summary: Event-Driven Architecture Framework for Distributed Systems
|
|
5
5
|
Author-email: Vadim Kozyrevskiy <vadikko2@mail.ru>, Dmitry Kutlubaev <kutlubaev00@mail.ru>
|
|
6
6
|
Maintainer-email: Vadim Kozyrevskiy <vadikko2@mail.ru>
|
|
@@ -13,6 +13,7 @@ Classifier: Operating System :: OS Independent
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
17
|
Requires-Python: >=3.10
|
|
17
18
|
Description-Content-Type: text/markdown
|
|
18
19
|
License-File: LICENSE
|
|
@@ -41,7 +42,7 @@ Requires-Dist: requests==2.*; extra == "dev"
|
|
|
41
42
|
Requires-Dist: pytest~=7.4.2; extra == "dev"
|
|
42
43
|
Requires-Dist: pytest-asyncio~=0.21.1; extra == "dev"
|
|
43
44
|
Requires-Dist: pytest-env==0.6.2; extra == "dev"
|
|
44
|
-
Requires-Dist: cryptography==
|
|
45
|
+
Requires-Dist: cryptography==48.0.1; extra == "dev"
|
|
45
46
|
Requires-Dist: asyncmy==0.2.9; extra == "dev"
|
|
46
47
|
Requires-Dist: asyncpg>=0.29.0; extra == "dev"
|
|
47
48
|
Requires-Dist: redis>=5.0.0; extra == "dev"
|
|
@@ -51,7 +52,7 @@ Requires-Dist: fastapi==0.109.*; extra == "examples"
|
|
|
51
52
|
Requires-Dist: faststream[kafka]==0.5.28; extra == "examples"
|
|
52
53
|
Requires-Dist: faker>=37.12.0; extra == "examples"
|
|
53
54
|
Requires-Dist: uvicorn==0.32.0; extra == "examples"
|
|
54
|
-
Requires-Dist: aiohttp==3.
|
|
55
|
+
Requires-Dist: aiohttp==3.14.1; extra == "examples"
|
|
55
56
|
Requires-Dist: protobuf>=4.25.8; extra == "examples"
|
|
56
57
|
Provides-Extra: kafka
|
|
57
58
|
Requires-Dist: aiokafka==0.10.0; extra == "kafka"
|
|
@@ -13,7 +13,8 @@ classifiers = [
|
|
|
13
13
|
"Operating System :: OS Independent",
|
|
14
14
|
"Programming Language :: Python :: 3.10",
|
|
15
15
|
"Programming Language :: Python :: 3.11",
|
|
16
|
-
"Programming Language :: Python :: 3.12"
|
|
16
|
+
"Programming Language :: Python :: 3.12",
|
|
17
|
+
"Programming Language :: Python :: 3.13"
|
|
17
18
|
]
|
|
18
19
|
dependencies = [
|
|
19
20
|
"dataclass-wizard==0.*",
|
|
@@ -30,7 +31,7 @@ maintainers = [{name = "Vadim Kozyrevskiy", email = "vadikko2@mail.ru"}]
|
|
|
30
31
|
name = "python-cqrs"
|
|
31
32
|
readme = "README.md"
|
|
32
33
|
requires-python = ">=3.10"
|
|
33
|
-
version = "4.
|
|
34
|
+
version = "4.11.0"
|
|
34
35
|
|
|
35
36
|
[project.optional-dependencies]
|
|
36
37
|
aiobreaker = ["aiobreaker>=0.3.0"]
|
|
@@ -51,7 +52,7 @@ dev = [
|
|
|
51
52
|
"pytest~=7.4.2",
|
|
52
53
|
"pytest-asyncio~=0.21.1",
|
|
53
54
|
"pytest-env==0.6.2",
|
|
54
|
-
"cryptography==
|
|
55
|
+
"cryptography==48.0.1",
|
|
55
56
|
"asyncmy==0.2.9",
|
|
56
57
|
"asyncpg>=0.29.0",
|
|
57
58
|
"redis>=5.0.0",
|
|
@@ -63,7 +64,7 @@ examples = [
|
|
|
63
64
|
"faststream[kafka]==0.5.28",
|
|
64
65
|
"faker>=37.12.0",
|
|
65
66
|
"uvicorn==0.32.0",
|
|
66
|
-
"aiohttp==3.
|
|
67
|
+
"aiohttp==3.14.1",
|
|
67
68
|
"protobuf>=4.25.8",
|
|
68
69
|
]
|
|
69
70
|
kafka = ["aiokafka==0.10.0", "retry-async==0.1.*"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-cqrs
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.11.0
|
|
4
4
|
Summary: Event-Driven Architecture Framework for Distributed Systems
|
|
5
5
|
Author-email: Vadim Kozyrevskiy <vadikko2@mail.ru>, Dmitry Kutlubaev <kutlubaev00@mail.ru>
|
|
6
6
|
Maintainer-email: Vadim Kozyrevskiy <vadikko2@mail.ru>
|
|
@@ -13,6 +13,7 @@ Classifier: Operating System :: OS Independent
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
17
|
Requires-Python: >=3.10
|
|
17
18
|
Description-Content-Type: text/markdown
|
|
18
19
|
License-File: LICENSE
|
|
@@ -41,7 +42,7 @@ Requires-Dist: requests==2.*; extra == "dev"
|
|
|
41
42
|
Requires-Dist: pytest~=7.4.2; extra == "dev"
|
|
42
43
|
Requires-Dist: pytest-asyncio~=0.21.1; extra == "dev"
|
|
43
44
|
Requires-Dist: pytest-env==0.6.2; extra == "dev"
|
|
44
|
-
Requires-Dist: cryptography==
|
|
45
|
+
Requires-Dist: cryptography==48.0.1; extra == "dev"
|
|
45
46
|
Requires-Dist: asyncmy==0.2.9; extra == "dev"
|
|
46
47
|
Requires-Dist: asyncpg>=0.29.0; extra == "dev"
|
|
47
48
|
Requires-Dist: redis>=5.0.0; extra == "dev"
|
|
@@ -51,7 +52,7 @@ Requires-Dist: fastapi==0.109.*; extra == "examples"
|
|
|
51
52
|
Requires-Dist: faststream[kafka]==0.5.28; extra == "examples"
|
|
52
53
|
Requires-Dist: faker>=37.12.0; extra == "examples"
|
|
53
54
|
Requires-Dist: uvicorn==0.32.0; extra == "examples"
|
|
54
|
-
Requires-Dist: aiohttp==3.
|
|
55
|
+
Requires-Dist: aiohttp==3.14.1; extra == "examples"
|
|
55
56
|
Requires-Dist: protobuf>=4.25.8; extra == "examples"
|
|
56
57
|
Provides-Extra: kafka
|
|
57
58
|
Requires-Dist: aiokafka==0.10.0; extra == "kafka"
|
|
@@ -25,7 +25,7 @@ requests==2.*
|
|
|
25
25
|
pytest~=7.4.2
|
|
26
26
|
pytest-asyncio~=0.21.1
|
|
27
27
|
pytest-env==0.6.2
|
|
28
|
-
cryptography==
|
|
28
|
+
cryptography==48.0.1
|
|
29
29
|
asyncmy==0.2.9
|
|
30
30
|
asyncpg>=0.29.0
|
|
31
31
|
redis>=5.0.0
|
|
@@ -36,7 +36,7 @@ fastapi==0.109.*
|
|
|
36
36
|
faststream[kafka]==0.5.28
|
|
37
37
|
faker>=37.12.0
|
|
38
38
|
uvicorn==0.32.0
|
|
39
|
-
aiohttp==3.
|
|
39
|
+
aiohttp==3.14.1
|
|
40
40
|
protobuf>=4.25.8
|
|
41
41
|
|
|
42
42
|
[kafka]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|