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