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