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