Skip to content

Commit 0674fb9

Browse files
authored
chore(release): bump to v1.4.5 (#496)
1 parent 7d98f12 commit 0674fb9

File tree

26 files changed

+1386
-1313
lines changed

26 files changed

+1386
-1313
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
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.11"
25+
rev: "v0.12.1"
2626
hooks:
2727
# Run the linter.
2828
- id: ruff

advanced_alchemy/_listeners.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ruff: noqa: BLE001, C901, PLR0914, PLR0915
1+
# ruff: noqa: BLE001, C901, PLR0915
22
"""Application ORM configuration."""
33

44
import asyncio

advanced_alchemy/_serialization.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ruff: noqa: PLR6301
21
import datetime
32
import enum
43
from typing import Any

advanced_alchemy/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ruff: noqa: TC004
21
"""Common base classes for SQLAlchemy declarative models."""
32

43
import contextlib

advanced_alchemy/extensions/flask/extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ruff: noqa: SLF001, ARG001
1+
# ruff: noqa: ARG001
22
"""Flask extension for Advanced Alchemy."""
33

44
from collections.abc import Generator, Sequence

advanced_alchemy/extensions/sanic/extension.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ruff: noqa: PLR0904
21
from collections.abc import AsyncGenerator, Generator, Sequence
32
from contextlib import asynccontextmanager, contextmanager
43
from typing import TYPE_CHECKING, Any, Callable, Optional, Union, cast, overload

advanced_alchemy/repository/memory/base.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# ruff: noqa: PD011
2-
3-
41
import builtins
52
import contextlib
63
from collections import defaultdict

advanced_alchemy/service/_async.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ruff: noqa: PLR6301
21
"""Service object implementation for SQLAlchemy.
32
43
RepositoryService object is generic on the domain model type which

advanced_alchemy/service/_sync.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Do not edit this file directly. It has been autogenerated from
22
# advanced_alchemy/service/_async.py
3-
# ruff: noqa: PLR6301
43
"""Service object implementation for SQLAlchemy.
54
65
RepositoryService object is generic on the domain model type which

advanced_alchemy/service/_typing.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ruff: noqa: DOC201, PLR6301
21
"""This is a simple wrapper around a few important classes in each library.
32
43
This is used to ensure compatibility when one or more of the libraries are installed.

0 commit comments

Comments
 (0)