Releases: fief-dev/fief-python
Releases · fief-dev/fief-python
v0.13.1
v0.13.0
New features
- Add a
pkce
module with utility functions to help with PKCE process. [Documentation]
v0.12.0
New features
- Add support for checking required permission in main client, FastAPI and Flask integration
v0.11.0
New features
- FastAPI integration: a new dependency
current_user
is introduced. It checks the validity of the access token and returnFiefUserInfo
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 setsg.user
, aFiefUserInfo
dictionary.- Mechanisms are available to implement user information caching
- [Documentation]
Breaking changes
- FastAPI integration: the existing dependency
current_user
is renamedauthenticated
. It still returns aFiefAccessTokenInfo
. - Flask integration: the existing decorator
current_user
is renamedauthenticated
. It now setsg.access_token_info
, aFiefAccessTokenInfo
.