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