Skip to content

Commit ddd637c

Browse files
authored
Merge branch 'master' into fix-docs-authorization-code-expire
2 parents 497277e + 6dc4f89 commit ddd637c

File tree

4 files changed

+34
-33
lines changed

4 files changed

+34
-33
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 22.8.0
3+
rev: 22.10.0
44
hooks:
55
- id: black
66
exclude: ^(oauth2_provider/migrations/|tests/migrations/)
@@ -26,6 +26,6 @@ repos:
2626
- id: flake8
2727
exclude: ^(oauth2_provider/migrations/|tests/migrations/)
2828
- repo: https://github.com/sphinx-contrib/sphinx-lint
29-
rev: v0.6.1
29+
rev: v0.6.6
3030
hooks:
3131
- id: sphinx-lint

AUTHORS

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ Authors
33

44
Massimiliano Pippi
55
Federico Frenguelli
6-
Islam Kamel
76

87
Contributors
98
------------
@@ -16,6 +15,7 @@ Aleksander Vaskevich
1615
Alessandro De Angelis
1716
Alex Szabó
1817
Allisson Azevedo
18+
Andrea Greco
1919
Andrej Zbín
2020
Andrew Chen Wang
2121
Anvesh Agarwal
@@ -28,26 +28,33 @@ Bas van Oostveen
2828
Brian Helba
2929
Carl Schwan
3030
Daniel 'Vector' Kerr
31+
Darrel O'Pry
3132
Dave Burkholder
3233
David Fischer
34+
David Hill
3335
David Smith
3436
Dawid Wolski
3537
Diego Garcia
38+
Dominik George
3639
Dulmandakh Sukhbaatar
3740
Dylan Giesler
3841
Dylan Tack
42+
Eduardo Oliveira
3943
Emanuele Palazzetti
4044
Federico Dolce
4145
Frederico Vieira
4246
Hasan Ramezani
43-
Hossein Shakiba
4447
Hiroki Kiyohara
48+
Hossein Shakiba
49+
Islam Kamel
50+
Jadiel Teófilo
4551
Jens Timmerman
4652
Jerome Leclanche
4753
Jesse Gibbs
4854
Jim Graham
4955
Jonas Nygaard Pedersen
5056
Jonathan Steffan
57+
Jordi Sanchez
5158
Joseph Abrahams
5259
Jozef Knaperek
5360
Julien Palard
@@ -56,32 +63,26 @@ Kaleb Porter
5663
Kristian Rune Larsen
5764
Matias Seniquiel
5865
Michael Howitz
66+
Owen Gong
67+
Patrick Palacin
5968
Paul Dekkers
6069
Paul Oswald
6170
Pavel Tvrdík
62-
Patrick Palacin
6371
Peter Carnesciali
72+
Peter Karman
6473
Petr Dlouhý
6574
Rodney Richardson
6675
Rustem Saiargaliev
76+
Rustem Saiargaliev
6777
Sandro Rodrigues
78+
Shaheed Haque
6879
Shaun Stanworth
6980
Silvano Cerza
7081
Spencer Carroll
7182
Stéphane Raimbault
7283
Tom Evans
84+
Vinay Karanam
85+
Víðir Valberg Guðmundsson
7386
Will Beaufoy
74-
Rustem Saiargaliev
75-
Jadiel Teófilo
7687
pySilver
7788
Łukasz Skarżyński
78-
Shaheed Haque
79-
Peter Karman
80-
Vinay Karanam
81-
Eduardo Oliveira
82-
Andrea Greco
83-
Dominik George
84-
David Hill
85-
Darrel O'Pry
86-
Jordi Sanchez
87-
Owen Gong

CHANGELOG.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
## [unreleased]
1818

1919
### Changed
20-
* #1211 documentation improvements.
20+
* #1211 documentation improve on 'AUTHORIZATION_CODE_EXPIRE_SECONDS'.
2121

22-
### Added
23-
* Add 'code_challenge_method' parameter to authorization call in documentation
24-
25-
### Added
26-
* Add 'code_verifier' parameter to token requests in documentation
27-
28-
### Changed
29-
* Support Django 4.1.
30-
31-
### Fixed
32-
* Remove upper version bound on Django, to allow upgrading to Django 4.1.1 bugfix release.
33-
* Handle oauthlib errors on create token requests
34-
35-
## [2.1.0] 2022-06-19
22+
## [2.2.0] 2022-10-18
3623

3724
### WARNING
3825

@@ -45,6 +32,19 @@ These issues both result in `{"error": "invalid_client"}`:
4532

4633
2. `PKCE_REQUIRED` is now `True` by default. You should use PKCE with your client or set `PKCE_REQUIRED=False` if you are unable to fix the client.
4734

35+
### Added
36+
* #1208 Add 'code_challenge_method' parameter to authorization call in documentation
37+
* #1182 Add 'code_verifier' parameter to token requests in documentation
38+
39+
### Changed
40+
* #1203 Support Django 4.1.
41+
42+
### Fixed
43+
* #1203 Remove upper version bound on Django, to allow upgrading to Django 4.1.1 bugfix release.
44+
* #1210 Handle oauthlib errors on create token requests
45+
46+
## [2.1.0] 2022-06-19
47+
4848
### Added
4949
* #1164 Support `prompt=login` for the OIDC Authorization Code Flow end user [Authentication Request](https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest).
5050
* #1163 Add French (fr) translations.

oauth2_provider/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import django
22

33

4-
__version__ = "2.1.0"
4+
__version__ = "2.2.0"
55

66
if django.VERSION < (3, 2):
77
default_app_config = "oauth2_provider.apps.DOTConfig"

0 commit comments

Comments
 (0)