Skip to content

Commit

Permalink
Release 2.2.0 (#1214)
Browse files Browse the repository at this point in the history
* Release 2.2.0

* Sort AUTHORS alphabetically

Co-authored-by: Alan Crosswell <alan@columbia.edu>
  • Loading branch information
valberg and n2ygk committed Oct 18, 2022
1 parent b56332e commit 6dc4f89
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 30 deletions.
31 changes: 16 additions & 15 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ Authors

Massimiliano Pippi
Federico Frenguelli
Islam Kamel

Contributors
------------
Expand All @@ -16,6 +15,7 @@ Aleksander Vaskevich
Alessandro De Angelis
Alex Szabó
Allisson Azevedo
Andrea Greco
Andrej Zbín
Andrew Chen Wang
Anvesh Agarwal
Expand All @@ -28,26 +28,33 @@ Bas van Oostveen
Brian Helba
Carl Schwan
Daniel 'Vector' Kerr
Darrel O'Pry
Dave Burkholder
David Fischer
David Hill
David Smith
Dawid Wolski
Diego Garcia
Dominik George
Dulmandakh Sukhbaatar
Dylan Giesler
Dylan Tack
Eduardo Oliveira
Emanuele Palazzetti
Federico Dolce
Frederico Vieira
Hasan Ramezani
Hossein Shakiba
Hiroki Kiyohara
Hossein Shakiba
Islam Kamel
Jadiel Teófilo
Jens Timmerman
Jerome Leclanche
Jesse Gibbs
Jim Graham
Jonas Nygaard Pedersen
Jonathan Steffan
Jordi Sanchez
Joseph Abrahams
Jozef Knaperek
Julien Palard
Expand All @@ -56,32 +63,26 @@ Kaleb Porter
Kristian Rune Larsen
Matias Seniquiel
Michael Howitz
Owen Gong
Patrick Palacin
Paul Dekkers
Paul Oswald
Pavel Tvrdík
Patrick Palacin
Peter Carnesciali
Peter Karman
Petr Dlouhý
Rodney Richardson
Rustem Saiargaliev
Rustem Saiargaliev
Sandro Rodrigues
Shaheed Haque
Shaun Stanworth
Silvano Cerza
Spencer Carroll
Stéphane Raimbault
Tom Evans
Vinay Karanam
Víðir Valberg Guðmundsson
Will Beaufoy
Rustem Saiargaliev
Jadiel Teófilo
pySilver
Łukasz Skarżyński
Shaheed Haque
Peter Karman
Vinay Karanam
Eduardo Oliveira
Andrea Greco
Dominik George
David Hill
Darrel O'Pry
Jordi Sanchez
Owen Gong
29 changes: 15 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

### Added
* Add 'code_challenge_method' parameter to authorization call in documentation

### Added
* Add 'code_verifier' parameter to token requests in documentation

### Changed
* Support Django 4.1.

### Fixed
* Remove upper version bound on Django, to allow upgrading to Django 4.1.1 bugfix release.
* Handle oauthlib errors on create token requests

## [2.1.0] 2022-06-19
## [2.2.0] 2022-10-18

### WARNING

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

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.


### Added
* #1208 Add 'code_challenge_method' parameter to authorization call in documentation
* #1182 Add 'code_verifier' parameter to token requests in documentation

### Changed
* #1203 Support Django 4.1.

### Fixed
* #1203 Remove upper version bound on Django, to allow upgrading to Django 4.1.1 bugfix release.
* #1210 Handle oauthlib errors on create token requests

## [2.1.0] 2022-06-19

### Added
* #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).
* #1163 Add French (fr) translations.
Expand Down
2 changes: 1 addition & 1 deletion oauth2_provider/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import django


__version__ = "2.1.0"
__version__ = "2.2.0"

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

0 comments on commit 6dc4f89

Please sign in to comment.