Skip to content

Commit ad144f2

Browse files
committed
chore(release): update to v0.33.0
1 parent 083d2dc commit ad144f2

File tree

7 files changed

+51
-42
lines changed

7 files changed

+51
-42
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repos:
2222
- id: unasyncd
2323
additional_dependencies: ["ruff"]
2424
- repo: https://github.com/charliermarsh/ruff-pre-commit
25-
rev: "v0.9.9"
25+
rev: "v0.9.10"
2626
hooks:
2727
# Run the linter.
2828
- id: ruff

advanced_alchemy/repository/_util.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -185,25 +185,17 @@ class FilterableRepositoryProtocol(Protocol[ModelT]):
185185
186186
This protocol defines the required attributes and methods that any
187187
filterable repository implementation must provide.
188-
189-
Type Parameters:
190-
ModelT: :class:`~advanced_alchemy.base.ModelProtocol` The SQLAlchemy model type this repository handles.
191-
192-
Attributes:
193-
model_type: :class:`~advanced_alchemy.base.ModelProtocol` The SQLAlchemy model class this repository manages.
194188
"""
195189

196190
model_type: type[ModelT]
191+
"""The SQLAlchemy model class this repository manages."""
197192

198193

199194
class FilterableRepository(FilterableRepositoryProtocol[ModelT]):
200195
"""Default implementation of a filterable repository.
201196
202197
Provides core filtering, ordering and pagination functionality for
203198
SQLAlchemy models.
204-
205-
Type Parameters:
206-
ModelT: :class:`~advanced_alchemy.base.ModelProtocol` The SQLAlchemy model type this repository handles.
207199
"""
208200

209201
model_type: type[ModelT]

docs/changelog.rst

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
0.x Changelog
44
=============
55

6+
.. changelog:: 0.33.0
7+
:date: 2025-03-07
8+
9+
.. change:: Add dependency factory utilities
10+
:type: feature
11+
:pr: 405
12+
13+
Introduces a new module `advanced_alchemy.extensions.litestar.providers` with comprehensive dependency injection utilities for SQLAlchemy services in Litestar. The module provides:
14+
15+
- Dynamic filter configuration generation
16+
- Dependency caching mechanism
17+
- Flexible filter and pagination support
18+
- Singleton metaclass for dependency management
19+
- Configurable filter and search dependencies
20+
21+
622
.. changelog:: 0.32.2
723
:date: 2025-02-26
824

docs/usage/database_seeding.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -502,8 +502,8 @@ Best Practices
502502
Tips for Efficient Seeding
503503
--------------------------
504504

505-
- Use :func:`add_many (async) <advanced_alchemy.repository.SQLAlchemyAsyncRepositoryProtocol.add_many>` / :func:`add_many (sync) <advanced_alchemy.repository.SQLAlchemySyncRepositoryProtocol.add_many>` instead of adding objects one by one for better performance.
506-
- Use :func:`upsert_many (async) <advanced_alchemy.repository.SQLAlchemyAsyncRepositoryProtocol.upsert_many>` / :func:`upsert_many (sync) <advanced_alchemy.repository.SQLAlchemySyncRepositoryProtocol.upsert_many>` to update your data if you are updating prices for example.
505+
- Use :func:`add_many (async) <advanced_alchemy.repository.SQLAlchemyAsyncRepository.add_many>` / :func:`add_many (sync) <advanced_alchemy.repository.SQLAlchemySyncRepository.add_many>` instead of adding objects one by one for better performance.
506+
- Use :func:`upsert_many (async) <advanced_alchemy.repository.SQLAlchemyAsyncRepository.upsert_many>` / :func:`upsert_many (sync) <advanced_alchemy.repository.SQLAlchemySyncRepository.upsert_many>` to update your data if you are updating prices for example.
507507
- You can use the database seeding from your cli, app startup or any route.
508508
- For large datasets, consider chunking the data into smaller batches.
509509
- When dealing with relationships, seed parent records before child records.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ maintainers = [
4444
name = "advanced_alchemy"
4545
readme = "README.md"
4646
requires-python = ">=3.9"
47-
version = "0.32.2"
47+
version = "0.33.0"
4848

4949
[project.urls]
5050
Changelog = "https://docs.advanced-alchemy.litestar.dev/latest/changelog"
@@ -157,9 +157,9 @@ test = [
157157

158158
[tool.bumpversion]
159159
allow_dirty = true
160-
commit = true
160+
commit = false
161161
commit_args = "--no-verify"
162-
current_version = "0.32.0"
162+
current_version = "0.33.0"
163163
ignore_missing_files = false
164164
ignore_missing_version = false
165165
message = "chore(release): bump to v{new_version}"

tools/sphinx_ext/missing_references.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,8 @@ def _resolve_advanced_alchemy_reference(target: str, module: str) -> bool:
180180
"GenericAlembicConfig",
181181
}
182182

183+
func_references = {"repository.SQLAlchemyAsyncRepositoryProtocol.add_many"}
184+
183185
# Handle type module references
184186
type_classes = {"DateTimeUTC", "ORA_JSONB", "GUID", "EncryptedString", "EncryptedText"}
185187

@@ -189,7 +191,7 @@ def _resolve_advanced_alchemy_reference(target: str, module: str) -> bool:
189191
# Handle fully qualified references
190192
if target.startswith("advanced_alchemy."):
191193
parts = target.split(".")
192-
if parts[-1] in base_classes | config_classes | type_classes:
194+
if parts[-1] in base_classes | config_classes | type_classes | func_references:
193195
return True
194196

195197
# Handle module-relative references
@@ -240,7 +242,6 @@ def on_warn_missing_reference(app: Sphinx, domain: str, node: Node) -> bool | No
240242
target = attributes["reftarget"]
241243
ref_type = attributes.get("reftype")
242244
module = attributes.get("py:module", "")
243-
244245
# Handle TypeVar references
245246
if hasattr(target, "__class__") and target.__class__.__name__ == "TypeVar":
246247
return True

uv.lock

+25-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)