Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 31cae75

Browse files
authored
Release 3.1.0 (#689)
Release 3.1.0
2 parents a99c714 + eb84110 commit 31cae75

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

CHANGELOG.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
Changelog
22
=========
33

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+
432
3.0.2 (2019-07-04)
533
------------------
634
* #650: Fixed space encoding in base string URI used in the signature base string.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898

9999
# The theme to use for HTML and HTML Help pages. See the documentation for
100100
# a list of builtin themes.
101-
html_theme = 'default'
101+
html_theme = 'sphinx_rtd_theme'
102102

103103
# Theme options are theme-specific and customize the look and feel of a theme
104104
# further. For a list of options available for each theme, see the

oauthlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from logging import NullHandler
1313

1414
__author__ = 'The OAuthlib Community'
15-
__version__ = '3.1.0-dev'
15+
__version__ = '3.1.0'
1616

1717
logging.getLogger('oauthlib').addHandler(NullHandler())
1818

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ commands=
1313
[testenv:docs]
1414
basepython=python2.7
1515
skipsdist=True
16-
deps=sphinx
16+
deps=
17+
sphinx
18+
sphinx_rtd_theme
1719
changedir=docs
1820
whitelist_externals=make
1921
commands=make clean html

0 commit comments

Comments
 (0)