Releases: frankie567/httpx-oauth
Releases · frankie567/httpx-oauth
v0.11.1
Bump version 0.11.0 → 0.11.1
Improvements
- New client for FranceConnect
v0.11.0
Bump version 0.10.2 → 0.11.0
Breaking change
GoogleOAuth2
client: change parameter name fromscope
toscopes
.- This is for consistency with other clients.
- Thanks @Gr3atWh173 for raising and solving this point 🎉
v0.10.2
Bump version 0.10.1 → 0.10.2
New features
- New clients added for Kakao and Naver. Thanks @joonas-yoon 🎉
Improvements
- Fix typings with newer versions of mypy
- Move to Hatch for package management
- Enable Python 3.11 in test matrix
v0.10.1
Improvements
- Add branding for Reddit and Discord clients.
v0.10.0
Breaking changes
- The return type of
get_id_email
is nowTuple[str, Optional[str])
, which means the email is now optional and can beNone
.- This will help to better support providers that don't always provide an email address.
New features and improvements
- New OpenID client, with automatic endpoints discovery. [Documentation]
- Okta client implementation revamped using the OpenID client as a basis.
v0.9.1
Bug fixes
- Fix SVG logos
v0.9.0
New features
- Add display name and SVG logo for some clients: Facebook, GitHub, Google, LinkedIn and Microsoft
v0.8.1
Improvements
- OAuth2 client will now catch all 4XX errors, not only 400 ones.
v0.8.0
New features
- Discord client added. [Documentation] Thanks @williamhatcher 🚀
v0.7.0
Improvements
- Allow customization of the
httpx.AsyncClient
by overloading theget_httpx_client
method. [Documentation] - Bump dependencies:
httpx >=0.18,<0.24