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`
This commit is contained in:
François Voron
2024-03-11 14:16:20 +01:00
parent ac09bc1907
commit 61dba2694c

View File

@ -1,6 +1,6 @@
"""Ready-to-use and customizable users management for FastAPI."""
__version__ = "12.1.3"
__version__ = "13.0.0"
from fastapi_users import models, schemas # noqa: F401
from fastapi_users.exceptions import InvalidID, InvalidPasswordException