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