Joe Gregorio | bf14cef | 2012-06-22 15:26:16 -0400 | [diff] [blame^] | 1 | v1.0c2 |
| 2 | Version 1.0 Release Candidate 2 |
| 3 | |
| 4 | - Parameter values of None should be treated as missing. Fixes issue #144. |
| 5 | - Distribute the samples separately from the library source. Fixes issue #155. |
| 6 | - Move all remaining samples over to client_secrets.json. Fixes issue #156. |
| 7 | - Make locked_file.py understand win32file primitives for better awesomeness. |
| 8 | |
Joe Gregorio | 1aaec4b | 2012-06-15 16:20:41 -0400 | [diff] [blame] | 9 | v1.0c1 |
| 10 | Version 1.0 Release Candidate 1 |
| 11 | |
Joe Gregorio | 638663c | 2012-06-15 14:40:47 -0400 | [diff] [blame] | 12 | - Documentation for the library has switched to epydoc: |
| 13 | http://google-api-python-client.googlecode.com/hg/docs/epy/index.html |
| 14 | - Many improvements for media support: |
| 15 | * Added media download support, including resumable downloads. |
| 16 | * Better handling of streams that report their size as 0. |
| 17 | * Update Media Upload to include io.Base and also fix some bugs. |
| 18 | - OAuth bug fixes and improvements. |
| 19 | * Remove OAuth 1.0 support. |
| 20 | * Added credentials_from_code and credentials_from_clientsecrets_and_code. |
| 21 | * Make oauth2client support Windows-friendly locking. |
| 22 | * Fix bug in StorageByKeyName. |
| 23 | * Fix None handling in Django fields. Reviewed in http://codereview.appspot.com/6298084/. Fixes issue #128. |
| 24 | - Add epydoc generated docs. Reviewed in http://codereview.appspot.com/6305043/ |
| 25 | - Move to PEP386 compliant version numbers. |
| 26 | - New and updated samples |
| 27 | * Ad Exchange Buyer API v1 code samples. |
| 28 | * Automatically generate Samples wiki page from README files. |
| 29 | * Update Google Prediction samples. |
| 30 | * Add a Tasks sample that demonstrates Service accounts. |
| 31 | * new analytics api samples. Reviewed here: http://codereview.appspot.com/5494058/ |
| 32 | - Convert all inline samples to the Farm API for consistency. |
| 33 | |
Joe Gregorio | d02bf5e | 2012-03-02 13:21:32 -0800 | [diff] [blame] | 34 | v1.0beta8 |
| 35 | - Updated meda upload support. |
| 36 | - Many fixes for batch requests. |
| 37 | - Better handling for requests that don't require a body. |
| 38 | - Fix issues with Google App Engine Python 2.7 runtime. |
| 39 | - Better support for proxies. |
| 40 | - All Storages now have a .delete() method. |
| 41 | - Important changes which might break your code: |
| 42 | * apiclient.anyjson has moved to oauth2client.anyjson. |
| 43 | * Some calls, for example, taskqueue().lease() used to require a parameter |
| 44 | named body. In this new release only methods that really need to send a body |
| 45 | require a body parameter, and so you may get errors about an unknown |
| 46 | 'body' parameter in your call. The solution is to remove the unneeded |
| 47 | body={} parameter. |
| 48 | |
Joe Gregorio | 205a061 | 2011-12-14 11:38:16 -0500 | [diff] [blame] | 49 | v1.0beta7 |
| 50 | - Support for batch requests. http://code.google.com/p/google-api-python-client/wiki/Batch |
| 51 | - Support for media upload. http://code.google.com/p/google-api-python-client/wiki/MediaUpload |
| 52 | - Better handling for APIs that return something other than JSON. |
| 53 | - Major cleanup and consolidation of the samples. |
| 54 | - Bug fixes and other enhancements: |
| 55 | 72 Defect Appengine OAuth2Decorator: Convert redirect address to string |
| 56 | 22 Defect Better error handling for unknown service name or version |
| 57 | 48 Defect StorageByKeyName().get() has side effects |
| 58 | 50 Defect Need sample client code for Admin Audit API |
| 59 | 28 Defect better comments for app engine sample Nov 9 |
| 60 | 63 Enhancement Let OAuth2Decorator take a list of scope |
Joe Gregorio | 638663c | 2012-06-15 14:40:47 -0400 | [diff] [blame] | 61 | |