blob: 4e2a9eb472477b9626e021cd6a089c33d84d252d [file] [log] [blame]
Joe Gregorio3cc9a452013-03-07 10:08:39 -05001v1.1
2 Version 1.1
3
4 Add PEM support to SignedJWTAssertionCredentials (used to only support
5 PKCS12 formatted keys). Note that if you use PEM formatted keys you can use
6 PyCrypto 2.6 or later instead of OpenSSL.
7
8 Allow deserialized discovery docs to be passed to build_from_document().
9
10 - Make ResumableUploadError derive from HttpError.
11 - Many changes to move all the closures in apiclient.discovery into real
12 - classes and objects.
13 - Make from_json behavior inheritable.
14 - Expose the full token response in OAuth2Client and OAuth2Decorator.
15 - Handle reasons that are None.
16 - Added support for NDB based storing of oauth2client objects.
17 - Update grant_type for AssertionCredentials.
18 - Adding a .revoke() to Credentials. Closes issue 98.
19 - Modify oauth2client.multistore_file to store and retrieve credentials
20 using an arbitrary key.
21 - Don't accept 403 challenges by default for auth challenges.
22 - Set httplib2.RETRIES to 1.
23 - Consolidate handling of scopes.
24 - Upgrade to httplib2 version 0.8.
25 - Allow setting the response_type in OAuth2WebServerFlow.
26 - Ensure that dataWrapper feature is checked before using the 'data' value.
27 - HMAC verification does not use a constant time algorithm.
28
Joe Gregoriof4839b02012-09-06 13:47:24 -040029v1.0
30 Version 1.0
31
32 - Changes to the code for running tests and building releases.
33
Joe Gregorio73774c52012-08-29 09:45:53 -040034v1.0c3
35 Version 1.0 Release Candidate 3
36
37 - In samples and oauth2 decorator, escape untrusted content before displaying it.
38 - Do not allow credentials files to be symlinks.
39 - Add XSRF protection to oauth2decorator callback 'state'.
40 - Handle uploading chunked media by stream.
41 - Handle passing streams directly to httplib2.
42 - Add support for Google Compute Engine service accounts.
43 - Flows no longer need to be saved between uses.
44 - Change GET to POST if URI is too long. Fixes issue #96.
45 - Add a keyring based Storage.
46 - More robust picking up JSON error responses.
47 - Make batch errors align with normal errors.
48 - Add a Google Compute sample.
49 - Token refresh to work with 'old' GData API
50 - Loading of client_secrets JSON file backed by a cache.
51 - Switch to new discovery path parameters.
52 - Add support for additionalProperties when printing schema'd objects.
53 - Fix media upload parameter names. Reviewed in http://codereview.appspot.com/6374062/
54 - oauth2client support for URL-encoded format of exchange token response (e.g. Facebook)
55 - Build cleaner and easier to read docs for dynamic surfaces.
56
Joe Gregoriobf14cef2012-06-22 15:26:16 -040057v1.0c2
58 Version 1.0 Release Candidate 2
59
60 - Parameter values of None should be treated as missing. Fixes issue #144.
61 - Distribute the samples separately from the library source. Fixes issue #155.
62 - Move all remaining samples over to client_secrets.json. Fixes issue #156.
63 - Make locked_file.py understand win32file primitives for better awesomeness.
64
Joe Gregorio1aaec4b2012-06-15 16:20:41 -040065v1.0c1
66 Version 1.0 Release Candidate 1
67
Joe Gregorio638663c2012-06-15 14:40:47 -040068 - Documentation for the library has switched to epydoc:
69 http://google-api-python-client.googlecode.com/hg/docs/epy/index.html
70 - Many improvements for media support:
71 * Added media download support, including resumable downloads.
72 * Better handling of streams that report their size as 0.
73 * Update Media Upload to include io.Base and also fix some bugs.
74 - OAuth bug fixes and improvements.
75 * Remove OAuth 1.0 support.
76 * Added credentials_from_code and credentials_from_clientsecrets_and_code.
77 * Make oauth2client support Windows-friendly locking.
78 * Fix bug in StorageByKeyName.
79 * Fix None handling in Django fields. Reviewed in http://codereview.appspot.com/6298084/. Fixes issue #128.
80 - Add epydoc generated docs. Reviewed in http://codereview.appspot.com/6305043/
81 - Move to PEP386 compliant version numbers.
82 - New and updated samples
83 * Ad Exchange Buyer API v1 code samples.
84 * Automatically generate Samples wiki page from README files.
85 * Update Google Prediction samples.
86 * Add a Tasks sample that demonstrates Service accounts.
87 * new analytics api samples. Reviewed here: http://codereview.appspot.com/5494058/
88 - Convert all inline samples to the Farm API for consistency.
89
Joe Gregoriod02bf5e2012-03-02 13:21:32 -080090v1.0beta8
91 - Updated meda upload support.
92 - Many fixes for batch requests.
93 - Better handling for requests that don't require a body.
94 - Fix issues with Google App Engine Python 2.7 runtime.
95 - Better support for proxies.
96 - All Storages now have a .delete() method.
97 - Important changes which might break your code:
98 * apiclient.anyjson has moved to oauth2client.anyjson.
99 * Some calls, for example, taskqueue().lease() used to require a parameter
100 named body. In this new release only methods that really need to send a body
101 require a body parameter, and so you may get errors about an unknown
102 'body' parameter in your call. The solution is to remove the unneeded
103 body={} parameter.
104
Joe Gregorio205a0612011-12-14 11:38:16 -0500105v1.0beta7
106 - Support for batch requests. http://code.google.com/p/google-api-python-client/wiki/Batch
107 - Support for media upload. http://code.google.com/p/google-api-python-client/wiki/MediaUpload
108 - Better handling for APIs that return something other than JSON.
109 - Major cleanup and consolidation of the samples.
110 - Bug fixes and other enhancements:
111 72 Defect Appengine OAuth2Decorator: Convert redirect address to string
112 22 Defect Better error handling for unknown service name or version
113 48 Defect StorageByKeyName().get() has side effects
114 50 Defect Need sample client code for Admin Audit API
115 28 Defect better comments for app engine sample Nov 9
116 63 Enhancement Let OAuth2Decorator take a list of scope
Joe Gregorio638663c2012-06-15 14:40:47 -0400117