Skip to content

Commit 6751e0d

Browse files
authored
chore(release): bump to v1.5.0 (#509)
Bump version
1 parent b057495 commit 6751e0d

File tree

4 files changed

+880
-789
lines changed

4 files changed

+880
-789
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repos:
77
- id: conventional-pre-commit
88
stages: [commit-msg]
99
- repo: https://github.com/pre-commit/pre-commit-hooks
10-
rev: v5.0.0
10+
rev: v6.0.0
1111
hooks:
1212
- id: check-ast
1313
- id: check-case-conflict
@@ -17,12 +17,12 @@ repos:
1717
- id: mixed-line-ending
1818
- id: trailing-whitespace
1919
- repo: https://github.com/provinzkraut/unasyncd
20-
rev: "v0.8.1"
20+
rev: "v0.9.0"
2121
hooks:
2222
- id: unasyncd
2323
additional_dependencies: ["ruff"]
2424
- repo: https://github.com/charliermarsh/ruff-pre-commit
25-
rev: "v0.12.7"
25+
rev: "v0.12.8"
2626
hooks:
2727
# Run the linter.
2828
- id: ruff

docs/changelog.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,38 @@
33
1.x Changelog
44
=============
55

6+
.. changelog:: 1.5.0
7+
:date: 2025-08-13
8+
9+
.. change:: correct typing issue in `litestar` example
10+
:type: bugfix
11+
:pr: 498
12+
13+
.. change:: correctly handle `id_attribute` with `update`
14+
:type: bugfix
15+
:pr: 502
16+
17+
Correctly merge attributes onto existing instance when using `id_attribute` and `update`
18+
19+
.. change:: gzip and zipped fixture support
20+
:type: feature
21+
:pr: 500
22+
23+
Contains support for automatically extracting and loading data from zipped fixture files
24+
25+
.. change:: match against complex types
26+
:type: feature
27+
:pr: 501
28+
29+
Correctly handle complex data types for matching fields
30+
31+
.. change:: `attrs` integration
32+
:type: feature
33+
:pr: 503
34+
35+
Adds `attrs` support into the `ResultConverter` mixin. This enables `to_schema` and `schema_dump` to natively understand `attrs`.
36+
37+
638
.. changelog:: 1.4.5
739
:date: 2025-06-28
840

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ maintainers = [
4444
name = "advanced_alchemy"
4545
readme = "docs/PYPI_README.md"
4646
requires-python = ">=3.9"
47-
version = "1.4.5"
47+
version = "1.5.0"
4848

4949
[project.urls]
5050
Changelog = "https://docs.advanced-alchemy.litestar.dev/latest/changelog"
@@ -171,7 +171,7 @@ test = [
171171
allow_dirty = true
172172
commit = false
173173
commit_args = "--no-verify"
174-
current_version = "1.4.5"
174+
current_version = "1.5.0"
175175
ignore_missing_files = false
176176
ignore_missing_version = false
177177
message = "chore(release): bump to v{new_version}"

0 commit comments

Comments
 (0)