Jon Wayne Parrott | 2aedb52 | 2016-05-19 11:03:33 -0700 | [diff] [blame] | 1 | v1.5.1 |
| 2 | Version 1.5.1 |
| 3 | |
| 4 | Bugfix release |
| 5 | |
| 6 | - Allow using versions of oauth2client < 2.0.0. (#197) |
| 7 | - Check both current and new API discovery URL. (#202) |
| 8 | - Retry http requests on connection errors and timeouts. (#218) |
| 9 | - Retry http requests on rate limit responses. (#201) |
| 10 | - Import guards for ssl (for Google App Engine). (#220) |
| 11 | - Use named loggers instead of the root logger. (#206) |
| 12 | - New search console example. (#212) |
| 13 | |
Jon Wayne Parrott | da3e689 | 2016-02-19 15:42:07 -0800 | [diff] [blame] | 14 | v1.5.0 |
| 15 | Version 1.5.0 |
| 16 | |
| 17 | Release to support oauth2client >= 2.0.0. |
| 18 | |
| 19 | - Fix file stream recognition in Python 3 (#141) |
| 20 | - Fix non-resumable binary uploads in Python 3 (#147) |
| 21 | - Default to 'octet-stream' if mimetype detection fails (#157) |
| 22 | - Handle SSL errors with retries (#160) |
| 23 | - Fix incompatibility with oauth2client v2.0.0 (#182) |
| 24 | |
Takashi Matsuo | 05f1932 | 2015-09-11 13:56:00 -0700 | [diff] [blame] | 25 | v1.4.2 |
| 26 | Version 1.4.2 |
| 27 | |
| 28 | Add automatic caching for the discovery docs. |
| 29 | |
Nathaniel Manista | dda86ad | 2015-06-15 17:24:11 +0000 | [diff] [blame] | 30 | v1.4.1 |
| 31 | Version 1.4.1 |
| 32 | |
| 33 | Add the googleapiclient.discovery.Resource.new_batch_http_request method. |
| 34 | |
Nathaniel Manista | 31c47b8 | 2015-03-10 23:31:35 +0000 | [diff] [blame] | 35 | v1.4.0 |
| 36 | Version 1.4.0 |
| 37 | |
| 38 | Python 3 support. |
| 39 | |
Craig Citro | 326cd51 | 2015-03-02 13:24:09 -0800 | [diff] [blame] | 40 | v1.3.2 |
| 41 | Version 1.3.2 |
| 42 | |
| 43 | Small bugfix release. |
Nathaniel Manista | 31c47b8 | 2015-03-10 23:31:35 +0000 | [diff] [blame] | 44 | |
Craig Citro | 326cd51 | 2015-03-02 13:24:09 -0800 | [diff] [blame] | 45 | - Fix an infinite loop for downloading small files. |
| 46 | - Fix a unicode error in error encoding. |
| 47 | - Better handling of `content-length` in media requests. |
| 48 | - Add support for methodPath entries containing colon. |
Nathaniel Manista | 31c47b8 | 2015-03-10 23:31:35 +0000 | [diff] [blame] | 49 | |
Craig Citro | 49d45a6 | 2014-10-17 20:33:51 -0700 | [diff] [blame] | 50 | v1.3.1 |
| 51 | Version 1.3.1 |
| 52 | |
| 53 | Quick release for a fix around aliasing in v1.3. |
Nathaniel Manista | 31c47b8 | 2015-03-10 23:31:35 +0000 | [diff] [blame] | 54 | |
Craig Citro | 0e5b9bf | 2014-10-15 10:26:14 -0700 | [diff] [blame] | 55 | v1.3 |
| 56 | Version 1.3 |
| 57 | |
| 58 | Add support for the Google Application Default Credentials. |
| 59 | Require python 2.6 as a minimum version. |
| 60 | Update several API samples. |
| 61 | Finish splitting out oauth2client repo and update tests. |
| 62 | Various doc cleanup and bugfixes. |
Craig Citro | f756c68 | 2014-10-15 23:01:31 -0700 | [diff] [blame] | 63 | |
| 64 | Two important notes: |
| 65 | * We've added `googleapiclient` as the primary suggested import |
| 66 | name, and kept `apiclient` as an alias, in order to have a more |
| 67 | appropriate import name. At some point, we will remove `apiclient` |
| 68 | as an alias. |
| 69 | * Due to an issue around in-place upgrades for Python packages, |
| 70 | it's not possible to do an upgrade from version 1.2 to 1.3. Instead, |
| 71 | setup.py attempts to detect this and prevents it. Simply remove |
| 72 | the previous version and reinstall to fix this. |
| 73 | |
Joe Gregorio | ce67bc2 | 2013-07-02 13:50:31 -0400 | [diff] [blame] | 74 | v1.2 |
| 75 | Version 1.2 |
| 76 | |
| 77 | The use of the gflags library is now deprecated, and is no longer a |
| 78 | dependency. If you are still using the oauth2client.tools.run() function |
| 79 | then include gflags as a dependency of your application or switch to |
| 80 | oauth2client.tools.run_flow. |
| 81 | Samples have been updated to use the new apiclient.sample_tools, and no |
| 82 | longer use gflags. |
| 83 | Added support for the experimental Object Change Notification, as found in |
| 84 | the Cloud Storage API. |
| 85 | The oauth2client App Engine decorators are now threadsafe. |
| 86 | |
| 87 | - Use the following redirects feature of httplib2 where it returns the |
| 88 | ultimate URL after a series of redirects to avoid multiple hops for every |
| 89 | resumable media upload request. |
| 90 | - Updated AdSense Management API samples to V1.3 |
| 91 | - Add option to automatically retry requests. |
| 92 | - Ability to list registered keys in multistore_file. |
| 93 | - User-agent must contain (gzip). |
| 94 | - The 'method' parameter for httplib2 is not positional. This would cause |
| 95 | spurious warnings in the logging. |
| 96 | - Making OAuth2Decorator more extensible. Fixes Issue 256. |
| 97 | - Update AdExchange Buyer API examples to version v1.2. |
| 98 | |
| 99 | |
Joe Gregorio | 3cc9a45 | 2013-03-07 10:08:39 -0500 | [diff] [blame] | 100 | v1.1 |
| 101 | Version 1.1 |
| 102 | |
| 103 | Add PEM support to SignedJWTAssertionCredentials (used to only support |
| 104 | PKCS12 formatted keys). Note that if you use PEM formatted keys you can use |
| 105 | PyCrypto 2.6 or later instead of OpenSSL. |
| 106 | |
| 107 | Allow deserialized discovery docs to be passed to build_from_document(). |
| 108 | |
| 109 | - Make ResumableUploadError derive from HttpError. |
| 110 | - Many changes to move all the closures in apiclient.discovery into real |
| 111 | - classes and objects. |
| 112 | - Make from_json behavior inheritable. |
| 113 | - Expose the full token response in OAuth2Client and OAuth2Decorator. |
| 114 | - Handle reasons that are None. |
| 115 | - Added support for NDB based storing of oauth2client objects. |
| 116 | - Update grant_type for AssertionCredentials. |
| 117 | - Adding a .revoke() to Credentials. Closes issue 98. |
| 118 | - Modify oauth2client.multistore_file to store and retrieve credentials |
| 119 | using an arbitrary key. |
| 120 | - Don't accept 403 challenges by default for auth challenges. |
| 121 | - Set httplib2.RETRIES to 1. |
| 122 | - Consolidate handling of scopes. |
| 123 | - Upgrade to httplib2 version 0.8. |
| 124 | - Allow setting the response_type in OAuth2WebServerFlow. |
| 125 | - Ensure that dataWrapper feature is checked before using the 'data' value. |
| 126 | - HMAC verification does not use a constant time algorithm. |
| 127 | |
Joe Gregorio | f4839b0 | 2012-09-06 13:47:24 -0400 | [diff] [blame] | 128 | v1.0 |
| 129 | Version 1.0 |
| 130 | |
| 131 | - Changes to the code for running tests and building releases. |
| 132 | |
Joe Gregorio | 73774c5 | 2012-08-29 09:45:53 -0400 | [diff] [blame] | 133 | v1.0c3 |
| 134 | Version 1.0 Release Candidate 3 |
| 135 | |
| 136 | - In samples and oauth2 decorator, escape untrusted content before displaying it. |
| 137 | - Do not allow credentials files to be symlinks. |
| 138 | - Add XSRF protection to oauth2decorator callback 'state'. |
| 139 | - Handle uploading chunked media by stream. |
| 140 | - Handle passing streams directly to httplib2. |
| 141 | - Add support for Google Compute Engine service accounts. |
| 142 | - Flows no longer need to be saved between uses. |
| 143 | - Change GET to POST if URI is too long. Fixes issue #96. |
| 144 | - Add a keyring based Storage. |
| 145 | - More robust picking up JSON error responses. |
| 146 | - Make batch errors align with normal errors. |
| 147 | - Add a Google Compute sample. |
| 148 | - Token refresh to work with 'old' GData API |
| 149 | - Loading of client_secrets JSON file backed by a cache. |
| 150 | - Switch to new discovery path parameters. |
| 151 | - Add support for additionalProperties when printing schema'd objects. |
| 152 | - Fix media upload parameter names. Reviewed in http://codereview.appspot.com/6374062/ |
| 153 | - oauth2client support for URL-encoded format of exchange token response (e.g. Facebook) |
| 154 | - Build cleaner and easier to read docs for dynamic surfaces. |
| 155 | |
Joe Gregorio | bf14cef | 2012-06-22 15:26:16 -0400 | [diff] [blame] | 156 | v1.0c2 |
| 157 | Version 1.0 Release Candidate 2 |
| 158 | |
| 159 | - Parameter values of None should be treated as missing. Fixes issue #144. |
| 160 | - Distribute the samples separately from the library source. Fixes issue #155. |
| 161 | - Move all remaining samples over to client_secrets.json. Fixes issue #156. |
| 162 | - Make locked_file.py understand win32file primitives for better awesomeness. |
| 163 | |
Joe Gregorio | 1aaec4b | 2012-06-15 16:20:41 -0400 | [diff] [blame] | 164 | v1.0c1 |
| 165 | Version 1.0 Release Candidate 1 |
| 166 | |
Joe Gregorio | 638663c | 2012-06-15 14:40:47 -0400 | [diff] [blame] | 167 | - Documentation for the library has switched to epydoc: |
| 168 | http://google-api-python-client.googlecode.com/hg/docs/epy/index.html |
| 169 | - Many improvements for media support: |
| 170 | * Added media download support, including resumable downloads. |
| 171 | * Better handling of streams that report their size as 0. |
| 172 | * Update Media Upload to include io.Base and also fix some bugs. |
| 173 | - OAuth bug fixes and improvements. |
| 174 | * Remove OAuth 1.0 support. |
| 175 | * Added credentials_from_code and credentials_from_clientsecrets_and_code. |
| 176 | * Make oauth2client support Windows-friendly locking. |
| 177 | * Fix bug in StorageByKeyName. |
| 178 | * Fix None handling in Django fields. Reviewed in http://codereview.appspot.com/6298084/. Fixes issue #128. |
| 179 | - Add epydoc generated docs. Reviewed in http://codereview.appspot.com/6305043/ |
| 180 | - Move to PEP386 compliant version numbers. |
| 181 | - New and updated samples |
| 182 | * Ad Exchange Buyer API v1 code samples. |
| 183 | * Automatically generate Samples wiki page from README files. |
| 184 | * Update Google Prediction samples. |
| 185 | * Add a Tasks sample that demonstrates Service accounts. |
| 186 | * new analytics api samples. Reviewed here: http://codereview.appspot.com/5494058/ |
| 187 | - Convert all inline samples to the Farm API for consistency. |
| 188 | |
Joe Gregorio | d02bf5e | 2012-03-02 13:21:32 -0800 | [diff] [blame] | 189 | v1.0beta8 |
| 190 | - Updated meda upload support. |
| 191 | - Many fixes for batch requests. |
| 192 | - Better handling for requests that don't require a body. |
| 193 | - Fix issues with Google App Engine Python 2.7 runtime. |
| 194 | - Better support for proxies. |
| 195 | - All Storages now have a .delete() method. |
| 196 | - Important changes which might break your code: |
| 197 | * apiclient.anyjson has moved to oauth2client.anyjson. |
| 198 | * Some calls, for example, taskqueue().lease() used to require a parameter |
| 199 | named body. In this new release only methods that really need to send a body |
| 200 | require a body parameter, and so you may get errors about an unknown |
| 201 | 'body' parameter in your call. The solution is to remove the unneeded |
| 202 | body={} parameter. |
| 203 | |
Joe Gregorio | 205a061 | 2011-12-14 11:38:16 -0500 | [diff] [blame] | 204 | v1.0beta7 |
| 205 | - Support for batch requests. http://code.google.com/p/google-api-python-client/wiki/Batch |
| 206 | - Support for media upload. http://code.google.com/p/google-api-python-client/wiki/MediaUpload |
| 207 | - Better handling for APIs that return something other than JSON. |
| 208 | - Major cleanup and consolidation of the samples. |
| 209 | - Bug fixes and other enhancements: |
| 210 | 72 Defect Appengine OAuth2Decorator: Convert redirect address to string |
| 211 | 22 Defect Better error handling for unknown service name or version |
| 212 | 48 Defect StorageByKeyName().get() has side effects |
| 213 | 50 Defect Need sample client code for Admin Audit API |
| 214 | 28 Defect better comments for app engine sample Nov 9 |
| 215 | 63 Enhancement Let OAuth2Decorator take a list of scope |