python-neva 3.1.0__tar.gz → 3.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 (132) hide show
  1. {python_neva-3.1.0 → python_neva-3.1.1}/CHANGELOG.md +6 -0
  2. {python_neva-3.1.0 → python_neva-3.1.1}/PKG-INFO +2 -2
  3. {python_neva-3.1.0 → python_neva-3.1.1}/pyproject.toml +1 -1
  4. {python_neva-3.1.0 → python_neva-3.1.1}/.envrc +0 -0
  5. {python_neva-3.1.0 → python_neva-3.1.1}/.gitignore +0 -0
  6. {python_neva-3.1.0 → python_neva-3.1.1}/.pre-commit-config.yaml +0 -0
  7. {python_neva-3.1.0 → python_neva-3.1.1}/.python-version +0 -0
  8. {python_neva-3.1.0 → python_neva-3.1.1}/README.md +0 -0
  9. {python_neva-3.1.0 → python_neva-3.1.1}/neva/arch/__init__.py +0 -0
  10. {python_neva-3.1.0 → python_neva-3.1.1}/neva/arch/application.py +0 -0
  11. {python_neva-3.1.0 → python_neva-3.1.1}/neva/arch/config.py +0 -0
  12. {python_neva-3.1.0 → python_neva-3.1.1}/neva/arch/facade.py +0 -0
  13. {python_neva-3.1.0 → python_neva-3.1.1}/neva/arch/integrations/__init__.py +0 -0
  14. {python_neva-3.1.0 → python_neva-3.1.1}/neva/arch/integrations/faststream.py +0 -0
  15. {python_neva-3.1.0 → python_neva-3.1.1}/neva/arch/py.typed +0 -0
  16. {python_neva-3.1.0 → python_neva-3.1.1}/neva/arch/service_provider.py +0 -0
  17. {python_neva-3.1.0 → python_neva-3.1.1}/neva/config/__init__.py +0 -0
  18. {python_neva-3.1.0 → python_neva-3.1.1}/neva/config/base_providers.py +0 -0
  19. {python_neva-3.1.0 → python_neva-3.1.1}/neva/config/loader.py +0 -0
  20. {python_neva-3.1.0 → python_neva-3.1.1}/neva/config/py.typed +0 -0
  21. {python_neva-3.1.0 → python_neva-3.1.1}/neva/config/repository.py +0 -0
  22. {python_neva-3.1.0 → python_neva-3.1.1}/neva/database/__init__.py +0 -0
  23. {python_neva-3.1.0 → python_neva-3.1.1}/neva/database/config.py +0 -0
  24. {python_neva-3.1.0 → python_neva-3.1.1}/neva/database/connection.py +0 -0
  25. {python_neva-3.1.0 → python_neva-3.1.1}/neva/database/manager.py +0 -0
  26. {python_neva-3.1.0 → python_neva-3.1.1}/neva/database/provider.py +0 -0
  27. {python_neva-3.1.0 → python_neva-3.1.1}/neva/database/py.typed +0 -0
  28. {python_neva-3.1.0 → python_neva-3.1.1}/neva/database/transaction.py +0 -0
  29. {python_neva-3.1.0 → python_neva-3.1.1}/neva/events/__init__.py +0 -0
  30. {python_neva-3.1.0 → python_neva-3.1.1}/neva/events/dispatcher.py +0 -0
  31. {python_neva-3.1.0 → python_neva-3.1.1}/neva/events/event.py +0 -0
  32. {python_neva-3.1.0 → python_neva-3.1.1}/neva/events/event_registry.py +0 -0
  33. {python_neva-3.1.0 → python_neva-3.1.1}/neva/events/listener.py +0 -0
  34. {python_neva-3.1.0 → python_neva-3.1.1}/neva/events/provider.py +0 -0
  35. {python_neva-3.1.0 → python_neva-3.1.1}/neva/events/py.typed +0 -0
  36. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/__init__.py +0 -0
  37. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/instrumentation/__init__.py +0 -0
  38. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/instrumentation/sqlalchemy.py +0 -0
  39. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/logging/__init__.py +0 -0
  40. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/logging/manager.py +0 -0
  41. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/logging/provider.py +0 -0
  42. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/middleware/__init__.py +0 -0
  43. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/middleware/correlation.py +0 -0
  44. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/middleware/profiler.py +0 -0
  45. {python_neva-3.1.0 → python_neva-3.1.1}/neva/obs/py.typed +0 -0
  46. {python_neva-3.1.0 → python_neva-3.1.1}/neva/polyfactory/__init__.py +0 -0
  47. {python_neva-3.1.0 → python_neva-3.1.1}/neva/polyfactory/factories.py +0 -0
  48. {python_neva-3.1.0 → python_neva-3.1.1}/neva/polyfactory/persistence.py +0 -0
  49. {python_neva-3.1.0 → python_neva-3.1.1}/neva/polyfactory/py.typed +0 -0
  50. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/__init__.py +0 -0
  51. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/encryption/__init__.py +0 -0
  52. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/encryption/encrypter.py +0 -0
  53. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/encryption/protocol.py +0 -0
  54. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/hashing/__init__.py +0 -0
  55. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/hashing/config.py +0 -0
  56. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/hashing/hash_manager.py +0 -0
  57. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/hashing/hashers/__init__.py +0 -0
  58. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/hashing/hashers/argon2.py +0 -0
  59. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/hashing/hashers/bcrypt.py +0 -0
  60. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/hashing/hashers/protocol.py +0 -0
  61. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/provider.py +0 -0
  62. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/py.typed +0 -0
  63. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/tokens/__init__.py +0 -0
  64. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/tokens/generate_token.py +0 -0
  65. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/tokens/hash_token.py +0 -0
  66. {python_neva-3.1.0 → python_neva-3.1.1}/neva/security/tokens/verify_token.py +0 -0
  67. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/__init__.py +0 -0
  68. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/accessors.py +0 -0
  69. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/__init__.py +0 -0
  70. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/app.py +0 -0
  71. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/app.pyi +0 -0
  72. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/config.py +0 -0
  73. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/config.pyi +0 -0
  74. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/crypt.py +0 -0
  75. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/crypt.pyi +0 -0
  76. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/db.py +0 -0
  77. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/db.pyi +0 -0
  78. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/event.py +0 -0
  79. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/event.pyi +0 -0
  80. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/hash.py +0 -0
  81. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/hash.pyi +0 -0
  82. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/log.py +0 -0
  83. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/facade/log.pyi +0 -0
  84. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/py.typed +0 -0
  85. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/results.py +0 -0
  86. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/strategy.py +0 -0
  87. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/strconv.py +0 -0
  88. {python_neva-3.1.0 → python_neva-3.1.1}/neva/support/time.py +0 -0
  89. {python_neva-3.1.0 → python_neva-3.1.1}/neva/testing/__init__.py +0 -0
  90. {python_neva-3.1.0 → python_neva-3.1.1}/neva/testing/fakes.py +0 -0
  91. {python_neva-3.1.0 → python_neva-3.1.1}/neva/testing/fixtures.py +0 -0
  92. {python_neva-3.1.0 → python_neva-3.1.1}/neva/testing/py.typed +0 -0
  93. {python_neva-3.1.0 → python_neva-3.1.1}/neva/testing/test_case.py +0 -0
  94. {python_neva-3.1.0 → python_neva-3.1.1}/ruff.toml +0 -0
  95. {python_neva-3.1.0 → python_neva-3.1.1}/scripts/retag-with-changelog.sh +0 -0
  96. {python_neva-3.1.0 → python_neva-3.1.1}/tests/__init__.py +0 -0
  97. {python_neva-3.1.0 → python_neva-3.1.1}/tests/arch/__init__.py +0 -0
  98. {python_neva-3.1.0 → python_neva-3.1.1}/tests/arch/test_scope.py +0 -0
  99. {python_neva-3.1.0 → python_neva-3.1.1}/tests/config/__init__.py +0 -0
  100. {python_neva-3.1.0 → python_neva-3.1.1}/tests/config/test_loader.py +0 -0
  101. {python_neva-3.1.0 → python_neva-3.1.1}/tests/config/test_repository.py +0 -0
  102. {python_neva-3.1.0 → python_neva-3.1.1}/tests/conftest.py +0 -0
  103. {python_neva-3.1.0 → python_neva-3.1.1}/tests/database/__init__.py +0 -0
  104. {python_neva-3.1.0 → python_neva-3.1.1}/tests/database/test_connection_manager.py +0 -0
  105. {python_neva-3.1.0 → python_neva-3.1.1}/tests/database/test_database_manager.py +0 -0
  106. {python_neva-3.1.0 → python_neva-3.1.1}/tests/database/test_edge_cases.py +0 -0
  107. {python_neva-3.1.0 → python_neva-3.1.1}/tests/database/test_multi_connection.py +0 -0
  108. {python_neva-3.1.0 → python_neva-3.1.1}/tests/database/test_sqlalchemy_integration.py +0 -0
  109. {python_neva-3.1.0 → python_neva-3.1.1}/tests/database/test_transaction.py +0 -0
  110. {python_neva-3.1.0 → python_neva-3.1.1}/tests/database/test_transaction_context.py +0 -0
  111. {python_neva-3.1.0 → python_neva-3.1.1}/tests/database/test_transaction_registry.py +0 -0
  112. {python_neva-3.1.0 → python_neva-3.1.1}/tests/events/__init__.py +0 -0
  113. {python_neva-3.1.0 → python_neva-3.1.1}/tests/events/conftest.py +0 -0
  114. {python_neva-3.1.0 → python_neva-3.1.1}/tests/events/test_deferred.py +0 -0
  115. {python_neva-3.1.0 → python_neva-3.1.1}/tests/events/test_dispatch.py +0 -0
  116. {python_neva-3.1.0 → python_neva-3.1.1}/tests/events/test_event.py +0 -0
  117. {python_neva-3.1.0 → python_neva-3.1.1}/tests/events/test_event_registry.py +0 -0
  118. {python_neva-3.1.0 → python_neva-3.1.1}/tests/events/test_function_listener.py +0 -0
  119. {python_neva-3.1.0 → python_neva-3.1.1}/tests/events/test_immediate.py +0 -0
  120. {python_neva-3.1.0 → python_neva-3.1.1}/tests/obs/__init__.py +0 -0
  121. {python_neva-3.1.0 → python_neva-3.1.1}/tests/obs/test_correlation.py +0 -0
  122. {python_neva-3.1.0 → python_neva-3.1.1}/tests/obs/test_profiler.py +0 -0
  123. {python_neva-3.1.0 → python_neva-3.1.1}/tests/security/__init__.py +0 -0
  124. {python_neva-3.1.0 → python_neva-3.1.1}/tests/security/test_encrypter.py +0 -0
  125. {python_neva-3.1.0 → python_neva-3.1.1}/tests/security/test_hash_manager.py +0 -0
  126. {python_neva-3.1.0 → python_neva-3.1.1}/tests/testing/__init__.py +0 -0
  127. {python_neva-3.1.0 → python_neva-3.1.1}/tests/testing/test_event_fake.py +0 -0
  128. {python_neva-3.1.0 → python_neva-3.1.1}/tests/testing/test_facade_restore.py +0 -0
  129. {python_neva-3.1.0 → python_neva-3.1.1}/tests/testing/test_fixtures.py +0 -0
  130. {python_neva-3.1.0 → python_neva-3.1.1}/tests/testing/test_refresh_database.py +0 -0
  131. {python_neva-3.1.0 → python_neva-3.1.1}/tests/testing/test_test_case.py +0 -0
  132. {python_neva-3.1.0 → python_neva-3.1.1}/uv.lock +0 -0
