Skip to content

Releases: fief-dev/fief-python

v0.13.1

07 Jul 06:24
caf91da
Compare
Choose a tag to compare

Bug fixes

  • Fix update_profile method not calling the right API endpoint. Thanks @duber000 for raising this 🎉

v0.13.0

27 Jun 11:56
e3d3d6b
Compare
Choose a tag to compare

New features

  • Add a pkce module with utility functions to help with PKCE process. [Documentation]

v0.12.0

07 Jun 09:30
29d9385
Compare
Choose a tag to compare

New features

  • Add support for checking required permission in main client, FastAPI and Flask integration

v0.11.0

20 May 12:22
8469bf8
Compare
Choose a tag to compare

New features

  • FastAPI integration: a new dependency current_user is introduced. It checks the validity of the access token and return FiefUserInfo dictionary.
    • Mechanisms are available to implement user information caching
    • [Documentation]
  • Flask integration: a new decorator current_user is introduced. It checks the validity of the access token and sets g.user, a FiefUserInfo dictionary.
    • Mechanisms are available to implement user information caching
    • [Documentation]

Breaking changes

  • FastAPI integration: the existing dependency current_user is renamed authenticated. It still returns a FiefAccessTokenInfo.
  • Flask integration: the existing decorator current_user is renamed authenticated. It now sets g.access_token_info, a FiefAccessTokenInfo.