Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump oauthlib to 3.2 #1465

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading