summaryrefslogtreecommitdiff
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@gmail.com>2022-01-29 22:46:53 +0100
committerJonathan Huot <jonathan.huot@gmail.com>2022-01-29 22:46:53 +0100
commitbd2e8edf8313aebd99a0bcf752ff4a7e2c1769a0 (patch)
tree1c33d80c53437662b436043ef317b818e3161547 /CHANGELOG.rst
parent947d533d3408be89f0344bcbdace01513bdb16d6 (diff)
downloadoauthlib-bd2e8edf8313aebd99a0bcf752ff4a7e2c1769a0.tar.gz
Changelog of 3.2.0
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r--CHANGELOG.rst27
1 files changed, 19 insertions, 8 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index c67f4da..d7882e9 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,11 +1,27 @@
Changelog
=========
-3.2.0 (TBD)
+3.2.0 (2022-01-29)
------------------
+OAuth2.0 Client:
+* #795: Add Device Authorization Flow for Web Application
+* #786: Add PKCE support for Client
+* #783: Fallback to none in case of wrong expires_at format.
+
+OAuth2.0 Provider:
+* #790: Add support for CORS to metadata endpoint.
+* #791: Add support for CORS to token endpoint.
+* #787: Remove comma after Bearer in WWW-Authenticate
+
+OAuth2.0 Provider - OIDC:
+ * #755: Call save_token in Hybrid code flow
+ * #751: OIDC add support of refreshing ID Tokens with `refresh_id_token`
+ * #751: The RefreshTokenGrant modifiers now take the same arguments as the
+ AuthorizationCodeGrant modifiers (`token`, `token_handler`, `request`).
-In Progress
-
+General:
+ * Added Python 3.9, 3.10, 3.11
+ * Improve Travis & Coverage
3.1.1 (2021-05-31)
------------------
@@ -13,9 +29,6 @@ OAuth2.0 Provider - Bugfixes
* #753: Fix acceptance of valid IPv6 addresses in URI validation
-OAuth2.0 Provider - Features
- * #751: OIDC add support of refreshing ID Tokens
-
OAuth2.0 Client - Bugfixes
* #730: Base OAuth2 Client now has a consistent way of managing the `scope`: it consistently
@@ -34,8 +47,6 @@ OAuth2.0 Provider - Bugfixes
* #746: OpenID Connect Hybrid - fix nonce not passed to add_id_token
* #756: Different prompt values are now handled according to spec (e.g. prompt=none)
* #759: OpenID Connect - fix Authorization: Basic parsing
- * #751: The RefreshTokenGrant modifiers now take the same arguments as the
- AuthorizationCodeGrant modifiers (`token`, `token_handler`, `request`).
General
* #716: improved skeleton validator for public vs private client