Releases: edx/django-oauth2-provider
1.3.1
Client logout
Client's can now specify a logout URL. This can be used for single sign out.
Client credentials grant update
When using the client credentials grant, the issued access token's scope is set to openid, profile, email, permissions (integer value 39 in the database).
Migration for custom related_names
This PR contains migration for custom related_names that were being added to the models to keep them in-sync.
Bookkeeping release.
PyPI already had a conflicting 1.0.0 release. Use 1.0.1 instead.
Custom related_names
This release contains a backward incompatible change:
-
Foreign key reverse names have been specified, so this library can be
installed alongsidedjango-oauth-toolkit
. Code that traverses from
the User model todjango-oauth2-provider
models will need to update the
related name used.>>> user.access_token >>> user.grant >>> user.refresh_token
becomes:
>>> user.dop_access_token >>> user.dop_grant >>> user.dop_refresh_token
Client Credentials Grant
The library now includes support for the client credentials grant.
Refactored support for implicit flow.
Merge pull request #22 from edx/jsa/implicit2 Refactor implicit flow.
New package name
This package has been renamed to edx-django-oauth2-provider
and is now available on PyPI. Previous installations of django-oauth2-provider
should be removed before installing this, and subsequent, versions.
0.2.7-fork-edx-5: Merge pull request #10 from edx/expires-fix
Updated Access Token Detail View