Skip to content

Commit 85ae6b3

Browse files
committed
bump oauthlib to 3.2
1 parent 9fceef1 commit 85ae6b3

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +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
2627

2728
### Deprecated
2829
### Removed

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.1+
48+
* oauthlib 3.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.1+
26+
* oauthlib 3.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.1.0
2+
oauthlib>=3.2.0
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.1.0",
39+
"oauthlib >= 3.2.0",
4040
"jwcrypto >= 0.8.0",
4141
]
4242

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ deps =
5151
dj51: Django>=5.1,<5.2
5252
djmain: https://github.com/django/django/archive/main.tar.gz
5353
djangorestframework
54-
oauthlib>=3.1.0
54+
oauthlib>=3.2.0
5555
jwcrypto
5656
coverage
5757
pytest
@@ -84,7 +84,7 @@ commands =
8484
deps =
8585
Jinja2<3.1
8686
sphinx<3
87-
oauthlib>=3.1.0
87+
oauthlib>=3.2.0
8888
m2r>=0.2.1
8989
mistune<2
9090
sphinx-rtd-theme

0 commit comments

Comments
 (0)