Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: third_party/google_api_python_client/CHANGELOG

Issue 963953003: OAuth2 support in depot_tools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: restore git_cl Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 v1.3.1
2 Version 1.3.1
3
4 Quick release for a fix around aliasing in v1.3.
5
6 v1.3
7 Version 1.3
8
9 Add support for the Google Application Default Credentials.
10 Require python 2.6 as a minimum version.
11 Update several API samples.
12 Finish splitting out oauth2client repo and update tests.
13 Various doc cleanup and bugfixes.
14
15 Two important notes:
16 * We've added `googleapiclient` as the primary suggested import
17 name, and kept `apiclient` as an alias, in order to have a more
18 appropriate import name. At some point, we will remove `apiclient`
19 as an alias.
20 * Due to an issue around in-place upgrades for Python packages,
21 it's not possible to do an upgrade from version 1.2 to 1.3. Instead,
22 setup.py attempts to detect this and prevents it. Simply remove
23 the previous version and reinstall to fix this.
24
25 v1.2
26 Version 1.2
27
28 The use of the gflags library is now deprecated, and is no longer a
29 dependency. If you are still using the oauth2client.tools.run() function
30 then include gflags as a dependency of your application or switch to
31 oauth2client.tools.run_flow.
32 Samples have been updated to use the new apiclient.sample_tools, and no
33 longer use gflags.
34 Added support for the experimental Object Change Notification, as found in
35 the Cloud Storage API.
36 The oauth2client App Engine decorators are now threadsafe.
37
38 - Use the following redirects feature of httplib2 where it returns the
39 ultimate URL after a series of redirects to avoid multiple hops for every
40 resumable media upload request.
41 - Updated AdSense Management API samples to V1.3
42 - Add option to automatically retry requests.
43 - Ability to list registered keys in multistore_file.
44 - User-agent must contain (gzip).
45 - The 'method' parameter for httplib2 is not positional. This would cause
46 spurious warnings in the logging.
47 - Making OAuth2Decorator more extensible. Fixes Issue 256.
48 - Update AdExchange Buyer API examples to version v1.2.
49
50
51 v1.1
52 Version 1.1
53
54 Add PEM support to SignedJWTAssertionCredentials (used to only support
55 PKCS12 formatted keys). Note that if you use PEM formatted keys you can use
56 PyCrypto 2.6 or later instead of OpenSSL.
57
58 Allow deserialized discovery docs to be passed to build_from_document().
59
60 - Make ResumableUploadError derive from HttpError.
61 - Many changes to move all the closures in apiclient.discovery into real
62 - classes and objects.
63 - Make from_json behavior inheritable.
64 - Expose the full token response in OAuth2Client and OAuth2Decorator.
65 - Handle reasons that are None.
66 - Added support for NDB based storing of oauth2client objects.
67 - Update grant_type for AssertionCredentials.
68 - Adding a .revoke() to Credentials. Closes issue 98.
69 - Modify oauth2client.multistore_file to store and retrieve credentials
70 using an arbitrary key.
71 - Don't accept 403 challenges by default for auth challenges.
72 - Set httplib2.RETRIES to 1.
73 - Consolidate handling of scopes.
74 - Upgrade to httplib2 version 0.8.
75 - Allow setting the response_type in OAuth2WebServerFlow.
76 - Ensure that dataWrapper feature is checked before using the 'data' value.
77 - HMAC verification does not use a constant time algorithm.
78
79 v1.0
80 Version 1.0
81
82 - Changes to the code for running tests and building releases.
83
84 v1.0c3
85 Version 1.0 Release Candidate 3
86
87 - In samples and oauth2 decorator, escape untrusted content before displaying it.
88 - Do not allow credentials files to be symlinks.
89 - Add XSRF protection to oauth2decorator callback 'state'.
90 - Handle uploading chunked media by stream.
91 - Handle passing streams directly to httplib2.
92 - Add support for Google Compute Engine service accounts.
93 - Flows no longer need to be saved between uses.
94 - Change GET to POST if URI is too long. Fixes issue #96.
95 - Add a keyring based Storage.
96 - More robust picking up JSON error responses.
97 - Make batch errors align with normal errors.
98 - Add a Google Compute sample.
99 - Token refresh to work with 'old' GData API
100 - Loading of client_secrets JSON file backed by a cache.
101 - Switch to new discovery path parameters.
102 - Add support for additionalProperties when printing schema'd objects.
103 - Fix media upload parameter names. Reviewed in http://codereview.appspot.com/ 6374062/
104 - oauth2client support for URL-encoded format of exchange token response (e.g. Facebook)
105 - Build cleaner and easier to read docs for dynamic surfaces.
106
107 v1.0c2
108 Version 1.0 Release Candidate 2
109
110 - Parameter values of None should be treated as missing. Fixes issue #144.
111 - Distribute the samples separately from the library source. Fixes issue #155.
112 - Move all remaining samples over to client_secrets.json. Fixes issue #156.
113 - Make locked_file.py understand win32file primitives for better awesomeness.
114
115 v1.0c1
116 Version 1.0 Release Candidate 1
117
118 - Documentation for the library has switched to epydoc:
119 http://google-api-python-client.googlecode.com/hg/docs/epy/index.html
120 - Many improvements for media support:
121 * Added media download support, including resumable downloads.
122 * Better handling of streams that report their size as 0.
123 * Update Media Upload to include io.Base and also fix some bugs.
124 - OAuth bug fixes and improvements.
125 * Remove OAuth 1.0 support.
126 * Added credentials_from_code and credentials_from_clientsecrets_and_code.
127 * Make oauth2client support Windows-friendly locking.
128 * Fix bug in StorageByKeyName.
129 * Fix None handling in Django fields. Reviewed in http://codereview.appspot.c om/6298084/. Fixes issue #128.
130 - Add epydoc generated docs. Reviewed in http://codereview.appspot.com/6305043/
131 - Move to PEP386 compliant version numbers.
132 - New and updated samples
133 * Ad Exchange Buyer API v1 code samples.
134 * Automatically generate Samples wiki page from README files.
135 * Update Google Prediction samples.
136 * Add a Tasks sample that demonstrates Service accounts.
137 * new analytics api samples. Reviewed here: http://codereview.appspot.com/549 4058/
138 - Convert all inline samples to the Farm API for consistency.
139
140 v1.0beta8
141 - Updated meda upload support.
142 - Many fixes for batch requests.
143 - Better handling for requests that don't require a body.
144 - Fix issues with Google App Engine Python 2.7 runtime.
145 - Better support for proxies.
146 - All Storages now have a .delete() method.
147 - Important changes which might break your code:
148 * apiclient.anyjson has moved to oauth2client.anyjson.
149 * Some calls, for example, taskqueue().lease() used to require a parameter
150 named body. In this new release only methods that really need to send a bo dy
151 require a body parameter, and so you may get errors about an unknown
152 'body' parameter in your call. The solution is to remove the unneeded
153 body={} parameter.
154
155 v1.0beta7
156 - Support for batch requests. http://code.google.com/p/google-api-python-clien t/wiki/Batch
157 - Support for media upload. http://code.google.com/p/google-api-python-client/ wiki/MediaUpload
158 - Better handling for APIs that return something other than JSON.
159 - Major cleanup and consolidation of the samples.
160 - Bug fixes and other enhancements:
161 72 Defect Appengine OAuth2Decorator: Convert redirect address to string
162 22 Defect Better error handling for unknown service name or version
163 48 Defect StorageByKeyName().get() has side effects
164 50 Defect Need sample client code for Admin Audit API
165 28 Defect better comments for app engine sample Nov 9
166 63 Enhancement Let OAuth2Decorator take a list of scope
167
OLDNEW
« no previous file with comments | « third_party/google_api_python_client/.hgignore ('k') | third_party/google_api_python_client/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698