blob: 960845db4dc6a7464201082460af9e20a09d6cec [file] [log] [blame]
Joe Gregoriobf14cef2012-06-22 15:26:16 -04001v1.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 Gregorio1aaec4b2012-06-15 16:20:41 -04009v1.0c1
10 Version 1.0 Release Candidate 1
11
Joe Gregorio638663c2012-06-15 14:40:47 -040012 - 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 Gregoriod02bf5e2012-03-02 13:21:32 -080034v1.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 Gregorio205a0612011-12-14 11:38:16 -050049v1.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 Gregorio638663c2012-06-15 14:40:47 -040061