File tree Expand file tree Collapse file tree 4 files changed +880
-789
lines changed Expand file tree Collapse file tree 4 files changed +880
-789
lines changed Original file line number Diff line number Diff line change 7
7
- id : conventional-pre-commit
8
8
stages : [commit-msg]
9
9
- repo : https://github.com/pre-commit/pre-commit-hooks
10
- rev : v5 .0.0
10
+ rev : v6 .0.0
11
11
hooks :
12
12
- id : check-ast
13
13
- id : check-case-conflict
@@ -17,12 +17,12 @@ repos:
17
17
- id : mixed-line-ending
18
18
- id : trailing-whitespace
19
19
- repo : https://github.com/provinzkraut/unasyncd
20
- rev : " v0.8.1 "
20
+ rev : " v0.9.0 "
21
21
hooks :
22
22
- id : unasyncd
23
23
additional_dependencies : ["ruff"]
24
24
- repo : https://github.com/charliermarsh/ruff-pre-commit
25
- rev : " v0.12.7 "
25
+ rev : " v0.12.8 "
26
26
hooks :
27
27
# Run the linter.
28
28
- id : ruff
Original file line number Diff line number Diff line change 3
3
1.x Changelog
4
4
=============
5
5
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
+
6
38
.. changelog :: 1.4.5
7
39
:date: 2025-06-28
8
40
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ maintainers = [
44
44
name = " advanced_alchemy"
45
45
readme = " docs/PYPI_README.md"
46
46
requires-python = " >=3.9"
47
- version = " 1.4.5 "
47
+ version = " 1.5.0 "
48
48
49
49
[project .urls ]
50
50
Changelog = " https://docs.advanced-alchemy.litestar.dev/latest/changelog"
@@ -171,7 +171,7 @@ test = [
171
171
allow_dirty = true
172
172
commit = false
173
173
commit_args = " --no-verify"
174
- current_version = " 1.4.5 "
174
+ current_version = " 1.5.0 "
175
175
ignore_missing_files = false
176
176
ignore_missing_version = false
177
177
message = " chore(release): bump to v{new_version}"
You can’t perform that action at this time.
0 commit comments