@@ -1,3 +1,9 @@
1
+ ## 3.1.1 (2026-05-11)
2
+
3
+ ### 📌➕⬇️➖⬆️ Dependencies
4
+
5
+ - bump opt dep on neva-fastapi
6
+
1
7
  ## 3.1.0 (2026-05-11)
2
8
 
3
9
  ### ✨ Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-neva
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: Add your description here
5
5
  Requires-Python: >=3.12
6
6
  Requires-Dist: aiosqlite>=0.20.0
@@ -16,7 +16,7 @@ Requires-Dist: sqlalchemy[asyncio]>=2.0.0
16
16
  Requires-Dist: structlog>=25.5.0
17
17
  Requires-Dist: typer>=0.21.1
18
18
  Provides-Extra: fastapi
19
- Requires-Dist: neva-fastapi>=0.1.0; extra == 'fastapi'
19
+ Requires-Dist: neva-fastapi>=1.0.0; extra == 'fastapi'
20
20
  Provides-Extra: testing
21
21
  Requires-Dist: pytest-asyncio>=0.25.3; extra == 'testing'
22
22
  Requires-Dist: pytest>=9.0.2; extra == 'testing'
@@ -37,7 +37,7 @@ dev = [
37
37
 
38
38
  [project.optional-dependencies]
39
39
  testing = ["pytest>=9.0.2", "pytest-asyncio>=0.25.3"]
40
- fastapi = ["neva-fastapi>=0.1.0"]
40
+ fastapi = ["neva-fastapi>=1.0.0"]
41
41
 
42
42
  [tool.uv.sources]
43
43
  neva-fastapi = { path = "../neva-fastapi", editable = true }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes