Skip to content

Releases: yunojuno/django-request-token

Add support for Django 5.0

14 Nov 11:59
3489284
Compare
Choose a tag to compare

[2.3] - 2023-11-14

  • Add Django 5.0 to build matrix
  • Add Python 3.12 to build matrix

v0.15

24 Jun 08:52
7580ede
Compare
Choose a tag to compare

Changelog

All notable changes to this project will be documented in this file.

[0.15] - 2021-06-24

  • Add support for non-default user PK fields (e.g. uuid) - thanks @timomeara
  • Add increment_used_count method.

[0.14] - 2021-04-14

Removed

  • Logging of token use errors - this has never worked
  • Custom 403_TEMPLATE use (and setting)

[0.12] - 2020-08-17

No functional changes - just updating classifiers and CI support.

Added

  • Add Django 3.1 support
  • Add Django master to CI build matrix

[0.10] - 2020-01-26

Added

  • Add isort and black formatting
  • Add pylint and flake8 linting
  • Add type hints and mypy checks
  • Add pre-commit config

Changed

  • Replace pipenv with poetry

Deprecated

  • Django 1.11, 2.0, 2.1
  • Python 3.6

v0.14.1

18 Apr 09:26
5f8fdbb
Compare
Choose a tag to compare

Fix for JSON array bug (#50)

Update LOGIN_MODE_SESSION usage

25 Jun 12:56
6589507
Compare
Choose a tag to compare

Session tokens with a default max_use of 1 are problematic as email clients / services now often ping URLs in emails in order to cache images / detect phishing sites. This results in session tokens expiring before the user has had a chance to click on the link.

The new default is 10 uses, 10 minutes.

Drop Django 1.11, 2.0, 2.1 and Python 3.6

26 Jan 19:57
Compare
Choose a tag to compare

Added

  • Add isort and black formatting
  • Add pylint and flake8 linting
  • Add type hints and mypy checks
  • Add pre-commit config

Changed

  • Replace pipenv with poetry

Deprecated

  • Django 1.11, 2.0, 2.1
  • Python 3.6

Support for Django 2.0

10 May 09:54
e987002
Compare
Choose a tag to compare

v0.6

02 May 17:06
Compare
Choose a tag to compare

Add support for custom user models, and Python3.

v0.2.0

21 Oct 08:02
Compare
Choose a tag to compare

Adds 403 template support (h/t @pmarais)