v2.7.0
What's Changed
Updated Fastapi dependency version constraint, it will now use any version above 0.111.0, but will not support major version change. Generic exception handler in _decode_token
method is removed since it was returning response with details of the exception, this will be handled by raising HTTPException
with generic message.
Changelog
- FastAPI dependecy version constraint changed from
"^0.111.0"
to">=0.111.0,<1.0.0"
to support newer versions of FastAPI. - Exception handler in
_decode_token
method is removed, errors will return different message and won't turn exception details directly.
Full Changelog: v2.6.0...v2.7.0