Skip to content

Commit dcd632d

Browse files
committed
chore(release): bump to v1.0.2
1 parent 1a5fbce commit dcd632d

File tree

10 files changed

+533
-476
lines changed

10 files changed

+533
-476
lines changed

.pre-commit-config.yaml

+2-2
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.11.0"
25+
rev: "v0.11.2"
2626
hooks:
2727
# Run the linter.
2828
- id: ruff
@@ -32,7 +32,7 @@ repos:
3232
- id: ruff-format
3333
types_or: [python, pyi]
3434
- repo: https://github.com/crate-ci/typos
35-
rev: v1.30.3
35+
rev: v1
3636
hooks:
3737
- id: typos
3838
- repo: https://github.com/sphinx-contrib/sphinx-lint

advanced_alchemy/extensions/litestar/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from contextlib import suppress
22
from typing import TYPE_CHECKING
33

4-
from litestar.cli._utils import LitestarGroup
4+
from litestar.cli._utils import LitestarGroup # pyright: ignore
55

66
from advanced_alchemy.cli import add_migration_commands
77

advanced_alchemy/extensions/litestar/dto.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def _(
168168
msg = f"Unhandled property type: '{orm_descriptor.property}'" # pyright: ignore[reportUnknownMemberType]
169169
raise NotImplementedError(msg)
170170

171-
default, default_factory = _detect_defaults(elem)
171+
default, default_factory = _detect_defaults(elem) # pyright: ignore
172172

173173
try:
174174
if (field_definition := model_type_hints[key]).origin in {
@@ -184,7 +184,7 @@ def _(
184184
except KeyError:
185185
field_definition = parse_type_from_element(elem, orm_descriptor) # pyright: ignore[reportUnknownArgumentType]
186186

187-
dto_field = elem.info.get(DTO_FIELD_META_KEY) if hasattr(elem, "info") else None # pyright: ignore[reportArgumentMemberType]
187+
dto_field = elem.info.get(DTO_FIELD_META_KEY) if hasattr(elem, "info") else None # pyright: ignore
188188
if dto_field is None and isinstance(orm_descriptor, InstrumentedAttribute) and hasattr(orm_descriptor, "info"): # pyright: ignore[reportUnknownArgumentType]
189189
dto_field = orm_descriptor.info.get(DTO_FIELD_META_KEY) # pyright: ignore[reportArgumentMemberType]
190190
if dto_field is None:

advanced_alchemy/extensions/litestar/plugins/init/config/asyncio.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from dataclasses import dataclass, field
44
from typing import TYPE_CHECKING, Any, Callable, Literal, Optional, Union, cast
55

6-
from litestar.cli._utils import console
6+
from litestar.cli._utils import console # pyright: ignore
77
from litestar.constants import HTTP_RESPONSE_START
88
from sqlalchemy.exc import OperationalError
99
from sqlalchemy.ext.asyncio import AsyncEngine, AsyncSession

advanced_alchemy/extensions/litestar/plugins/init/config/sync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from dataclasses import dataclass, field
33
from typing import TYPE_CHECKING, Any, Callable, Literal, Optional, Union, cast
44

5-
from litestar.cli._utils import console
5+
from litestar.cli._utils import console # pyright: ignore
66
from litestar.constants import HTTP_RESPONSE_START
77
from sqlalchemy import Engine
88
from sqlalchemy.exc import OperationalError

advanced_alchemy/repository/memory/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def _set_defaults(self, data: ModelT) -> None: # pragma: no cover
229229
# include a default_factory in that case.
230230
or "context" not in signature(default_callable).parameters
231231
):
232-
default_value = default.arg({}) # pyright: ignore[reportUnknownMemberType, reportCallIssue]
232+
default_value = default.arg({}) # pyright: ignore
233233
else:
234234
continue
235235
else:

advanced_alchemy/service/_typing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
T_co = TypeVar("T_co", covariant=True)
1919

2020
try:
21-
from pydantic import BaseModel, FailFast, TypeAdapter # pyright: ignore[reportGeneralTypeIssues]
21+
from pydantic import BaseModel, FailFast, TypeAdapter # pyright: ignore
2222

2323
PYDANTIC_INSTALLED = True
2424
except ImportError:

docs/changelog.rst

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

6+
.. changelog:: 1.0.2
7+
:date: 2025-04-01
8+
9+
.. change:: prevent forward resolution issues
10+
:type: bugfix
11+
:pr: 423
12+
13+
Removes some stringified representations to help with the forward resolution of `datetime` and `Collection`.
14+
15+
.. change:: correctly set `uniquify` from `new`
16+
:type: bugfix
17+
:pr: 424
18+
19+
Unquify is now correctly set when passed into the `new`/`init` methods.
20+
21+
Introduced tests for `sync_tools` utilities, including `maybe_async_`, `maybe_async_context`, `SoonValue`, `TaskGroup`, and others.
22+
23+
Improves coverage for async and sync function handling, context managers, and value management.
24+
25+
26+
27+
.. change:: remove accidental litestar import
28+
:type: bugfix
29+
:pr: 426
30+
31+
Remove an incorrect import of `console` from `litestar.cli._utils` and replace it with a correct import from `rich`. This change ensures proper functionality without unnecessary dependencies.
32+
33+
634
.. changelog:: 1.0.1
735
:date: 2025-03-19
836

pyproject.toml

+3-2
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 = "1.0.1"
47+
version = "1.0.2"
4848

4949
[project.urls]
5050
Changelog = "https://docs.advanced-alchemy.litestar.dev/latest/changelog"
@@ -158,7 +158,7 @@ test = [
158158
allow_dirty = true
159159
commit = false
160160
commit_args = "--no-verify"
161-
current_version = "1.0.1"
161+
current_version = "1.0.2"
162162
ignore_missing_files = false
163163
ignore_missing_version = false
164164
message = "chore(release): bump to v{new_version}"
@@ -306,6 +306,7 @@ ignore = [
306306
"PLR0917",
307307
"PLR0904",
308308
"PGH003",
309+
"PLC2701",
309310
]
310311
select = ["ALL"]
311312

0 commit comments

Comments
 (0)