Joe Gregorio | 73774c5 | 2012-08-29 09:45:53 -0400 | [diff] [blame] | 1 | v1.0c3 |
| 2 | Version 1.0 Release Candidate 3 |
| 3 | |
| 4 | - In samples and oauth2 decorator, escape untrusted content before displaying it. |
| 5 | - Do not allow credentials files to be symlinks. |
| 6 | - Add XSRF protection to oauth2decorator callback 'state'. |
| 7 | - Handle uploading chunked media by stream. |
| 8 | - Handle passing streams directly to httplib2. |
| 9 | - Add support for Google Compute Engine service accounts. |
| 10 | - Flows no longer need to be saved between uses. |
| 11 | - Change GET to POST if URI is too long. Fixes issue #96. |
| 12 | - Add a keyring based Storage. |
| 13 | - More robust picking up JSON error responses. |
| 14 | - Make batch errors align with normal errors. |
| 15 | - Add a Google Compute sample. |
| 16 | - Token refresh to work with 'old' GData API |
| 17 | - Loading of client_secrets JSON file backed by a cache. |
| 18 | - Switch to new discovery path parameters. |
| 19 | - Add support for additionalProperties when printing schema'd objects. |
| 20 | - Fix media upload parameter names. Reviewed in http://codereview.appspot.com/6374062/ |
| 21 | - oauth2client support for URL-encoded format of exchange token response (e.g. Facebook) |
| 22 | - Build cleaner and easier to read docs for dynamic surfaces. |
| 23 | |
Joe Gregorio | bf14cef | 2012-06-22 15:26:16 -0400 | [diff] [blame] | 24 | v1.0c2 |
| 25 | Version 1.0 Release Candidate 2 |
| 26 | |
| 27 | - Parameter values of None should be treated as missing. Fixes issue #144. |
| 28 | - Distribute the samples separately from the library source. Fixes issue #155. |
| 29 | - Move all remaining samples over to client_secrets.json. Fixes issue #156. |
| 30 | - Make locked_file.py understand win32file primitives for better awesomeness. |
| 31 | |
Joe Gregorio | 1aaec4b | 2012-06-15 16:20:41 -0400 | [diff] [blame] | 32 | v1.0c1 |
| 33 | Version 1.0 Release Candidate 1 |
| 34 | |
Joe Gregorio | 638663c | 2012-06-15 14:40:47 -0400 | [diff] [blame] | 35 | - Documentation for the library has switched to epydoc: |
| 36 | http://google-api-python-client.googlecode.com/hg/docs/epy/index.html |
| 37 | - Many improvements for media support: |
| 38 | * Added media download support, including resumable downloads. |
| 39 | * Better handling of streams that report their size as 0. |
| 40 | * Update Media Upload to include io.Base and also fix some bugs. |
| 41 | - OAuth bug fixes and improvements. |
| 42 | * Remove OAuth 1.0 support. |
| 43 | * Added credentials_from_code and credentials_from_clientsecrets_and_code. |
| 44 | * Make oauth2client support Windows-friendly locking. |
| 45 | * Fix bug in StorageByKeyName. |
| 46 | * Fix None handling in Django fields. Reviewed in http://codereview.appspot.com/6298084/. Fixes issue #128. |
| 47 | - Add epydoc generated docs. Reviewed in http://codereview.appspot.com/6305043/ |
| 48 | - Move to PEP386 compliant version numbers. |
| 49 | - New and updated samples |
| 50 | * Ad Exchange Buyer API v1 code samples. |
| 51 | * Automatically generate Samples wiki page from README files. |
| 52 | * Update Google Prediction samples. |
| 53 | * Add a Tasks sample that demonstrates Service accounts. |
| 54 | * new analytics api samples. Reviewed here: http://codereview.appspot.com/5494058/ |
| 55 | - Convert all inline samples to the Farm API for consistency. |
| 56 | |
Joe Gregorio | d02bf5e | 2012-03-02 13:21:32 -0800 | [diff] [blame] | 57 | v1.0beta8 |
| 58 | - Updated meda upload support. |
| 59 | - Many fixes for batch requests. |
| 60 | - Better handling for requests that don't require a body. |
| 61 | - Fix issues with Google App Engine Python 2.7 runtime. |
| 62 | - Better support for proxies. |
| 63 | - All Storages now have a .delete() method. |
| 64 | - Important changes which might break your code: |
| 65 | * apiclient.anyjson has moved to oauth2client.anyjson. |
| 66 | * Some calls, for example, taskqueue().lease() used to require a parameter |
| 67 | named body. In this new release only methods that really need to send a body |
| 68 | require a body parameter, and so you may get errors about an unknown |
| 69 | 'body' parameter in your call. The solution is to remove the unneeded |
| 70 | body={} parameter. |
| 71 | |
Joe Gregorio | 205a061 | 2011-12-14 11:38:16 -0500 | [diff] [blame] | 72 | v1.0beta7 |
| 73 | - Support for batch requests. http://code.google.com/p/google-api-python-client/wiki/Batch |
| 74 | - Support for media upload. http://code.google.com/p/google-api-python-client/wiki/MediaUpload |
| 75 | - Better handling for APIs that return something other than JSON. |
| 76 | - Major cleanup and consolidation of the samples. |
| 77 | - Bug fixes and other enhancements: |
| 78 | 72 Defect Appengine OAuth2Decorator: Convert redirect address to string |
| 79 | 22 Defect Better error handling for unknown service name or version |
| 80 | 48 Defect StorageByKeyName().get() has side effects |
| 81 | 50 Defect Need sample client code for Admin Audit API |
| 82 | 28 Defect better comments for app engine sample Nov 9 |
| 83 | 63 Enhancement Let OAuth2Decorator take a list of scope |
Joe Gregorio | 638663c | 2012-06-15 14:40:47 -0400 | [diff] [blame] | 84 | |