You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Correct supported releases of Django to include 4.0.
* Clean up Changelog for 2.1 release.
* Release 2.1.0
* Per @Andrew-Chen-Wang review
Co-authored-by: Andrew Chen Wang <[email protected]>
Co-authored-by: Andrew Chen Wang <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20-3Lines changed: 20 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
16
17
17
## [unreleased]
18
18
19
+
## [2.1.0] 2022-06-19
20
+
21
+
### WARNING
22
+
23
+
Issues caused by **Release 2.0.0 breaking changes** continue to be logged. Please **make sure to carefully read these release notes** before
24
+
performing a MAJOR upgrade to 2.x.
25
+
26
+
These issues both result in `{"error": "invalid_client"}`:
27
+
28
+
1. The application client secret is now hashed upon save. You must copy it before it is saved. Using the hashed value will fail.
29
+
30
+
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.
31
+
19
32
### Added
20
-
* Support `prompt=login` for the OIDC Authorization Code Flow end user [Authentication Request](https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest).
21
-
*#1163Adds French translations.
22
-
*#1166 Add spanish (es) translations.
33
+
*#1164Support `prompt=login` for the OIDC Authorization Code Flow end user [Authentication Request](https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest).
34
+
*#1163Add French (fr) translations.
35
+
*#1166 Add Spanish (es) translations.
23
36
24
37
### Changed
25
38
*#1152`createapplication` management command enhanced to display an auto-generated secret before it gets hashed.
39
+
*#1172, #1159, #1158 documentation improvements.
40
+
41
+
### Fixed
42
+
*#1147 Fixed 2.0.0 implementation of [hashed](https://docs.djangoproject.com/en/stable/topics/auth/passwords/) client secret to work with swapped models.
0 commit comments