Skip to content

Commit

Permalink
Bump to v1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Dec 17, 2024
1 parent c0cc18d commit 59e5f01
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Datapunt Django Authorization

Django middleware that adds functionality to check authorization, based on JSON Web Tokens.

Unlike many Django OAuth2/ODIC libraries, this middleware does interact with Django User objects.
It only validates the JSON Web Token, and exposes its scopes in the request object.
This allows backends to operate based on the token scope.

---------------------

Install
Expand Down Expand Up @@ -113,6 +117,10 @@ make test

Changelog
---------
- v1.3.4
* Support Microsoft Entra ID token structure
- v1.3.3
* Bump jwcrypto requirement to 1.4.2
- v1.3.2
* Stopped logging entire Authorization headers in case of a parse error
- v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def run_tests(self):
with open('README.md', encoding='utf-8') as f:
long_description = f.read()

version = '1.3.3'
version = '1.3.4'
packages = ['authorization_django']
requires = ['Django>=1.10.3', 'requests>=2.20.1', 'jwcrypto>=1.4.2']
requires_test = ['pytest>=3.0.5', 'pytest-cov>=2.4.0', 'requests_mock']
Expand Down

0 comments on commit 59e5f01

Please sign in to comment.