python-cqrs 4.10.4__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.
Files changed (88) hide show
  1. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/PKG-INFO +3 -2
  2. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/pyproject.toml +4 -3
  3. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/python_cqrs.egg-info/PKG-INFO +3 -2
  4. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/python_cqrs.egg-info/requires.txt +1 -1
  5. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/LICENSE +0 -0
  6. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/README.md +0 -0
  7. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/setup.cfg +0 -0
  8. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/__init__.py +0 -0
  9. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/adapters/__init__.py +0 -0
  10. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/adapters/amqp.py +0 -0
  11. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/adapters/circuit_breaker.py +0 -0
  12. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/adapters/kafka.py +0 -0
  13. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/adapters/protocol.py +0 -0
  14. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/circuit_breaker.py +0 -0
  15. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/compressors/__init__.py +0 -0
  16. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/compressors/protocol.py +0 -0
  17. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/compressors/zlib.py +0 -0
  18. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/container/__init__.py +0 -0
  19. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/container/dependency_injector.py +0 -0
  20. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/container/di.py +0 -0
  21. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/container/protocol.py +0 -0
  22. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/deserializers/__init__.py +0 -0
  23. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/deserializers/exceptions.py +0 -0
  24. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/deserializers/json.py +0 -0
  25. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/dispatcher/__init__.py +0 -0
  26. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/dispatcher/event.py +0 -0
  27. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/dispatcher/exceptions.py +0 -0
  28. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/dispatcher/models.py +0 -0
  29. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/dispatcher/request.py +0 -0
  30. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/dispatcher/saga.py +0 -0
  31. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/dispatcher/streaming.py +0 -0
  32. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/events/__init__.py +0 -0
  33. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/events/bootstrap.py +0 -0
  34. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/events/event.py +0 -0
  35. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/events/event_emitter.py +0 -0
  36. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/events/event_handler.py +0 -0
  37. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/events/event_processor.py +0 -0
  38. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/events/fallback.py +0 -0
  39. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/events/map.py +0 -0
  40. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/generic_utils.py +0 -0
  41. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/mediator.py +0 -0
  42. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/message_brokers/__init__.py +0 -0
  43. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/message_brokers/amqp.py +0 -0
  44. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/message_brokers/devnull.py +0 -0
  45. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/message_brokers/kafka.py +0 -0
  46. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/message_brokers/protocol.py +0 -0
  47. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/middlewares/__init__.py +0 -0
  48. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/middlewares/base.py +0 -0
  49. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/middlewares/logging.py +0 -0
  50. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/outbox/__init__.py +0 -0
  51. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/outbox/map.py +0 -0
  52. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/outbox/mock.py +0 -0
  53. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/outbox/repository.py +0 -0
  54. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/outbox/sqlalchemy.py +0 -0
  55. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/producer.py +0 -0
  56. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/requests/__init__.py +0 -0
  57. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/requests/bootstrap.py +0 -0
  58. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/requests/cor_request_handler.py +0 -0
  59. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/requests/fallback.py +0 -0
  60. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/requests/map.py +0 -0
  61. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/requests/mermaid.py +0 -0
  62. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/requests/request.py +0 -0
  63. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/requests/request_handler.py +0 -0
  64. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/response.py +0 -0
  65. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/__init__.py +0 -0
  66. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/bootstrap.py +0 -0
  67. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/circuit_breaker.py +0 -0
  68. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/compensation.py +0 -0
  69. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/execution.py +0 -0
  70. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/fallback.py +0 -0
  71. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/mermaid.py +0 -0
  72. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/models.py +0 -0
  73. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/recovery.py +0 -0
  74. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/saga.py +0 -0
  75. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/step.py +0 -0
  76. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/storage/__init__.py +0 -0
  77. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/storage/enums.py +0 -0
  78. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/storage/memory.py +0 -0
  79. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/storage/models.py +0 -0
  80. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/storage/protocol.py +0 -0
  81. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/storage/sqlalchemy.py +0 -0
  82. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/saga/validation.py +0 -0
  83. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/serializers/__init__.py +0 -0
  84. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/serializers/default.py +0 -0
  85. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/cqrs/types.py +0 -0
  86. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/python_cqrs.egg-info/SOURCES.txt +0 -0
  87. {python_cqrs-4.10.4 → python_cqrs-4.11.0}/src/python_cqrs.egg-info/dependency_links.txt +0 -0
  88. {python_cqrs-4.10.4 → 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.10.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
@@ -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.13.2; extra == "examples"
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.10.4"
34
+ version = "4.11.0"
34
35
 
35
36
  [project.optional-dependencies]
36
37
  aiobreaker = ["aiobreaker>=0.3.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.13.2",
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.10.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
@@ -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.13.2; extra == "examples"
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"
@@ -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.13.2
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