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