Skip to content

Commit 735ff44

Browse files
committed
chore(release): bump to version v1.4.3
1 parent c09e49e commit 735ff44

File tree

4 files changed

+246
-181
lines changed

4 files changed

+246
-181
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repos:
2222
- id: unasyncd
2323
additional_dependencies: ["ruff"]
2424
- repo: https://github.com/charliermarsh/ruff-pre-commit
25-
rev: "v0.11.8"
25+
rev: "v0.11.9"
2626
hooks:
2727
# Run the linter.
2828
- id: ruff

docs/changelog.rst

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

6+
.. changelog:: 1.4.3
7+
:date: 2025-05-12
8+
9+
.. change:: add __all__ exports for password hashing backends
10+
:type: feature
11+
:pr: 471
12+
13+
This update adds __all__ exports for the Argon2, Passlib, and Pwdlib hashing backends, improving module visibility and usability.
14+
15+
.. change:: Add identity Mixin for Primary Keys
16+
:type: feature
17+
:pr: 473
18+
:issue: 441
19+
20+
The sequences based BigInt key offers the most compatibility, but many would prefer to use the Identity column when the database supports it.
21+
22+
This changes implements a basic Identity primary key mixin
23+
24+
.. change:: `wrap_exceptions` is re-enabled
25+
:type: bugfix
26+
:pr: 475
27+
:issue: 472
28+
29+
`wrap_exceptions` is now correctly passed into the exception handler context manager.
30+
31+
Fixes #472
32+
33+
34+
635
.. changelog:: 1.4.2
736
:date: 2025-05-04
837

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.4.2"
47+
version = "1.4.3"
4848

4949
[project.urls]
5050
Changelog = "https://docs.advanced-alchemy.litestar.dev/latest/changelog"
@@ -169,7 +169,7 @@ test = [
169169
allow_dirty = true
170170
commit = false
171171
commit_args = "--no-verify"
172-
current_version = "1.4.2"
172+
current_version = "1.4.3"
173173
ignore_missing_files = false
174174
ignore_missing_version = false
175175
message = "chore(release): bump to v{new_version}"

0 commit comments

Comments
 (0)