File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 331.x Changelog
44=============
55
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+
651.. changelog :: 1.6.1
752 :date: 2025-08-26
853
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ maintainers = [
4444name = " advanced_alchemy"
4545readme = " docs/PYPI_README.md"
4646requires-python = " >=3.9"
47- version = " 1.6.1 "
47+ version = " 1.6.2 "
4848
4949[project .urls ]
5050Changelog = " https://docs.advanced-alchemy.litestar.dev/latest/changelog"
@@ -171,7 +171,7 @@ test = [
171171allow_dirty = true
172172commit = false
173173commit_args = " --no-verify"
174- current_version = " 1.6.1 "
174+ current_version = " 1.6.2 "
175175ignore_missing_files = false
176176ignore_missing_version = false
177177message = " chore(release): bump to v{new_version}"
You can’t perform that action at this time.
0 commit comments