Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Releases: edx/django-oauth2-provider

1.3.1

24 Oct 20:23
Compare
Choose a tag to compare
Use python_2_unicode_compatible decorator on models.

Client logout

03 Jun 15:16
Compare
Choose a tag to compare

Client's can now specify a logout URL. This can be used for single sign out.

Client credentials grant update

13 Apr 19:15
Compare
Choose a tag to compare

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

06 Apr 15:59
Compare
Choose a tag to compare

This PR contains migration for custom related_names that were being added to the models to keep them in-sync.

Bookkeeping release.

18 Mar 18:20
Compare
Choose a tag to compare

PyPI already had a conflicting 1.0.0 release. Use 1.0.1 instead.

Custom related_names

18 Mar 15:39
Compare
Choose a tag to compare

This release contains a backward incompatible change:

  • Foreign key reverse names have been specified, so this library can be
    installed alongside django-oauth-toolkit. Code that traverses from
    the User model to django-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

08 Feb 22:01
Compare
Choose a tag to compare

The library now includes support for the client credentials grant.

Refactored support for implicit flow.

01 Dec 03:57
Compare
Choose a tag to compare
Merge pull request #22 from edx/jsa/implicit2

Refactor implicit flow.

New package name

25 Nov 01:45
Compare
Choose a tag to compare

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

01 Apr 16:00
Compare
Choose a tag to compare