Skip to content

Commit

Permalink
bump oauthlib to 3.2 (#1465)
Browse files Browse the repository at this point in the history
  • Loading branch information
dulmandakh authored Aug 26, 2024
1 parent 460387a commit 3426a38
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +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

### Deprecated
### Removed
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.1+
* oauthlib 3.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.1+
* oauthlib 3.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.1.0
oauthlib>=3.2.0
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.1.0",
"oauthlib >= 3.2.0",
"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.1.0
oauthlib>=3.2.0
jwcrypto
coverage
pytest
Expand Down Expand Up @@ -73,7 +73,7 @@ commands =
deps =
Jinja2<3.1
sphinx<3
oauthlib>=3.1.0
oauthlib>=3.2.0
m2r>=0.2.1
mistune<2
sphinx-rtd-theme
Expand Down

0 comments on commit 3426a38

Please sign in to comment.