Skip to content

Commit

Permalink
Bump version 12.1.3 → 13.0.0
Browse files Browse the repository at this point in the history
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`
  • Loading branch information
frankie567 committed Mar 11, 2024
1 parent ac09bc1 commit 61dba26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastapi_users/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 61dba26

Please sign in to comment.