Skip to content

Commit

Permalink
bump oauthlib to 3.2.2 (#1481)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiprg authored Sep 4, 2024
1 parent 62508b4 commit 1d19e3d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Update token to TextField from CharField with 255 character limit and SHA-256 checksum in AbstractAccessToken model. Removing the 255 character limit enables supporting JWT tokens with additional claims
* Update middleware, validators, and views to use token checksums instead of token for token retrieval and validation.
* #1446 use generic models pk instead of id.
* Bump oauthlib version to 3.2.0 and above
* Bump oauthlib version to 3.2.2 and above
* Update the OAuth2Validator's invalidate_authorization_code method to return an InvalidGrantError if the associated grant does not exist.

### Deprecated
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Requirements

* Python 3.8+
* Django 4.2, 5.0 or 5.1
* oauthlib 3.2+
* oauthlib 3.2.2+

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Requirements

* Python 3.8+
* Django 4.2, 5.0 or 5.1
* oauthlib 3.2+
* oauthlib 3.2.2+

Index
=====
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django
oauthlib>=3.2.0
oauthlib>=3.2.2
m2r>=0.2.1
mistune<2
sphinx==7.2.6
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ classifiers = [
dependencies = [
"django >= 4.2",
"requests >= 2.13.0",
"oauthlib >= 3.2.0",
"oauthlib >= 3.2.2",
"jwcrypto >= 0.8.0",
]

Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ deps =
dj51: Django>=5.1,<5.2
djmain: https://github.com/django/django/archive/main.tar.gz
djangorestframework
oauthlib>=3.2.0
oauthlib>=3.2.2
jwcrypto
coverage
pytest
Expand Down Expand Up @@ -73,7 +73,7 @@ commands =
deps =
Jinja2<3.1
sphinx<3
oauthlib>=3.2.0
oauthlib>=3.2.2
m2r>=0.2.1
mistune<2
sphinx-rtd-theme
Expand Down

0 comments on commit 1d19e3d

Please sign in to comment.