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