From d7db2c33226983648b91e3ec0d9cf2e43dc480d4 Mon Sep 17 00:00:00 2001 From: Hsiaoming Yang Date: Sat, 24 Aug 2024 14:08:50 +0900 Subject: [PATCH] chore: release 1.3.2 --- authlib/consts.py | 2 +- docs/changelog.rst | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/authlib/consts.py b/authlib/consts.py index 0eff0669..157a2de0 100644 --- a/authlib/consts.py +++ b/authlib/consts.py @@ -1,5 +1,5 @@ name = 'Authlib' -version = '1.3.1' +version = '1.3.2' author = 'Hsiaoming Yang ' homepage = 'https://authlib.org/' default_user_agent = f'{name}/{version} (+{homepage})' diff --git a/docs/changelog.rst b/docs/changelog.rst index bd7892ec..03c6cdd7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,13 @@ Changelog Here you can see the full list of changes between each Authlib release. +Version 1.3.2 +------------- + +- Prevent ever-growing session size for OAuth clients. +- Revert ``quote`` client id and secret. +- ``unquote`` basic auth header for authorization server. + Version 1.3.1 -------------