Skip to content

Commit 6dc4f89

Browse files
valbergn2ygk
andauthored
Release 2.2.0 (#1214)
* Release 2.2.0 * Sort AUTHORS alphabetically Co-authored-by: Alan Crosswell <[email protected]>
1 parent b56332e commit 6dc4f89

File tree

3 files changed

+32
-30
lines changed

3 files changed

+32
-30
lines changed

AUTHORS

+16-15
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

+15-14
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
## [unreleased]
1818

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

3421
### WARNING
3522

@@ -42,6 +29,20 @@ These issues both result in `{"error": "invalid_client"}`:
4229

4330
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.
4431

32+
33+
### Added
34+
* #1208 Add 'code_challenge_method' parameter to authorization call in documentation
35+
* #1182 Add 'code_verifier' parameter to token requests in documentation
36+
37+
### Changed
38+
* #1203 Support Django 4.1.
39+
40+
### Fixed
41+
* #1203 Remove upper version bound on Django, to allow upgrading to Django 4.1.1 bugfix release.
42+
* #1210 Handle oauthlib errors on create token requests
43+
44+
## [2.1.0] 2022-06-19
45+
4546
### Added
4647
* #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).
4748
* #1163 Add French (fr) translations.

oauth2_provider/__init__.py

+1-1
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)