Skip to content

Releases: jazzband/django-oauth-toolkit

0.11.0

01 Dec 21:55
Compare
Choose a tag to compare
  • #424: Added a ROTATE_REFRESH_TOKEN setting to control whether refresh tokens are reused or not
  • #315: AuthorizationView does not overwrite requests on get
  • #425: Added support for Django 1.10
  • #396: added an IsAuthenticatedOrTokenHasScope Permission
  • #357: Support multiple-user clients by allowing User to be NULL for Applications
  • #389: Reuse refresh tokens if enabled.

0.10.0

14 Dec 16:41
Compare
Choose a tag to compare
  • #322: dropping support for python 2.6 and django 1.4, 1.5, 1.6
  • #310: Fixed error that could occur sometimes when checking validity of incomplete AccessToken/Grant
  • #333: Added possibility to specify the default list of scopes returned when scope parameter is missing
  • #325: Added management views of issued tokens
  • #249: Added a command to clean expired tokens
  • #323: Application registration view uses custom application model in form class
  • #299: 'server_class' is now pluggable through Django settings
  • #309: Add the py35-django19 env to travis
  • #308: Use compact syntax for tox envs
  • #306: Django 1.9 compatibility
  • #288: Put additional information when generating token responses
  • #297: Fixed doc about SessionAuthenticationMiddleware
  • #273: Generic read write scope by resource

0.9.0

28 Jul 10:24
Compare
Choose a tag to compare
  • oauthlib_backend_class is now pluggable through Django settings
  • #127: application/json Content-Type is now supported using JSONOAuthLibCore
  • #238: Fixed redirect uri handling in case of error
  • #229: Invalidate access tokens when getting a new refresh token
  • added support for oauthlib 1.0

0.8.0

27 Mar 10:02
Compare
Choose a tag to compare
bumped version to 0.8.0

0.7.2

03 Jul 08:05
Compare
Choose a tag to compare
Bumped version 0.7.2 and changelog updated

0.7.1

27 Apr 10:38
Compare
Choose a tag to compare
added ashchristopher to the authors file

0.7.0

01 Mar 16:19
Compare
Choose a tag to compare
added item to changelog

0.6.1

05 Feb 14:02
Compare
Choose a tag to compare
  • added support for scope query parameter keeping backwards compatibility for the original scopes parameter.
  • __str__ method in Application model returns content of name field when available

0.5.0

30 Sep 21:09
Compare
Choose a tag to compare

New stuff

  • oauthlib 0.6.0 support

Backwards incompatible changes in 0.5.0

  • backends.py module has been renamed to oauth2_backends.py so you should change your imports whether you're extending this module

Bugfixes

  • Issue #54: Auth backend proposal to address #50
  • Issue #61: Fix contributing page
  • Issue #55: Add support for authenticating confidential client with request body params
  • Issue #53: Quote characters in the url query that are safe for Django but not for oauthlib