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