Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security
-->

## [1.7.1] 2022-03-19

### Removed
* #1126 Reverts #1070 which incorrectly added Celery auto-discovery tasks.py (as described in #1123) and because it conflicts
with Huey's auto-discovery which also uses tasks.py as described in #1114. If you are using Celery or Huey, you'll need
to separately implement these tasks.

## [1.7.0] 2022-01-23

### Added
Expand Down
5 changes: 0 additions & 5 deletions docs/management_commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,3 @@ To prevent the CPU and RAM high peaks during deletion process use ``CLEAR_EXPIRE

Note: Refresh tokens need to expire before AccessTokens can be removed from the
database. Using ``cleartokens`` without ``REFRESH_TOKEN_EXPIRE_SECONDS`` has limited effect.

The ``cleartokens`` action can also be scheduled as a `Celery periodic task`_
by using the ``clear_tokens`` task (automatically registered when using Celery).

.. _Celery periodic task: https://docs.celeryproject.org/en/stable/userguide/periodic-tasks.html
2 changes: 1 addition & 1 deletion oauth2_provider/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import django


__version__ = "1.7.0"
__version__ = "1.7.1"

if django.VERSION < (3, 2):
default_app_config = "oauth2_provider.apps.DOTConfig"
8 changes: 0 additions & 8 deletions oauth2_provider/tasks.py

This file was deleted.