Skip to content

Commit 61dba26

Browse files
committed
Bump version 12.1.3 → 13.0.0
Breaking change --------------- The underlying password hashing library has been changed from `passlib` to `pwdlib`. This change is breaking only if you were using a custom `CryptContext`. Otherwise, you can upgrade without any changes. Improvements ------------ * Python 3.12 support * Password are now hashed using the Argon2 algorithm by default. Passwords created with the previous default algorithm (bcrypt) will still be verified correctly and upgraded to Argon2 when the user logs in. * Bump dependencies * `python-multipart ==0.0.9`
1 parent ac09bc1 commit 61dba26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastapi_users/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Ready-to-use and customizable users management for FastAPI."""
22

3-
__version__ = "12.1.3"
3+
__version__ = "13.0.0"
44

55
from fastapi_users import models, schemas # noqa: F401
66
from fastapi_users.exceptions import InvalidID, InvalidPasswordException

0 commit comments

Comments
 (0)