Skip to content

Commit 39794cc

Browse files
authored
Merge pull request #151 from snok/v1.6.1
v1.6.1
2 parents 87237a4 + 28c39ea commit 39794cc

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changelog
22
=========
33

4+
5+
`1.6.1`_ - 2021-03-25
6+
---------------------
7+
8+
**Fixes**
9+
10+
* Raise PermissionDenied when token is lacking information needed to create a user. #116 #149
11+
* Documentation error for ``JWT_LEEWAY``. #147
12+
13+
414
`1.6.0`_ - 2021-01-25
515
---------------------
616

@@ -227,6 +237,7 @@ Changelog
227237

228238
* Initial release
229239

240+
.. _1.6.1: https://github.com/snok/django-auth-adfs/compare/1.6.0...1.6.1
230241
.. _1.6.0: https://github.com/snok/django-auth-adfs/compare/1.5.0...1.6.0
231242
.. _1.5.0: https://github.com/jobec/django-auth-adfs/compare/1.4.1...1.5.0
232243
.. _1.4.1: https://github.com/jobec/django-auth-adfs/compare/1.4.0...1.4.1

django_auth_adfs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
Adding imports here will break setup.py
55
"""
66

7-
__version__ = '1.6.0'
7+
__version__ = '1.6.1'

docs/settings_ref.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ in a template instead of the regular ``<a href="{% url 'django_auth_adfs:login'
171171
which is not supported on ADFS 3.0
172172

173173

174-
LEEWAY_JWT
174+
JWT_LEEWAY
175175
-----------
176176
* **Default**: ``0``
177177
* **Type**: ``str``

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = 'django-auth-adfs'
3-
version = '1.6.0' # Remember to also change __init__.py version
3+
version = '1.6.1' # Remember to also change __init__.py version
44
description = 'A Django authentication backend for Microsoft ADFS and AzureAD'
55
authors = ['Joris Beckers <[email protected]>']
66
maintainers = ['Jonas Krüger Svensson <[email protected]>', 'Sondre Lillebø Gundersen <[email protected]>']

0 commit comments

Comments
 (0)