sqlacache 0.1.0__tar.gz → 0.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 (65) hide show
  1. sqlacache-0.1.1/CHANGELOG.md +26 -0
  2. {sqlacache-0.1.0 → sqlacache-0.1.1}/PKG-INFO +2 -2
  3. {sqlacache-0.1.0 → sqlacache-0.1.1}/pyproject.toml +1 -1
  4. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/__init__.py +1 -1
  5. sqlacache-0.1.0/CHANGELOG.md +0 -13
  6. {sqlacache-0.1.0 → sqlacache-0.1.1}/.github/workflows/ci.yml +0 -0
  7. {sqlacache-0.1.0 → sqlacache-0.1.1}/.github/workflows/integration.yml +0 -0
  8. {sqlacache-0.1.0 → sqlacache-0.1.1}/.github/workflows/release.yml +0 -0
  9. {sqlacache-0.1.0 → sqlacache-0.1.1}/.gitignore +0 -0
  10. {sqlacache-0.1.0 → sqlacache-0.1.1}/.pre-commit-config.yaml +0 -0
  11. {sqlacache-0.1.0 → sqlacache-0.1.1}/.prek/README +0 -0
  12. {sqlacache-0.1.0 → sqlacache-0.1.1}/CONTRIBUTING.md +0 -0
  13. {sqlacache-0.1.0 → sqlacache-0.1.1}/LICENSE +0 -0
  14. {sqlacache-0.1.0 → sqlacache-0.1.1}/Makefile +0 -0
  15. {sqlacache-0.1.0 → sqlacache-0.1.1}/README.md +0 -0
  16. {sqlacache-0.1.0 → sqlacache-0.1.1}/docker-compose.yml +0 -0
  17. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/.openspec.yaml +0 -0
  18. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/design.md +0 -0
  19. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/proposal.md +0 -0
  20. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/specs/1-project-infrastructure.md +0 -0
  21. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/specs/2-cache-configuration.md +0 -0
  22. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/specs/3-query-interception.md +0 -0
  23. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/specs/4-cache-key-generation.md +0 -0
  24. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/specs/5-row-level-invalidation.md +0 -0
  25. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/specs/6-cashews-transport.md +0 -0
  26. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/specs/7-cross-process-invalidation.md +0 -0
  27. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/changes/implement-mvp/tasks.md +0 -0
  28. {sqlacache-0.1.0 → sqlacache-0.1.1}/openspec/config.yaml +0 -0
  29. {sqlacache-0.1.0 → sqlacache-0.1.1}/sqlacache-architecture.md +0 -0
  30. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/config.py +0 -0
  31. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/contrib/__init__.py +0 -0
  32. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/contrib/fastapi.py +0 -0
  33. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/contrib/prometheus.py +0 -0
  34. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/exceptions.py +0 -0
  35. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/interceptor.py +0 -0
  36. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/invalidation.py +0 -0
  37. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/manager.py +0 -0
  38. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/pubsub/__init__.py +0 -0
  39. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/pubsub/redis.py +0 -0
  40. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/py.typed +0 -0
  41. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/serializers/__init__.py +0 -0
  42. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/serializers/json.py +0 -0
  43. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/transport/__init__.py +0 -0
  44. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/transport/cashews.py +0 -0
  45. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/utils/__init__.py +0 -0
  46. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/utils/key_generation.py +0 -0
  47. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/utils/query_analysis.py +0 -0
  48. {sqlacache-0.1.0 → sqlacache-0.1.1}/src/sqlacache/utils/sync_wrapper.py +0 -0
  49. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/__init__.py +0 -0
  50. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/conftest.py +0 -0
  51. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/integration/__init__.py +0 -0
  52. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/integration/conftest.py +0 -0
  53. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/integration/test_cross_process_invalidation.py +0 -0
  54. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/pubsub/__init__.py +0 -0
  55. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/pubsub/test_redis.py +0 -0
  56. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/test_config.py +0 -0
  57. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/test_interceptor.py +0 -0
  58. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/test_invalidation.py +0 -0
  59. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/test_key_generation.py +0 -0
  60. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/test_manager.py +0 -0
  61. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/test_query_analysis.py +0 -0
  62. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/transport/__init__.py +0 -0
  63. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/transport/conftest.py +0 -0
  64. {sqlacache-0.1.0 → sqlacache-0.1.1}/tests/transport/test_cashews.py +0 -0
  65. {sqlacache-0.1.0 → sqlacache-0.1.1}/uv.lock +0 -0
@@ -0,0 +1,26 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.1.1] - 2026-04-09
11
+
12
+ ### Changed
13
+
14
+ - Updated package description for clarity.
15
+
16
+ ## [0.1.0] - 2026-04-09
17
+
18
+ ### Added
19
+
20
+ - First alpha release.
21
+ - Automatic caching for async SQLAlchemy reads — no decorators or query changes required.
22
+ - Row-level cache invalidation when records are created, updated, or deleted.
23
+ - Declarative config to map models to cache rules and TTLs in one place.
24
+ - Redis and in-memory backends supported out of the box.
25
+ - All workers stay in sync — cache invalidation propagates across processes via Redis.
26
+ - Manual override APIs for edge cases where automatic behavior isn't enough.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sqlacache
3
- Version: 0.1.0
4
- Summary: Django-cacheops-style declarative caching with automatic row-level invalidation for SQLAlchemy
3
+ Version: 0.1.1
4
+ Summary: Automatic query caching and row-level cache invalidation for SQLAlchemy
5
5
  Project-URL: Homepage, https://github.com/persix/sqlacache
6
6
  Project-URL: Repository, https://github.com/persix/sqlacache
7
7
  Project-URL: Documentation, https://github.com/persix/sqlacache/blob/main/README.md
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
5
5
  [project]
6
6
  name = "sqlacache"
7
7
  dynamic = ["version"]
8
- description = "Django-cacheops-style declarative caching with automatic row-level invalidation for SQLAlchemy"
8
+ description = "Automatic query caching and row-level cache invalidation for SQLAlchemy"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
11
11
  license = "MIT"
@@ -11,4 +11,4 @@ __all__ = [
11
11
  "configure",
12
12
  ]
13
13
 
14
- __version__ = "0.1.0"
14
+ __version__ = "0.1.1"
@@ -1,13 +0,0 @@
1
- # Changelog
2
-
3
- ## 0.1.0
4
-
5
- - Initial alpha MVP release.
6
- - Added package scaffolding, linting, typing, tests, CI, and build metadata.
7
- - Added validated configuration and cache manager APIs via `configure(...)`.
8
- - Added `cashews` transport integration for `mem://` and `redis://` backends.
9
- - Added automatic async ORM caching for configured reads, including `AsyncSession.get(...)`.
10
- - Added row-level invalidation for ORM inserts, updates, deletes, and bulk mutations.
11
- - Added Redis pub/sub support for cross-process invalidation.
12
- - Added unit tests, Redis integration coverage, and an external wheel-install smoke test workflow.
13
- - Sync session support remains deferred.
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