Add 6 -> 7 migration doc

This commit is contained in:
François Voron
2021-09-09 13:28:14 +02:00
parent 4efaaaaa61
commit 79225e6642
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# 6.x.x ➡️ 7.x.x
* The deprecated dependencies to retrieve current user have been removed. Use the `current_user` factory instead. [[Documentation](https://fastapi-users.github.io/fastapi-users/usage/current-user/)]
* When trying to authenticate a not verified user, a **status code 403** is raised instead of status code 401. Thanks @daanbeverdam 🎉 [[Documentation](https://fastapi-users.github.io/fastapi-users/usage/current-user/#current_user)]
---
* Database adapters now live in their [own repositories and packages](https://github.com/fastapi-users).
* When upgrading to v7.0.0, the dependency for your database adapter should automatically be installed.
* The `import` statements remain unchanged.

View File

@@ -70,3 +70,4 @@ nav:
- migration/2x_to_3x.md
- migration/3x_to_4x.md
- migration/4x_to_5x.md
- migration/6x_to_7x.md