hexkit 5.1.0__tar.gz → 5.1.1__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 (63) hide show
  1. {hexkit-5.1.0/src/hexkit.egg-info → hexkit-5.1.1}/PKG-INFO +1 -2
  2. {hexkit-5.1.0 → hexkit-5.1.1}/pyproject.toml +1 -2
  3. {hexkit-5.1.0 → hexkit-5.1.1/src/hexkit.egg-info}/PKG-INFO +1 -2
  4. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit.egg-info/requires.txt +0 -1
  5. {hexkit-5.1.0 → hexkit-5.1.1}/LICENSE +0 -0
  6. {hexkit-5.1.0 → hexkit-5.1.1}/MANIFEST.in +0 -0
  7. {hexkit-5.1.0 → hexkit-5.1.1}/README.md +0 -0
  8. {hexkit-5.1.0 → hexkit-5.1.1}/setup.cfg +0 -0
  9. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/__init__.py +0 -0
  10. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/__main__.py +0 -0
  11. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/base.py +0 -0
  12. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/config.py +0 -0
  13. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/correlation.py +0 -0
  14. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/custom_types.py +0 -0
  15. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/log.py +0 -0
  16. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/opentelemetry.py +0 -0
  17. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/protocols/__init__.py +0 -0
  18. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/protocols/dao.py +0 -0
  19. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/protocols/daopub.py +0 -0
  20. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/protocols/daosub.py +0 -0
  21. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/protocols/eventpub.py +0 -0
  22. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/protocols/eventsub.py +0 -0
  23. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/protocols/objstorage.py +0 -0
  24. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/__init__.py +0 -0
  25. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/akafka/__init__.py +0 -0
  26. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/akafka/config.py +0 -0
  27. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/akafka/provider/__init__.py +0 -0
  28. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/akafka/provider/daosub.py +0 -0
  29. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/akafka/provider/eventpub.py +0 -0
  30. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/akafka/provider/eventsub.py +0 -0
  31. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/akafka/provider/utils.py +0 -0
  32. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/akafka/testcontainer.py +0 -0
  33. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/akafka/testutils.py +0 -0
  34. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongodb/__init__.py +0 -0
  35. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongodb/migrations/__init__.py +0 -0
  36. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongodb/migrations/_manager.py +0 -0
  37. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongodb/migrations/_utils.py +0 -0
  38. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongodb/provider.py +0 -0
  39. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongodb/testutils.py +0 -0
  40. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongokafka/__init__.py +0 -0
  41. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongokafka/provider/__init__.py +0 -0
  42. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongokafka/provider/config.py +0 -0
  43. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongokafka/provider/daopub.py +0 -0
  44. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongokafka/provider/persistent_pub.py +0 -0
  45. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/mongokafka/testutils.py +0 -0
  46. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/__init__.py +0 -0
  47. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/provider.py +0 -0
  48. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/test_files/__init__.py +0 -0
  49. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/test_files/test_file1.yaml +0 -0
  50. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/test_files/test_file2.yaml +0 -0
  51. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/test_files/test_file3.yaml +0 -0
  52. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/test_files/test_file4.yaml +0 -0
  53. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/testutils/__init__.py +0 -0
  54. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/testutils/_fixtures.py +0 -0
  55. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/testutils/_typical_workflow.py +0 -0
  56. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/s3/testutils/_utils.py +0 -0
  57. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/testing/__init__.py +0 -0
  58. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/providers/testing/eventpub.py +0 -0
  59. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/py.typed +0 -0
  60. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit/utils.py +0 -0
  61. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit.egg-info/SOURCES.txt +0 -0
  62. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit.egg-info/dependency_links.txt +0 -0
  63. {hexkit-5.1.0 → hexkit-5.1.1}/src/hexkit.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hexkit
3
- Version: 5.1.0
3
+ Version: 5.1.1
4
4
  Summary: A Toolkit for Building Microservices using the Hexagonal Architecture
5
5
  Author-email: "German Human Genome Phenome Archive (GHGA)" <contact@ghga.de>
6
6
  License: Apache 2.0
@@ -34,7 +34,6 @@ Requires-Dist: motor<4,>=3.7; extra == "mongodb"
34
34
  Provides-Extra: opentelemetry-base
35
35
  Requires-Dist: opentelemetry-sdk<2,>=1.31.1; extra == "opentelemetry-base"
36
36
  Requires-Dist: opentelemetry-exporter-otlp<2,>=1.31.1; extra == "opentelemetry-base"
37
- Requires-Dist: opentelemetry-distro>=0.52b1; extra == "opentelemetry-base"
38
37
  Requires-Dist: opentelemetry-instrumentation>=0.52b1; extra == "opentelemetry-base"
39
38
  Requires-Dist: opentelemetry-instrumentation-httpx>=0.52b1; extra == "opentelemetry-base"
40
39
  Provides-Extra: opentelemetry-akafka
@@ -24,7 +24,7 @@ classifiers = [
24
24
  "Intended Audience :: Developers",
25
25
  ]
26
26
  name = "hexkit"
27
- version = "5.1.0"
27
+ version = "5.1.1"
28
28
  description = "A Toolkit for Building Microservices using the Hexagonal Architecture"
29
29
  dependencies = [
30
30
  "opentelemetry-api >=1.31.1, <2",
@@ -51,7 +51,6 @@ mongodb = [
51
51
  opentelemetry-base = [
52
52
  "opentelemetry-sdk >=1.31.1, <2",
53
53
  "opentelemetry-exporter-otlp >=1.31.1, <2",
54
- "opentelemetry-distro >=0.52b1",
55
54
  "opentelemetry-instrumentation >=0.52b1",
56
55
  "opentelemetry-instrumentation-httpx >=0.52b1",
57
56
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hexkit
3
- Version: 5.1.0
3
+ Version: 5.1.1
4
4
  Summary: A Toolkit for Building Microservices using the Hexagonal Architecture
5
5
  Author-email: "German Human Genome Phenome Archive (GHGA)" <contact@ghga.de>
6
6
  License: Apache 2.0
@@ -34,7 +34,6 @@ Requires-Dist: motor<4,>=3.7; extra == "mongodb"
34
34
  Provides-Extra: opentelemetry-base
35
35
  Requires-Dist: opentelemetry-sdk<2,>=1.31.1; extra == "opentelemetry-base"
36
36
  Requires-Dist: opentelemetry-exporter-otlp<2,>=1.31.1; extra == "opentelemetry-base"
37
- Requires-Dist: opentelemetry-distro>=0.52b1; extra == "opentelemetry-base"
38
37
  Requires-Dist: opentelemetry-instrumentation>=0.52b1; extra == "opentelemetry-base"
39
38
  Requires-Dist: opentelemetry-instrumentation-httpx>=0.52b1; extra == "opentelemetry-base"
40
39
  Provides-Extra: opentelemetry-akafka
@@ -28,7 +28,6 @@ opentelemetry-instrumentation-aiokafka>=0.52b1
28
28
  [opentelemetry-base]
29
29
  opentelemetry-sdk<2,>=1.31.1
30
30
  opentelemetry-exporter-otlp<2,>=1.31.1
31
- opentelemetry-distro>=0.52b1
32
31
  opentelemetry-instrumentation>=0.52b1
33
32
  opentelemetry-instrumentation-httpx>=0.52b1
34
33
 
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