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