Skip to content

Releases: fastapi-users/fastapi-users

v9.2.6

16 Mar 08:06
0db2ce9
Compare
Choose a tag to compare

Fixes and improvements

  • Bump dependencies:
    • fastapi >=0.65.2,<0.76.0

v9.2.5

18 Feb 10:14
06ad037
Compare
Choose a tag to compare

Fixes and improvements

  • Improve route names to avoid duplicates. Thanks @gaganpreet 🎉
  • Improve DependencyCallable type to allow for AsyncGenerator and Generator.
  • Bump dependencies:
    • fastapi >=0.65.2,<0.75.0

v9.2.4

07 Feb 07:58
29cfe8a
Compare
Choose a tag to compare

Bug fixes and improvements

  • Build now generates a setup.py file to ease installation on some systems. Thanks @mekanix 🎉

v9.2.3

01 Feb 08:32
e3923d1
Compare
Choose a tag to compare

Bug fixes and improvements

  • Bump dependencies
    • fastapi >=0.65.2,<0.74.0

Documentation

  • Fix SQLAlchemy examples

v9.2.2

15 Jan 10:24
0583d7c
Compare
Choose a tag to compare

Bug fixes and improvements

  • Fix #865: fastapi_users.db module exports were not discovered correctly by IDE. Thanks @Ae-Mc 🎉
  • Improve typing for classes and functions expecting a dependency callable.

v9.2.1

10 Jan 12:01
0a8661b
Compare
Choose a tag to compare

Bug fixes and improvements

  • Fix #846: cookies are now correctly deleted when using custom SameSite option. Thanks @Hazedd 🎉
  • Bump dependencies
    • fastapi >=0.65.2,<0.72.0
    • makefun >=1.11.2,<1.14

v9.2.0

04 Jan 15:06
896813d
Compare
Choose a tag to compare

New features and improvements

  • Revamp of SQLAlchemy database adapter using pure SQLAlchemy ORM with asyncio support. [Documentation]
    • You can install it with pip install fastapi-users[sqlalchemy2]
    • The previous one is still available on fastapi-users[sqlalchemy] but is now deprecated.

v9.1.1

03 Jan 10:30
d469bac
Compare
Choose a tag to compare

Bug fixes

  • Bump database adapters dependencies versions to work with new Database strategy. [Documentation]

v8.1.5

03 Jan 10:43
07232cf
Compare
Choose a tag to compare

This is a critical bug fix for v8 branch. Still, I can't commit to maintain both versions, so consider upgrading to v9 as soon as possible.

Bug fixes

  • Fix #834: backend name were incorrectly set during OAuth request. Thanks @Hazedd 🎉

v9.1.0

03 Jan 10:28
96a086c
Compare
Choose a tag to compare

New features and improvements

  • Database authentication strategy: access tokens are stored in your database. [Documentation]