Joe Gregorio | d02bf5e | 2012-03-02 13:21:32 -0800 | [diff] [blame^] | 1 | v1.0beta8 |
| 2 | - Updated meda upload support. |
| 3 | - Many fixes for batch requests. |
| 4 | - Better handling for requests that don't require a body. |
| 5 | - Fix issues with Google App Engine Python 2.7 runtime. |
| 6 | - Better support for proxies. |
| 7 | - All Storages now have a .delete() method. |
| 8 | - Important changes which might break your code: |
| 9 | * apiclient.anyjson has moved to oauth2client.anyjson. |
| 10 | * Some calls, for example, taskqueue().lease() used to require a parameter |
| 11 | named body. In this new release only methods that really need to send a body |
| 12 | require a body parameter, and so you may get errors about an unknown |
| 13 | 'body' parameter in your call. The solution is to remove the unneeded |
| 14 | body={} parameter. |
| 15 | |
Joe Gregorio | 205a061 | 2011-12-14 11:38:16 -0500 | [diff] [blame] | 16 | v1.0beta7 |
| 17 | - Support for batch requests. http://code.google.com/p/google-api-python-client/wiki/Batch |
| 18 | - Support for media upload. http://code.google.com/p/google-api-python-client/wiki/MediaUpload |
| 19 | - Better handling for APIs that return something other than JSON. |
| 20 | - Major cleanup and consolidation of the samples. |
| 21 | - Bug fixes and other enhancements: |
| 22 | 72 Defect Appengine OAuth2Decorator: Convert redirect address to string |
| 23 | 22 Defect Better error handling for unknown service name or version |
| 24 | 48 Defect StorageByKeyName().get() has side effects |
| 25 | 50 Defect Need sample client code for Admin Audit API |
| 26 | 28 Defect better comments for app engine sample Nov 9 |
| 27 | 63 Enhancement Let OAuth2Decorator take a list of scope |