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