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