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