Prepare for v1.1 release.

Reviewed in https://codereview.appspot.com/7516045/.
This commit is contained in:
Joe Gregorio
2013-03-07 10:08:39 -05:00
parent f7b648f528
commit 3cc9a454a9
5 changed files with 32 additions and 4 deletions

View File

@@ -1,3 +1,31 @@
v1.1
Version 1.1
Add PEM support to SignedJWTAssertionCredentials (used to only support
PKCS12 formatted keys). Note that if you use PEM formatted keys you can use
PyCrypto 2.6 or later instead of OpenSSL.
Allow deserialized discovery docs to be passed to build_from_document().
- Make ResumableUploadError derive from HttpError.
- Many changes to move all the closures in apiclient.discovery into real
- classes and objects.
- Make from_json behavior inheritable.
- Expose the full token response in OAuth2Client and OAuth2Decorator.
- Handle reasons that are None.
- Added support for NDB based storing of oauth2client objects.
- Update grant_type for AssertionCredentials.
- Adding a .revoke() to Credentials. Closes issue 98.
- Modify oauth2client.multistore_file to store and retrieve credentials
using an arbitrary key.
- Don't accept 403 challenges by default for auth challenges.
- Set httplib2.RETRIES to 1.
- Consolidate handling of scopes.
- Upgrade to httplib2 version 0.8.
- Allow setting the response_type in OAuth2WebServerFlow.
- Ensure that dataWrapper feature is checked before using the 'data' value.
- HMAC verification does not use a constant time algorithm.
v1.0
Version 1.0

View File

@@ -1 +1 @@
__version__ = "1.0"
__version__ = "1.1"

View File

@@ -1,4 +1,4 @@
__version__ = "1.0"
__version__ = "1.1"
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth'
GOOGLE_REVOKE_URI = 'https://accounts.google.com/o/oauth2/revoke'

View File

@@ -26,7 +26,7 @@ packages = [
]
install_requires = [
'httplib2>=0.7.7',
'httplib2>=0.8',
'python-gflags',
]

View File

@@ -24,7 +24,7 @@ packages = [
]
install_requires = [
'httplib2>=0.7.7',
'httplib2>=0.8',
'python-gflags',
]