python-cqrs 4.10.2__tar.gz → 4.10.3__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.2 → python_cqrs-4.10.3}/PKG-INFO +1 -1
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/pyproject.toml +1 -1
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/python_cqrs.egg-info/PKG-INFO +1 -1
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/LICENSE +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/README.md +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/setup.cfg +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/adapters/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/adapters/amqp.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/adapters/circuit_breaker.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/adapters/kafka.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/adapters/protocol.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/circuit_breaker.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/compressors/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/compressors/protocol.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/compressors/zlib.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/container/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/container/dependency_injector.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/container/di.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/container/protocol.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/deserializers/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/deserializers/exceptions.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/deserializers/json.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/dispatcher/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/dispatcher/event.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/dispatcher/exceptions.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/dispatcher/models.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/dispatcher/request.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/dispatcher/saga.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/dispatcher/streaming.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/events/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/events/bootstrap.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/events/event.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/events/event_emitter.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/events/event_handler.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/events/event_processor.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/events/fallback.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/events/map.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/generic_utils.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/mediator.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/message_brokers/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/message_brokers/amqp.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/message_brokers/devnull.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/message_brokers/kafka.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/message_brokers/protocol.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/middlewares/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/middlewares/base.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/middlewares/logging.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/outbox/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/outbox/map.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/outbox/mock.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/outbox/repository.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/outbox/sqlalchemy.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/producer.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/requests/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/requests/bootstrap.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/requests/cor_request_handler.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/requests/fallback.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/requests/map.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/requests/mermaid.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/requests/request.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/requests/request_handler.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/response.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/bootstrap.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/circuit_breaker.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/compensation.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/execution.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/fallback.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/mermaid.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/models.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/recovery.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/saga.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/step.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/storage/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/storage/enums.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/storage/memory.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/storage/models.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/storage/protocol.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/storage/sqlalchemy.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/saga/validation.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/serializers/__init__.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/serializers/default.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/cqrs/types.py +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/python_cqrs.egg-info/SOURCES.txt +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/python_cqrs.egg-info/dependency_links.txt +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/src/python_cqrs.egg-info/requires.txt +0 -0
- {python_cqrs-4.10.2 → python_cqrs-4.10.3}/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.10.
|
|
3
|
+
Version: 4.10.3
|
|
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>
|
|
@@ -30,7 +30,7 @@ maintainers = [{name = "Vadim Kozyrevskiy", email = "vadikko2@mail.ru"}]
|
|
|
30
30
|
name = "python-cqrs"
|
|
31
31
|
readme = "README.md"
|
|
32
32
|
requires-python = ">=3.10"
|
|
33
|
-
version = "4.10.
|
|
33
|
+
version = "4.10.3"
|
|
34
34
|
|
|
35
35
|
[project.optional-dependencies]
|
|
36
36
|
aiobreaker = ["aiobreaker>=0.3.0"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-cqrs
|
|
3
|
-
Version: 4.10.
|
|
3
|
+
Version: 4.10.3
|
|
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>
|
|
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
|
|
File without changes
|