Skip to content

Commit 1d19e3d

Browse files
authored
bump oauthlib to 3.2.2 (#1481)
1 parent 62508b4 commit 1d19e3d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2323
* 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
2424
* Update middleware, validators, and views to use token checksums instead of token for token retrieval and validation.
2525
* #1446 use generic models pk instead of id.
26-
* Bump oauthlib version to 3.2.0 and above
26+
* Bump oauthlib version to 3.2.2 and above
2727
* Update the OAuth2Validator's invalidate_authorization_code method to return an InvalidGrantError if the associated grant does not exist.
2828

2929
### Deprecated

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Requirements
4545

4646
* Python 3.8+
4747
* Django 4.2, 5.0 or 5.1
48-
* oauthlib 3.2+
48+
* oauthlib 3.2.2+
4949

5050
Installation
5151
------------

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Requirements
2323

2424
* Python 3.8+
2525
* Django 4.2, 5.0 or 5.1
26-
* oauthlib 3.2+
26+
* oauthlib 3.2.2+
2727

2828
Index
2929
=====

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Django
2-
oauthlib>=3.2.0
2+
oauthlib>=3.2.2
33
m2r>=0.2.1
44
mistune<2
55
sphinx==7.2.6

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ classifiers = [
3636
dependencies = [
3737
"django >= 4.2",
3838
"requests >= 2.13.0",
39-
"oauthlib >= 3.2.0",
39+
"oauthlib >= 3.2.2",
4040
"jwcrypto >= 0.8.0",
4141
]
4242

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ deps =
4040
dj51: Django>=5.1,<5.2
4141
djmain: https://github.com/django/django/archive/main.tar.gz
4242
djangorestframework
43-
oauthlib>=3.2.0
43+
oauthlib>=3.2.2
4444
jwcrypto
4545
coverage
4646
pytest
@@ -73,7 +73,7 @@ commands =
7373
deps =
7474
Jinja2<3.1
7575
sphinx<3
76-
oauthlib>=3.2.0
76+
oauthlib>=3.2.2
7777
m2r>=0.2.1
7878
mistune<2
7979
sphinx-rtd-theme

0 commit comments

Comments
 (0)