blob: f93c597761c2ce93f921b0a376f4610d5f90ea65 [file] [log] [blame]
Joe Gregoriof4839b02012-09-06 13:47:24 -04001v1.0
2 Version 1.0
3
4 - Changes to the code for running tests and building releases.
5
Joe Gregorio73774c52012-08-29 09:45:53 -04006v1.0c3
7 Version 1.0 Release Candidate 3
8
9 - In samples and oauth2 decorator, escape untrusted content before displaying it.
10 - Do not allow credentials files to be symlinks.
11 - Add XSRF protection to oauth2decorator callback 'state'.
12 - Handle uploading chunked media by stream.
13 - Handle passing streams directly to httplib2.
14 - Add support for Google Compute Engine service accounts.
15 - Flows no longer need to be saved between uses.
16 - Change GET to POST if URI is too long. Fixes issue #96.
17 - Add a keyring based Storage.
18 - More robust picking up JSON error responses.
19 - Make batch errors align with normal errors.
20 - Add a Google Compute sample.
21 - Token refresh to work with 'old' GData API
22 - Loading of client_secrets JSON file backed by a cache.
23 - Switch to new discovery path parameters.
24 - Add support for additionalProperties when printing schema'd objects.
25 - Fix media upload parameter names. Reviewed in http://codereview.appspot.com/6374062/
26 - oauth2client support for URL-encoded format of exchange token response (e.g. Facebook)
27 - Build cleaner and easier to read docs for dynamic surfaces.
28
Joe Gregoriobf14cef2012-06-22 15:26:16 -040029v1.0c2
30 Version 1.0 Release Candidate 2
31
32 - Parameter values of None should be treated as missing. Fixes issue #144.
33 - Distribute the samples separately from the library source. Fixes issue #155.
34 - Move all remaining samples over to client_secrets.json. Fixes issue #156.
35 - Make locked_file.py understand win32file primitives for better awesomeness.
36
Joe Gregorio1aaec4b2012-06-15 16:20:41 -040037v1.0c1
38 Version 1.0 Release Candidate 1
39
Joe Gregorio638663c2012-06-15 14:40:47 -040040 - Documentation for the library has switched to epydoc:
41 http://google-api-python-client.googlecode.com/hg/docs/epy/index.html
42 - Many improvements for media support:
43 * Added media download support, including resumable downloads.
44 * Better handling of streams that report their size as 0.
45 * Update Media Upload to include io.Base and also fix some bugs.
46 - OAuth bug fixes and improvements.
47 * Remove OAuth 1.0 support.
48 * Added credentials_from_code and credentials_from_clientsecrets_and_code.
49 * Make oauth2client support Windows-friendly locking.
50 * Fix bug in StorageByKeyName.
51 * Fix None handling in Django fields. Reviewed in http://codereview.appspot.com/6298084/. Fixes issue #128.
52 - Add epydoc generated docs. Reviewed in http://codereview.appspot.com/6305043/
53 - Move to PEP386 compliant version numbers.
54 - New and updated samples
55 * Ad Exchange Buyer API v1 code samples.
56 * Automatically generate Samples wiki page from README files.
57 * Update Google Prediction samples.
58 * Add a Tasks sample that demonstrates Service accounts.
59 * new analytics api samples. Reviewed here: http://codereview.appspot.com/5494058/
60 - Convert all inline samples to the Farm API for consistency.
61
Joe Gregoriod02bf5e2012-03-02 13:21:32 -080062v1.0beta8
63 - Updated meda upload support.
64 - Many fixes for batch requests.
65 - Better handling for requests that don't require a body.
66 - Fix issues with Google App Engine Python 2.7 runtime.
67 - Better support for proxies.
68 - All Storages now have a .delete() method.
69 - Important changes which might break your code:
70 * apiclient.anyjson has moved to oauth2client.anyjson.
71 * Some calls, for example, taskqueue().lease() used to require a parameter
72 named body. In this new release only methods that really need to send a body
73 require a body parameter, and so you may get errors about an unknown
74 'body' parameter in your call. The solution is to remove the unneeded
75 body={} parameter.
76
Joe Gregorio205a0612011-12-14 11:38:16 -050077v1.0beta7
78 - Support for batch requests. http://code.google.com/p/google-api-python-client/wiki/Batch
79 - Support for media upload. http://code.google.com/p/google-api-python-client/wiki/MediaUpload
80 - Better handling for APIs that return something other than JSON.
81 - Major cleanup and consolidation of the samples.
82 - Bug fixes and other enhancements:
83 72 Defect Appengine OAuth2Decorator: Convert redirect address to string
84 22 Defect Better error handling for unknown service name or version
85 48 Defect StorageByKeyName().get() has side effects
86 50 Defect Need sample client code for Admin Audit API
87 28 Defect better comments for app engine sample Nov 9
88 63 Enhancement Let OAuth2Decorator take a list of scope
Joe Gregorio638663c2012-06-15 14:40:47 -040089