Skip to content

Commit 13a6143

Browse files
authored
Release 2.3.0 (#1279)
* sort AUTHORS alphabetically * bump minor version * Changelog organized to focus on core user-visible changes. * Update to match actual release date.
1 parent 4c4da73 commit 13a6143

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Jun Zhou
6767
Kaleb Porter
6868
Kristian Rune Larsen
6969
Ludwig Hähne
70+
Marcus Sonestedt
7071
Matias Seniquiel
7172
Michael Howitz
7273
Owen Gong
@@ -93,4 +94,3 @@ Víðir Valberg Guðmundsson
9394
Will Beaufoy
9495
pySilver
9596
Łukasz Skarżyński
96-
Marcus Sonestedt

CHANGELOG.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Security
1515
-->
1616

17-
## [unreleased]
18-
19-
### Added
20-
* Add Japanese(日本語) Language Support
21-
* [OIDC RP-Initiated Logout](https://openid.net/specs/openid-connect-rpinitiated-1_0.html)
22-
23-
### Changed
24-
* #1211 documentation improve on 'AUTHORIZATION_CODE_EXPIRE_SECONDS'.
25-
* #1218 Confim support for Python 3.11.
26-
* #1222 Remove expired ID tokens alongside access tokens in `cleartokens` management command
27-
* #1270 Fix RP-initiated Logout with no available Django session
28-
* #1092 Allow Authorization Code flow without a client_secret per [RFC 6749 2.3.1](https://www.rfc-editor.org/rfc/rfc6749.html#section-2.3.1)
29-
30-
## [2.2.0] 2022-10-18
17+
## [2.3.0] 2023-05-31
3118

3219
### WARNING
3320

@@ -40,6 +27,17 @@ These issues both result in `{"error": "invalid_client"}`:
4027

4128
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.
4229

30+
### Added
31+
* Add Japanese(日本語) Language Support
32+
* #1244 implement [OIDC RP-Initiated Logout](https://openid.net/specs/openid-connect-rpinitiated-1_0.html)
33+
* #1092 Allow Authorization Code flow without a client_secret per [RFC 6749 2.3.1](https://www.rfc-editor.org/rfc/rfc6749.html#section-2.3.1)
34+
35+
### Changed
36+
* #1222 Remove expired ID tokens alongside access tokens in `cleartokens` management command
37+
* #1267, #1253, #1251, #1250, #1224, #1212, #1211 Various documentation improvements
38+
39+
## [2.2.0] 2022-10-18
40+
4341
### Added
4442
* #1208 Add 'code_challenge_method' parameter to authorization call in documentation
4543
* #1182 Add 'code_verifier' parameter to token requests in documentation

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.2.0"
4+
__version__ = "2.3.0"
55

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

0 commit comments

Comments
 (0)