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