blob: f53813ca1a023e979f3a35f7fdf10d730ea78d49 [file] [log] [blame]
Jon Wayne Parrott9cdb2e22018-03-28 13:09:46 -07001v1.6.6
2 Version 1.6.6
3
4 Bugfix release
5
6 - Warn when constructing BatchHttpRequest using the legacy batch URI (#488)
7 - Increase the default media chunksize to 100MB. (#482)
8 - Remove unnecessary parsing of mime headers in HttpRequest.__init__ (#467)
9
Jon Wayne Parrott64367412018-01-18 09:38:27 -080010v1.6.5
11 Version 1.6.5
12
13 Bugfix release
14
15 - Proactively refresh credentials when applying and treat a missing
16 `access_token` as invalid. Note: This change reveals surprising behavior
17 between default credentials and batches. If you allow
18 `googleapiclient.discovery.build` to use default credentials *and* specify
19 different credentials by providing `batch.execut()` with an explicit `http`
20 argument, your individual requests will use the default credentials and
21 *not* the credentials specified to the batch http. To avoid this, tell
22 `build` explicitly not to use default credentials by specifying
23 `build(..., http=httplib2.Http()`. (#469)
24 - Remove mutual exclusivity check for developerKey and credentials (#465)
25 - Handle unknown media length. (#406)
26 - Handle variant error format gracefully. (#459)
27 - Avoid testing against Django >= 2.0.0 on Python 2. (#460)
28
Jon Wayne Parrottaf676692017-09-20 08:53:28 -070029v1.6.4
30 Version 1.6.4
31
32 Bugfix release
33
34 - Warn when google-auth credentials are used but google-auth-httplib2 isn't available. (#443)
35
Jon Wayne Parrottb63a71d2017-08-29 09:15:16 -070036v1.6.3
37 Version 1.6.3
38
39 Bugfix release
40
41 - Add notification of maintenance mode to README. (#410)
42 - Fix generation of methods with abnormal page token conventions. (#338)
43 - Raise ValueError is credentials and developerKey are both specified. (#358)
44 - Re-generate documentation. (#364, #373, #401)
45 - Fix method signature documentation for multiline required parameters. (#374)
46 - Fix ZeroDivisionError in MediaDownloadProgress.progress. (#377)
47 - Fix dead link to WebTest in README. (#378)
48 - Fix details missing in googleapiclient.errors.HttpError. (#412)
49 - Don't treat httplib2.Credentials as oauth credentials. (#425)
50 - Various fixes to the Django sample. (#413)
51
Jon Wayne Parrottafe134b2017-02-08 10:20:57 -080052v1.6.2
53 Version 1.6.2
54
55 Bugfix release
56
57 - Fixed a bug where application default credentials would still be used even
58 when a developerKey was specified. (#347)
59 - Official support for Python 3.5 and 3.6. (#341)
60
Jon Wayne Parrott811d5702017-01-11 14:45:20 -080061v1.6.1
62 Version 1.6.1
63
64 Bugfix release
65
66 - Fixed a bug where using google-auth with scoped credentials would fail. (#328)
67
Jon Wayne Parrott692617a2017-01-06 09:58:29 -080068v1.6.0
69 Version 1.6.0
70
71 Release to drop support for Python 2.6 and add support for google-auth.
72
73 - Support for Python 2.6 has been dropped. (#319)
74 - The credentials argument to discovery.build and discovery.build_from_document
75 can be either oauth2client credentials or google-auth credentials. (#319)
76 - discovery.build and discovery.build_from_document now unambiguously use the
77 http argument to make all requests, including the request for the discovery
78 document. (#319)
79 - The http and credentials arguments to discovery.build and
80 discovery.build_from_document are now mutually exclusive, eliminating a
81 buggy edge case. (#319)
82 - If neither http or credentials is specified to discovery.build and
83 discovery.build_from_document, then Application Default Credentials will
84 be used. The library prefers google-auth for this if it is available, but
85 can also use oauth2client's implementation. (#319)
86 - Fixed resumable upload failure when receiving a 308 response. (#312)
87 - Clarified the support versions of Python 3. (#316)
88
Brian J. Watson0711b8b2016-10-31 17:55:50 -070089v1.5.5
90 Version 1.5.5
91
92 Bugfix release
93
94 - Allow explicit MIME type specification with media_mime_type keyword argument.
95 - Fix unprintable representation of BatchError with default constructor. (#165)
96 - Refresh all discovery docs, not just the preferred ones. (#298)
97 - Update minimum httplib2 dependency to >=0.9.2.
98
Jon Wayne Parrotte2ce0042016-10-14 11:02:09 -070099v1.5.4
100 Version 1.5.4
101
102 Bugfix release
103
104 - Properly handle errors when the API returns a mapping or sequence. (#289)
105 - Upgrade to unified uritemplate 3.0.0. (#293)
106 - Allow oauth2client 4.0.0, with the caveat that file-based discovery
107 caching is disabled.
108
Jon Wayne Parrottc4dca352016-08-29 10:16:34 -0700109v1.5.3
110 Version 1.5.3
111
112 Bugfix release
113
114 - Fixed import error with oauth2client >= 3.0.0. (#270)
115
Jon Wayne Parrottbf7066e2016-08-16 12:41:22 -0700116v1.5.2
117 Version 1.5.2
118
119 Bugfix release
120
121 - Allow using oauth2client >= 1.5.0, < 4.0.0. (#265)
122 - Fix project_id argument description. (#257)
123 - Retry chunk uploaded on rate limit exceeded errors. (#255)
124 - Obtain access token if necessary in BatchHttpRequest.execute(). (#232)
125 - Warn when running tests using HttpMock without having a cache. (#261)
126
Jon Wayne Parrott2aedb522016-05-19 11:03:33 -0700127v1.5.1
128 Version 1.5.1
129
130 Bugfix release
131
132 - Allow using versions of oauth2client < 2.0.0. (#197)
133 - Check both current and new API discovery URL. (#202)
134 - Retry http requests on connection errors and timeouts. (#218)
135 - Retry http requests on rate limit responses. (#201)
136 - Import guards for ssl (for Google App Engine). (#220)
137 - Use named loggers instead of the root logger. (#206)
138 - New search console example. (#212)
139
Jon Wayne Parrottda3e6892016-02-19 15:42:07 -0800140v1.5.0
141 Version 1.5.0
142
143 Release to support oauth2client >= 2.0.0.
144
145 - Fix file stream recognition in Python 3 (#141)
146 - Fix non-resumable binary uploads in Python 3 (#147)
147 - Default to 'octet-stream' if mimetype detection fails (#157)
148 - Handle SSL errors with retries (#160)
149 - Fix incompatibility with oauth2client v2.0.0 (#182)
150
Takashi Matsuo05f19322015-09-11 13:56:00 -0700151v1.4.2
152 Version 1.4.2
153
154 Add automatic caching for the discovery docs.
155
Nathaniel Manistadda86ad2015-06-15 17:24:11 +0000156v1.4.1
157 Version 1.4.1
158
159 Add the googleapiclient.discovery.Resource.new_batch_http_request method.
160
Nathaniel Manista31c47b82015-03-10 23:31:35 +0000161v1.4.0
162 Version 1.4.0
163
164 Python 3 support.
165
Craig Citro326cd512015-03-02 13:24:09 -0800166v1.3.2
167 Version 1.3.2
168
169 Small bugfix release.
Nathaniel Manista31c47b82015-03-10 23:31:35 +0000170
Craig Citro326cd512015-03-02 13:24:09 -0800171 - Fix an infinite loop for downloading small files.
172 - Fix a unicode error in error encoding.
173 - Better handling of `content-length` in media requests.
174 - Add support for methodPath entries containing colon.
Nathaniel Manista31c47b82015-03-10 23:31:35 +0000175
Craig Citro49d45a62014-10-17 20:33:51 -0700176v1.3.1
177 Version 1.3.1
178
179 Quick release for a fix around aliasing in v1.3.
Nathaniel Manista31c47b82015-03-10 23:31:35 +0000180
Craig Citro0e5b9bf2014-10-15 10:26:14 -0700181v1.3
182 Version 1.3
183
184 Add support for the Google Application Default Credentials.
185 Require python 2.6 as a minimum version.
186 Update several API samples.
187 Finish splitting out oauth2client repo and update tests.
188 Various doc cleanup and bugfixes.
Craig Citrof756c682014-10-15 23:01:31 -0700189
190 Two important notes:
191 * We've added `googleapiclient` as the primary suggested import
192 name, and kept `apiclient` as an alias, in order to have a more
193 appropriate import name. At some point, we will remove `apiclient`
194 as an alias.
195 * Due to an issue around in-place upgrades for Python packages,
196 it's not possible to do an upgrade from version 1.2 to 1.3. Instead,
197 setup.py attempts to detect this and prevents it. Simply remove
198 the previous version and reinstall to fix this.
199
Joe Gregorioce67bc22013-07-02 13:50:31 -0400200v1.2
201 Version 1.2
202
203 The use of the gflags library is now deprecated, and is no longer a
204 dependency. If you are still using the oauth2client.tools.run() function
205 then include gflags as a dependency of your application or switch to
206 oauth2client.tools.run_flow.
207 Samples have been updated to use the new apiclient.sample_tools, and no
208 longer use gflags.
209 Added support for the experimental Object Change Notification, as found in
210 the Cloud Storage API.
211 The oauth2client App Engine decorators are now threadsafe.
212
213 - Use the following redirects feature of httplib2 where it returns the
214 ultimate URL after a series of redirects to avoid multiple hops for every
215 resumable media upload request.
216 - Updated AdSense Management API samples to V1.3
217 - Add option to automatically retry requests.
218 - Ability to list registered keys in multistore_file.
219 - User-agent must contain (gzip).
220 - The 'method' parameter for httplib2 is not positional. This would cause
221 spurious warnings in the logging.
222 - Making OAuth2Decorator more extensible. Fixes Issue 256.
223 - Update AdExchange Buyer API examples to version v1.2.
224
225
Joe Gregorio3cc9a452013-03-07 10:08:39 -0500226v1.1
227 Version 1.1
228
229 Add PEM support to SignedJWTAssertionCredentials (used to only support
230 PKCS12 formatted keys). Note that if you use PEM formatted keys you can use
231 PyCrypto 2.6 or later instead of OpenSSL.
232
233 Allow deserialized discovery docs to be passed to build_from_document().
234
235 - Make ResumableUploadError derive from HttpError.
236 - Many changes to move all the closures in apiclient.discovery into real
237 - classes and objects.
238 - Make from_json behavior inheritable.
239 - Expose the full token response in OAuth2Client and OAuth2Decorator.
240 - Handle reasons that are None.
241 - Added support for NDB based storing of oauth2client objects.
242 - Update grant_type for AssertionCredentials.
243 - Adding a .revoke() to Credentials. Closes issue 98.
244 - Modify oauth2client.multistore_file to store and retrieve credentials
245 using an arbitrary key.
246 - Don't accept 403 challenges by default for auth challenges.
247 - Set httplib2.RETRIES to 1.
248 - Consolidate handling of scopes.
249 - Upgrade to httplib2 version 0.8.
250 - Allow setting the response_type in OAuth2WebServerFlow.
251 - Ensure that dataWrapper feature is checked before using the 'data' value.
252 - HMAC verification does not use a constant time algorithm.
253
Joe Gregoriof4839b02012-09-06 13:47:24 -0400254v1.0
255 Version 1.0
256
257 - Changes to the code for running tests and building releases.
258
Joe Gregorio73774c52012-08-29 09:45:53 -0400259v1.0c3
260 Version 1.0 Release Candidate 3
261
262 - In samples and oauth2 decorator, escape untrusted content before displaying it.
263 - Do not allow credentials files to be symlinks.
264 - Add XSRF protection to oauth2decorator callback 'state'.
265 - Handle uploading chunked media by stream.
266 - Handle passing streams directly to httplib2.
267 - Add support for Google Compute Engine service accounts.
268 - Flows no longer need to be saved between uses.
269 - Change GET to POST if URI is too long. Fixes issue #96.
270 - Add a keyring based Storage.
271 - More robust picking up JSON error responses.
272 - Make batch errors align with normal errors.
273 - Add a Google Compute sample.
274 - Token refresh to work with 'old' GData API
275 - Loading of client_secrets JSON file backed by a cache.
276 - Switch to new discovery path parameters.
277 - Add support for additionalProperties when printing schema'd objects.
278 - Fix media upload parameter names. Reviewed in http://codereview.appspot.com/6374062/
279 - oauth2client support for URL-encoded format of exchange token response (e.g. Facebook)
280 - Build cleaner and easier to read docs for dynamic surfaces.
281
Joe Gregoriobf14cef2012-06-22 15:26:16 -0400282v1.0c2
283 Version 1.0 Release Candidate 2
284
285 - Parameter values of None should be treated as missing. Fixes issue #144.
286 - Distribute the samples separately from the library source. Fixes issue #155.
287 - Move all remaining samples over to client_secrets.json. Fixes issue #156.
288 - Make locked_file.py understand win32file primitives for better awesomeness.
289
Joe Gregorio1aaec4b2012-06-15 16:20:41 -0400290v1.0c1
291 Version 1.0 Release Candidate 1
292
Joe Gregorio638663c2012-06-15 14:40:47 -0400293 - Documentation for the library has switched to epydoc:
294 http://google-api-python-client.googlecode.com/hg/docs/epy/index.html
295 - Many improvements for media support:
296 * Added media download support, including resumable downloads.
297 * Better handling of streams that report their size as 0.
298 * Update Media Upload to include io.Base and also fix some bugs.
299 - OAuth bug fixes and improvements.
300 * Remove OAuth 1.0 support.
301 * Added credentials_from_code and credentials_from_clientsecrets_and_code.
302 * Make oauth2client support Windows-friendly locking.
303 * Fix bug in StorageByKeyName.
304 * Fix None handling in Django fields. Reviewed in http://codereview.appspot.com/6298084/. Fixes issue #128.
305 - Add epydoc generated docs. Reviewed in http://codereview.appspot.com/6305043/
306 - Move to PEP386 compliant version numbers.
307 - New and updated samples
308 * Ad Exchange Buyer API v1 code samples.
309 * Automatically generate Samples wiki page from README files.
310 * Update Google Prediction samples.
311 * Add a Tasks sample that demonstrates Service accounts.
312 * new analytics api samples. Reviewed here: http://codereview.appspot.com/5494058/
313 - Convert all inline samples to the Farm API for consistency.
314
Joe Gregoriod02bf5e2012-03-02 13:21:32 -0800315v1.0beta8
316 - Updated meda upload support.
317 - Many fixes for batch requests.
318 - Better handling for requests that don't require a body.
319 - Fix issues with Google App Engine Python 2.7 runtime.
320 - Better support for proxies.
321 - All Storages now have a .delete() method.
322 - Important changes which might break your code:
323 * apiclient.anyjson has moved to oauth2client.anyjson.
324 * Some calls, for example, taskqueue().lease() used to require a parameter
325 named body. In this new release only methods that really need to send a body
326 require a body parameter, and so you may get errors about an unknown
327 'body' parameter in your call. The solution is to remove the unneeded
328 body={} parameter.
329
Joe Gregorio205a0612011-12-14 11:38:16 -0500330v1.0beta7
331 - Support for batch requests. http://code.google.com/p/google-api-python-client/wiki/Batch
332 - Support for media upload. http://code.google.com/p/google-api-python-client/wiki/MediaUpload
333 - Better handling for APIs that return something other than JSON.
334 - Major cleanup and consolidation of the samples.
335 - Bug fixes and other enhancements:
336 72 Defect Appengine OAuth2Decorator: Convert redirect address to string
337 22 Defect Better error handling for unknown service name or version
338 48 Defect StorageByKeyName().get() has side effects
339 50 Defect Need sample client code for Admin Audit API
340 28 Defect better comments for app engine sample Nov 9
341 63 Enhancement Let OAuth2Decorator take a list of scope