File tree Expand file tree Collapse file tree 4 files changed +33
-3
lines changed Expand file tree Collapse file tree 4 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 3.1.0 (TBD)
5
+ ------------------
6
+
7
+ OAuth2.0 Provider - Features
8
+ * #660: OIDC add support of nonce, c_hash, at_hash fields
9
+ - New RequestValidator.fill_id_token method
10
+ - Deprecated RequestValidator.get_id_token method
11
+ * #677: OIDC add UserInfo endpoint
12
+ - New RequestValidator.get_userinfo_claims method
13
+
14
+ OAuth2.0 Provider - Security
15
+ * #665: Enhance data leak to logs
16
+ - New default to not expose request content in logs
17
+ - New function `oauthlib.set_debug(True) `
18
+ * #666: Disabling query parameters for POST requests
19
+
20
+ OAuth2.0 Provider - Bugfixes
21
+ * #670: Fix validate_authorization_request to return the new PKCE fields
22
+ * #674: Fix token_type to be case-insensitive (bearer and Bearer)
23
+
24
+ OAuth2.0 Client - Bugfixes
25
+ * #290: Fix Authorization Code's errors processing
26
+ * #603: BackendApplication.Client.prepare_request_body use the "scope" argument as intended.
27
+ * #672: Fix edge case when expires_in=Null
28
+
29
+ OAuth1.0 Client
30
+ * #669: Add case-insensitive headers to oauth1 BaseEndpoint
31
+
4
32
3.0.2 (2019-07-04)
5
33
------------------
6
34
* #650: Fixed space encoding in base string URI used in the signature base string.
Original file line number Diff line number Diff line change 98
98
99
99
# The theme to use for HTML and HTML Help pages. See the documentation for
100
100
# a list of builtin themes.
101
- html_theme = 'default '
101
+ html_theme = 'sphinx_rtd_theme '
102
102
103
103
# Theme options are theme-specific and customize the look and feel of a theme
104
104
# further. For a list of options available for each theme, see the
Original file line number Diff line number Diff line change 12
12
from logging import NullHandler
13
13
14
14
__author__ = 'The OAuthlib Community'
15
- __version__ = '3.1.0-dev '
15
+ __version__ = '3.1.0'
16
16
17
17
logging .getLogger ('oauthlib' ).addHandler (NullHandler ())
18
18
Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ commands=
13
13
[testenv:docs]
14
14
basepython =python2.7
15
15
skipsdist =True
16
- deps =sphinx
16
+ deps =
17
+ sphinx
18
+ sphinx_rtd_theme
17
19
changedir =docs
18
20
whitelist_externals =make
19
21
commands =make clean html
You can’t perform that action at this time.
0 commit comments