Update changelog
[arvados.git] / CHANGELOG.md
1 # 0.7.0
2 * Remove CLI
3 * SUpport for automatic retires & backoff. Off by default, enable by setting `retries` on `APIClient`
4 * Experimental new interface (see `Google::APIClient::Service`)
5 * Fix warnings when using Faraday separately
6 * Support Google Compute Engine service accounts
7 * Enable gzip compression for responses
8 * Upgrade to Faraday 0.9.0. Resolves multiple issues with query parameter encodings.
9 * Use bundled root certificates for verifying SSL certificates
10 * Rewind media when retrying uploads
11
12 # 0.6.4
13 * Pin signet version to 0.4.x
14
15 # 0.6.3
16
17 * Update autoparse to 0.3.3 to fix cases where results aren't correctly parsed.
18 * Fix railtie loading for compatibility with rails < 3.0
19 * Fix refresh of access token when passing credentials as parameter to execute
20 * Fix URI processing in batch requests to allow query parameters
21
22 # 0.6.2
23
24 * Update signet to 0.4.6 to support server side continuation of postmessage
25   auth flows.
26
27 # 0.6.1
28
29 * Fix impersonation with service accounts
30
31 # 0.6
32
33 * Apps strongly encouraged to set :application_name & :application_version when
34   initializing a client
35 * JWT/service accounts moved to signet
36 * Added helper class for installed app OAuth flows, updated samples & CLI
37 * Initial logging support for client
38 * Fix PKCS12 loading on windows
39 * Allow disabling auto-refresh of OAuth 2 access tokens
40 * Compatibility with MultiJson >= 1.0.0 & Rails 3.2.8
41 * Fix for body serialization when body doesn't respond to to_json
42 * Remove OAuth 1.0 logins from CLI
43
44
45 # 0.5.0
46
47 * Beta candidate, potential incompatible changes with how requests are processed. 
48     * All requests should be made using execute() or execute!()
49     * :api_method in request can no longer be a string
50     * Deprecated ResumableUpload.send_* methods.
51 * Reduce memory utilization when uploading large files
52 * Automatic refresh of OAuth 2 credentials & retry of request when 401 errors
53   are returned
54 * Simplify internal request processing.
55
56 # 0.4.7
57
58 * Added the ability to convert client secrets to an authorization object
59
60 # 0.4.6
61
62 * Backwards compatibility for MultiJson
63
64 # 0.4.5
65
66 * Updated Launchy dependency
67 * Updated Faraday dependency
68 * Updated Addressable dependency
69 * Updated Autoparse dependency
70 * Removed Sinatra development dependency
71
72 # 0.4.4
73
74 * Added batch execution
75 * Added service accounts
76 * Can now supply authorization on a per-request basis.
77
78 # 0.4.3
79
80 * Added media upload capabilities
81 * Support serializing OAuth credentials to client_secrets.json
82 * Fixed OS name/version string on JRuby
83
84 # 0.4.2
85
86 * Fixed incompatibility with Ruby 1.8.7
87
88 # 0.4.1
89
90 * Fixed ancestor checking issue when assigning Autoparse identifiers
91 * Renamed discovery methods to avoid collisions with some APIs
92 * Updated autoparse dependency to avoid JSON bug
93
94 # 0.4.0
95
96 * Replaced httpadapter gem dependency with faraday
97 * Replaced json gem dependency with multi_json
98 * Fixed /dev/null issues on Windows
99 * Repeated parameters now work
100
101 # 0.3.0
102
103 * Updated to use v1 of the discovery API
104 * Updated to use httpadapter 1.0.0
105 * Added OAuth 2 support to the command line tool
106 * Renamed some switches in the command line tool
107 * Added additional configuration capabilities
108 * Fixed a few deprecation warnings from dependencies
109 * Added gemspec to source control
110
111 # 0.2.0
112
113 * Updated to use v1 of the discovery API
114 * Updated to use httpadapter 1.0.0
115 * Added OAuth 2 support to the command line tool
116 * Renamed some switches in the command line tool
117 * Added additional configuration capabilities
118
119 # 0.1.3
120
121 * Added support for manual overrides of the discovery URI
122 * Added support for manual overrides of the API base
123 * Added support for xoauth_requestor_id
124
125 # 0.1.2
126
127 * Added support for two-legged OAuth
128 * Moved some development dependencies into runtime
129
130 # 0.1.1
131
132 * Substantial improvements to the command line interface
133
134 # 0.1.0
135
136 * Initial release