File tree Expand file tree Collapse file tree 3 files changed +48
-3
lines changed Expand file tree Collapse file tree 3 files changed +48
-3
lines changed Original file line number Diff line number Diff line change 3
3
1.x Changelog
4
4
=============
5
5
6
+ .. changelog :: 1.6.2
7
+ :date: 2025-08-29
8
+
9
+ .. change :: enable loading config from working directory
10
+ :type: feature
11
+ :pr: 527
12
+ :issue: 491
13
+
14
+ Correctly allow loading configuration from the current directory
15
+
16
+ .. change :: correctly handle lazy attributes on update
17
+ :type: bugfix
18
+ :pr: 533
19
+
20
+ Correctly handle `viewownly ` and `lazy ` loaded relationships during update.
21
+
22
+ .. change :: prevent AttributeError when schema_dump receives None values
23
+ :type: bugfix
24
+ :pr: 530
25
+
26
+ - `advanced_alchemy/service/typing.py `: Fixed `has_dict_attribute() ` function
27
+ - `tests/unit/test_attrs_integration.py `: Added test case for `None ` value handling
28
+
29
+ .. change :: add warning message when using fallback value for a primary key
30
+ :type: bugfix
31
+ :pr: 529
32
+
33
+ - Add warning message when using `uuid ` instead of `nanoid `
34
+ - Add warning message when using `uuid4 ` instead of `uuid6 ` or `uuid7 `
35
+
36
+ .. change :: litestar fileobject example
37
+ :type: bugfix
38
+ :pr: 531
39
+
40
+ Fix litestar fileobject example
41
+
42
+ .. change :: pass Content-Type and metadata to backend storage
43
+ :type: bugfix
44
+ :pr: 528
45
+
46
+ - Modified `save_object ` and `save_object_async ` methods to collect attributes from `FileObject `
47
+ - Pass `content_type ` as `"Content-Type" ` in the `attributes ` parameter
48
+ - Include any custom metadata from `FileObject.metadata `
49
+ - Added proper typing for the attributes dictionary
50
+
6
51
.. changelog :: 1.6.1
7
52
:date: 2025-08-26
8
53
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.6.1 "
47
+ version = " 1.6.2 "
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.6.1 "
174
+ current_version = " 1.6.2 "
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