summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIb Lundgren <ib.lundgren@gmail.com>2014-06-06 12:00:02 +0100
committerIb Lundgren <ib.lundgren@gmail.com>2014-06-06 12:00:02 +0100
commit969d0994234454b05a7b310b8dd40e66e900eede (patch)
tree19082063ee766dad961bfbd87d2935fc0eadc734
parent1e36ed9a9d18c8f97df61975fb4f91fb2affa276 (diff)
downloadoauthlib-969d0994234454b05a7b310b8dd40e66e900eede.tar.gz
0.6.20.6.2
-rw-r--r--README.rst25
-rw-r--r--oauthlib/__init__.py2
2 files changed, 26 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 5eb093d..aa9aace 100644
--- a/README.rst
+++ b/README.rst
@@ -95,6 +95,31 @@ details.
.. _`supported features`: http://oauthlib.readthedocs.org/en/latest/feature_matrix.html
+0.6.2:
+
+* Numerous OAuth2 provider errors now suggest a status code of 401 instead
+ of 400 (#247.
+
+* Added support for JSON web tokens with oauthlib.common.generate_signed_token.
+ Install extra dependency with oauthlib[signedtoken] (#237).
+
+* OAuth2 scopes can be arbitrary objects with __str__ defined (#240).
+
+* OAuth 1 Clients can now register custom signature methods (#239).
+
+* Exposed new method oauthlib.oauth2.is_secure_transport that checks whether
+ the given URL is HTTPS. Checks using this method can be disabled by setting
+ the environment variable OAUTHLIB_INSECURE_TRANSPORT (#249).
+
+* OAuth1 clients now has __repr__ and will be printed with secrets scrubbed.
+
+* OAuth1 Client.get_oauth_params now takes an oauthlib.Request as an argument.
+
+* urldecode will now raise a much more informative error message on
+ incorrectly encoded strings.
+
+* Plenty of typo and other doc fixes.
+
0.6.1: Draft revocation endpoint features and numerous fixes including
* (OAuth 2 Provider) is_within_original_scope to check whether a refresh token
diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py
index 4c39832..dc79bb8 100644
--- a/oauthlib/__init__.py
+++ b/oauthlib/__init__.py
@@ -10,4 +10,4 @@
"""
__author__ = 'Idan Gazit <idan@gazit.me>'
-__version__ = '0.6.1'
+__version__ = '0.6.2'