Skip to content

Commit 372fa5f

Browse files
committed
chore(release): bump to v1.2.0
1 parent 7324cc7 commit 372fa5f

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed

docs/changelog.rst

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

6+
.. changelog:: 1.2.0
7+
:date: 2025-04-15
8+
9+
.. change:: migration generation produces duplicated unique constraints
10+
:type: bugfix
11+
:pr: 434
12+
:issue: 427
13+
14+
Removes column re-ordering component was incorrectly causing incorrect constraints to be genreated.
15+
16+
Fixes #427
17+
18+
.. change:: make `SentinelMixin` compatible with `MappedAsDataclass`
19+
:type: bugfix
20+
:pr: 442
21+
22+
`MappedAsDataclass` is a mixin introduced in SQLAlchemy 2.0. It introduces massive DX improvements to SQLAlchemy by introducing dataclass type validation to SQLAlchemy models. However, this mixin is incompatible with SQLAlchemy's recommended method of implementing a sentinel column as written in their [documentation](https://docs.sqlalchemy.org/en/20/core/connections.html#configuring-sentinel-columns).
23+
24+
This PR fixes this incompatibility as suggested by the SQLAlchemy maintainer in this [discussion](https://github.com/sqlalchemy/sqlalchemy/discussions/12519#discussioncomment-12804658).
25+
26+
.. change:: enable standard order by
27+
:type: feature
28+
:pr: 438
29+
30+
Enables the standard `UnaryOperator` order by support in addition to the existing `OrderingPair`
31+
32+
.. change:: additional filter configuration options
33+
:type: feature
34+
:pr: 444
35+
36+
Implements the following filters as configurable options:
37+
- NotInCollection
38+
- Collection
39+
40+
Search now also accepts a set of strings in addition to a comma delimmited list.
41+
42+
643
.. changelog:: 1.1.1
744
:date: 2025-04-07
845

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 = "README.md"
4646
requires-python = ">=3.9"
47-
version = "1.1.1"
47+
version = "1.2.0"
4848

4949
[project.urls]
5050
Changelog = "https://docs.advanced-alchemy.litestar.dev/latest/changelog"
@@ -162,7 +162,7 @@ test = [
162162
allow_dirty = true
163163
commit = false
164164
commit_args = "--no-verify"
165-
current_version = "1.1.1"
165+
current_version = "1.2.0"
166166
ignore_missing_files = false
167167
ignore_missing_version = false
168168
message = "chore(release): bump to v{new_version}"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)