Skip to content

Commit 3426a38

Browse files
authored
bump oauthlib to 3.2 (#1465)
1 parent 460387a commit 3426a38

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
@@ -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.1.0
43+
oauthlib>=3.2.0
4444
jwcrypto
4545
coverage
4646
pytest
@@ -73,7 +73,7 @@ commands =
7373
deps =
7474
Jinja2<3.1
7575
sphinx<3
76-
oauthlib>=3.1.0
76+
oauthlib>=3.2.0
7777
m2r>=0.2.1
7878
mistune<2
7979
sphinx-rtd-theme

0 commit comments

Comments
 (0)