summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2020-04-22 12:42:10 +0200
committerGitHub <noreply@github.com>2020-04-22 12:42:10 +0200
commita33e8f79f3e9b59778928725d6fa2efcc8b245aa (patch)
treee09a5d230fb389c37ecff9fe93a40f804fc08a15
parent453af5f4c6ec819f65b8b5ffc348bd00e96137a2 (diff)
downloadoauthlib-a33e8f79f3e9b59778928725d6fa2efcc8b245aa.tar.gz
Add 3.1.0 date. Moved merged PR into 3.1.1
-rw-r--r--CHANGELOG.rst16
1 files changed, 10 insertions, 6 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 9a20ebd..70d3257 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,7 +1,16 @@
Changelog
=========
-3.1.0 (TBD)
+3.1.1 (TBD)
+------------------
+OAuth2.0 Client - Bugfixes
+ * #730: Base OAuth2 Client now has a consistent way of managing the `scope`: it consistently
+ relies on the `scope` provided in the constructor if any, except if overridden temporarily
+ in a method call. Note that in particular providing a non-None `scope` in
+ `prepare_authorization_request` or `prepare_refresh_token` does not override anymore
+ `self.scope` forever, it is just used temporarily.
+
+3.1.0 (2019-08-06)
------------------
OAuth2.0 Provider - Features
@@ -27,11 +36,6 @@ OAuth2.0 Client - Bugfixes
* #290: Fix Authorization Code's errors processing
* #603: BackendApplication.Client.prepare_request_body use the `scope` argument as intended.
* #672: Fix edge case when `expires_in=Null`
- * #730: Base OAuth2 Client now has a consistent way of managing the `scope`: it consistently
- relies on the `scope` provided in the constructor if any, except if overridden temporarily
- in a method call. Note that in particular providing a non-None `scope` in
- `prepare_authorization_request` or `prepare_refresh_token` does not override anymore
- `self.scope` forever, it is just used temporarily.
OAuth1.0 Client