aws-sdk-core 3.54.2 → 3.126.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (206) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1247 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -1
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +92 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +2 -0
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +104 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +4 -2
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +2 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +2 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +8 -6
  16. data/lib/aws-sdk-core/binary/event_parser.rb +5 -3
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +2 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +2 -0
  19. data/lib/aws-sdk-core/binary.rb +2 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +11 -1
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +2 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +15 -12
  23. data/lib/aws-sdk-core/credential_provider.rb +1 -30
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +102 -40
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +237 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +5 -4
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/errors.rb +102 -15
  32. data/lib/aws-sdk-core/event_emitter.rb +2 -0
  33. data/lib/aws-sdk-core/ini_parser.rb +2 -0
  34. data/lib/aws-sdk-core/instance_profile_credentials.rb +153 -39
  35. data/lib/aws-sdk-core/json/builder.rb +2 -0
  36. data/lib/aws-sdk-core/json/error_handler.rb +2 -0
  37. data/lib/aws-sdk-core/json/handler.rb +2 -0
  38. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  39. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  40. data/lib/aws-sdk-core/json/parser.rb +10 -0
  41. data/lib/aws-sdk-core/json.rb +11 -28
  42. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  43. data/lib/aws-sdk-core/log/handler.rb +2 -0
  44. data/lib/aws-sdk-core/log/param_filter.rb +38 -13
  45. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  46. data/lib/aws-sdk-core/pageable_response.rb +48 -24
  47. data/lib/aws-sdk-core/pager.rb +5 -0
  48. data/lib/aws-sdk-core/param_converter.rb +2 -0
  49. data/lib/aws-sdk-core/param_validator.rb +55 -7
  50. data/lib/aws-sdk-core/plugins/api_key.rb +5 -1
  51. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +2 -0
  52. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +2 -0
  53. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +2 -0
  54. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +28 -1
  55. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +2 -0
  56. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +26 -7
  57. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  58. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +12 -4
  59. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +8 -6
  60. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +2 -0
  61. data/lib/aws-sdk-core/plugins/global_configuration.rb +2 -0
  62. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  63. data/lib/aws-sdk-core/plugins/http_checksum.rb +57 -0
  64. data/lib/aws-sdk-core/plugins/idempotency_token.rb +2 -0
  65. data/lib/aws-sdk-core/plugins/invocation_id.rb +2 -0
  66. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +2 -0
  67. data/lib/aws-sdk-core/plugins/logging.rb +2 -0
  68. data/lib/aws-sdk-core/plugins/param_converter.rb +2 -0
  69. data/lib/aws-sdk-core/plugins/param_validator.rb +2 -0
  70. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +19 -0
  71. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -0
  72. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +2 -0
  73. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -0
  74. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  75. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  76. data/lib/aws-sdk-core/plugins/recursion_detection.rb +27 -0
  77. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +74 -16
  78. data/lib/aws-sdk-core/plugins/response_paging.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  80. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  81. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +146 -0
  82. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  83. data/lib/aws-sdk-core/plugins/retry_errors.rb +295 -108
  84. data/lib/aws-sdk-core/plugins/signature_v2.rb +2 -0
  85. data/lib/aws-sdk-core/plugins/signature_v4.rb +28 -25
  86. data/lib/aws-sdk-core/plugins/stub_responses.rb +5 -0
  87. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +4 -4
  88. data/lib/aws-sdk-core/plugins/user_agent.rb +6 -8
  89. data/lib/aws-sdk-core/process_credentials.rb +8 -7
  90. data/lib/aws-sdk-core/query/ec2_param_builder.rb +2 -0
  91. data/lib/aws-sdk-core/query/handler.rb +2 -0
  92. data/lib/aws-sdk-core/query/param.rb +2 -0
  93. data/lib/aws-sdk-core/query/param_builder.rb +2 -0
  94. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  95. data/lib/aws-sdk-core/query.rb +2 -0
  96. data/lib/aws-sdk-core/refreshing_credentials.rb +2 -0
  97. data/lib/aws-sdk-core/resources/collection.rb +2 -0
  98. data/lib/aws-sdk-core/rest/handler.rb +2 -0
  99. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  100. data/lib/aws-sdk-core/rest/request/builder.rb +2 -0
  101. data/lib/aws-sdk-core/rest/request/endpoint.rb +10 -3
  102. data/lib/aws-sdk-core/rest/request/headers.rb +20 -6
  103. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +4 -2
  104. data/lib/aws-sdk-core/rest/response/body.rb +2 -0
  105. data/lib/aws-sdk-core/rest/response/headers.rb +6 -3
  106. data/lib/aws-sdk-core/rest/response/parser.rb +2 -0
  107. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  108. data/lib/aws-sdk-core/rest.rb +2 -0
  109. data/lib/aws-sdk-core/shared_config.rb +153 -122
  110. data/lib/aws-sdk-core/shared_credentials.rb +9 -1
  111. data/lib/aws-sdk-core/sso_credentials.rb +131 -0
  112. data/lib/aws-sdk-core/structure.rb +13 -2
  113. data/lib/aws-sdk-core/stubbing/data_applicator.rb +2 -0
  114. data/lib/aws-sdk-core/stubbing/empty_stub.rb +2 -0
  115. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +2 -0
  116. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +2 -0
  117. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  118. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  119. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +33 -7
  120. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +3 -1
  121. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +2 -2
  122. data/lib/aws-sdk-core/stubbing/stub_data.rb +2 -0
  123. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  124. data/lib/aws-sdk-core/type_builder.rb +2 -0
  125. data/lib/aws-sdk-core/util.rb +6 -0
  126. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  127. data/lib/aws-sdk-core/waiters/poller.rb +2 -0
  128. data/lib/aws-sdk-core/waiters/waiter.rb +2 -0
  129. data/lib/aws-sdk-core/waiters.rb +2 -0
  130. data/lib/aws-sdk-core/xml/builder.rb +5 -3
  131. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  132. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  133. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  134. data/lib/aws-sdk-core/xml/error_handler.rb +3 -1
  135. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  136. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  137. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  138. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  139. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  140. data/lib/aws-sdk-core/xml/parser/frame.rb +25 -0
  141. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  142. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  143. data/lib/aws-sdk-core/xml/parser.rb +7 -0
  144. data/lib/aws-sdk-core/xml.rb +2 -0
  145. data/lib/aws-sdk-core.rb +22 -4
  146. data/lib/aws-sdk-sso/client.rb +568 -0
  147. data/lib/aws-sdk-sso/client_api.rb +190 -0
  148. data/lib/aws-sdk-sso/customizations.rb +1 -0
  149. data/lib/aws-sdk-sso/errors.rb +102 -0
  150. data/lib/aws-sdk-sso/resource.rb +26 -0
  151. data/lib/aws-sdk-sso/types.rb +352 -0
  152. data/lib/aws-sdk-sso.rb +55 -0
  153. data/lib/aws-sdk-sts/client.rb +970 -414
  154. data/lib/aws-sdk-sts/client_api.rb +41 -1
  155. data/lib/aws-sdk-sts/customizations.rb +4 -0
  156. data/lib/aws-sdk-sts/errors.rb +33 -9
  157. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  158. data/lib/aws-sdk-sts/presigner.rb +75 -0
  159. data/lib/aws-sdk-sts/resource.rb +4 -1
  160. data/lib/aws-sdk-sts/types.rb +632 -236
  161. data/lib/aws-sdk-sts.rb +16 -6
  162. data/lib/seahorse/client/async_base.rb +2 -0
  163. data/lib/seahorse/client/async_response.rb +2 -0
  164. data/lib/seahorse/client/base.rb +6 -1
  165. data/lib/seahorse/client/block_io.rb +6 -2
  166. data/lib/seahorse/client/configuration.rb +6 -0
  167. data/lib/seahorse/client/events.rb +2 -0
  168. data/lib/seahorse/client/h2/connection.rb +31 -25
  169. data/lib/seahorse/client/h2/handler.rb +6 -5
  170. data/lib/seahorse/client/handler.rb +2 -0
  171. data/lib/seahorse/client/handler_builder.rb +2 -0
  172. data/lib/seahorse/client/handler_list.rb +2 -0
  173. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  174. data/lib/seahorse/client/http/async_response.rb +2 -0
  175. data/lib/seahorse/client/http/headers.rb +2 -0
  176. data/lib/seahorse/client/http/request.rb +5 -3
  177. data/lib/seahorse/client/http/response.rb +5 -3
  178. data/lib/seahorse/client/logging/formatter.rb +6 -2
  179. data/lib/seahorse/client/logging/handler.rb +2 -0
  180. data/lib/seahorse/client/managed_file.rb +2 -0
  181. data/lib/seahorse/client/net_http/connection_pool.rb +30 -23
  182. data/lib/seahorse/client/net_http/handler.rb +24 -7
  183. data/lib/seahorse/client/net_http/patches.rb +15 -84
  184. data/lib/seahorse/client/networking_error.rb +2 -0
  185. data/lib/seahorse/client/plugin.rb +9 -6
  186. data/lib/seahorse/client/plugin_list.rb +2 -0
  187. data/lib/seahorse/client/plugins/content_length.rb +13 -7
  188. data/lib/seahorse/client/plugins/endpoint.rb +4 -2
  189. data/lib/seahorse/client/plugins/h2.rb +6 -1
  190. data/lib/seahorse/client/plugins/logging.rb +2 -0
  191. data/lib/seahorse/client/plugins/net_http.rb +39 -3
  192. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  193. data/lib/seahorse/client/plugins/raise_response_errors.rb +2 -0
  194. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  195. data/lib/seahorse/client/plugins/response_target.rb +23 -14
  196. data/lib/seahorse/client/request.rb +2 -0
  197. data/lib/seahorse/client/request_context.rb +2 -0
  198. data/lib/seahorse/client/response.rb +5 -5
  199. data/lib/seahorse/model/api.rb +6 -0
  200. data/lib/seahorse/model/authorizer.rb +2 -0
  201. data/lib/seahorse/model/operation.rb +5 -0
  202. data/lib/seahorse/model/shapes.rb +27 -0
  203. data/lib/seahorse/util.rb +8 -1
  204. data/lib/seahorse/version.rb +2 -0
  205. data/lib/seahorse.rb +3 -0
  206. metadata +43 -11
data/CHANGELOG.md ADDED
@@ -0,0 +1,1247 @@
1
+ Unreleased Changes
2
+ ------------------
3
+
4
+ 3.126.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
8
+
9
+ * Feature - Add support for recursion detection.
10
+
11
+ 3.125.6 (2022-02-02)
12
+ ------------------
13
+
14
+ * Issue - Ensure default message for ServiceError is a string (#2643).
15
+
16
+ 3.125.5 (2022-01-19)
17
+ ------------------
18
+
19
+ * Issue - Correctly serialize empty header lists.
20
+
21
+ 3.125.4 (2022-01-18)
22
+ ------------------
23
+
24
+ * Issue - Add `InternalError` to `ErrorInspector` for S3 errors.
25
+
26
+
27
+ 3.125.3 (2022-01-12)
28
+ ------------------
29
+
30
+ * Issue - Add `ExpiredTokenException` to `ErrorInspector` for Kinesis errors.
31
+
32
+ 3.125.2 (2022-01-10)
33
+ ------------------
34
+
35
+ * Issue - Correctly serialize lists of strings in headers with quotes and commas.
36
+
37
+ 3.125.1 (2022-01-04)
38
+ ------------------
39
+
40
+ * Issue - Parse a response with consecutive spaces correctly when ox is used as the XML parser.
41
+
42
+ 3.125.0 (2021-12-21)
43
+ ------------------
44
+
45
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
46
+
47
+ * Feature - Add `:defaults_mode` configuration - that determines how certain default configuration options are resolved in the SDK.
48
+
49
+ 3.124.0 (2021-11-30)
50
+ ------------------
51
+
52
+ * Feature - Updated Aws::STS::Client with the latest API changes.
53
+
54
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
55
+
56
+ 3.123.0 (2021-11-23)
57
+ ------------------
58
+
59
+ * Feature - Updated Aws::STS::Client with the latest API changes.
60
+
61
+ 3.122.1 (2021-11-09)
62
+ ------------------
63
+
64
+ * Issue - Correctly serialize/deserialize header lists.
65
+
66
+ 3.122.0 (2021-11-04)
67
+ ------------------
68
+
69
+ * Feature - Updated Aws::STS::Client with the latest API changes.
70
+
71
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
72
+
73
+ * Issue - Fix parsing of ISO8601 timestamps with millisecond precision in headers.
74
+
75
+ * Feature - Support modeled dualstack endpoints. It can be configured with shared configuration (`use_dualstack_endpoint`), an ENV variable (`AWS_USE_DUALSTACK_ENDPOINT`), and a constructor option (`:use_dualstack_endpoint`). Requests made to services without a dualstack endpoint will fail.
76
+
77
+ * Feature - Support modeled fips endpoints. It can be configured with shared configuration (`use_fips_endpoint`), an ENV variable (`AWS_USE_FIPS_ENDPOINT`), and a constructor option (`:use_fips_endpoint`). Requests made to services without a fips endpoint will fail.
78
+
79
+ 3.121.6 (2021-11-02)
80
+ ------------------
81
+
82
+ * Issue - Improve `SSOCredentials` error handling when profile file does not exist (#2605)
83
+
84
+ 3.121.5 (2021-10-29)
85
+ ------------------
86
+
87
+ * Issue - bump minimum version of `aws-partitions` (#2603).
88
+
89
+ 3.121.4 (2021-10-28)
90
+ ------------------
91
+
92
+ * Issue - This version has been yanked. (#2603).
93
+
94
+ * Issue - use the `EndpointProvider` to lookup signing region and name.
95
+
96
+ 3.121.3 (2021-10-20)
97
+ ------------------
98
+
99
+ * Issue - Use endpointPrefix when looking up the `signing_region` from the `EndpointProvider`.
100
+
101
+ 3.121.2 (2021-10-18)
102
+ ------------------
103
+
104
+ * Issue - Fix an issue where Rest JSON services do not have a `Content-Type` header.
105
+
106
+ * Issue - Remove blank `Content-Type` header from Net::HTTP handler, and prevent a default from being set.
107
+
108
+ * Issue - Set `Content-Length` only for HTTP methods that take a body.
109
+
110
+ 3.121.1 (2021-09-24)
111
+ ------------------
112
+
113
+ * Issue - Fix error in finding union member for boolean shapes with `false` values.
114
+
115
+ 3.121.0 (2021-09-02)
116
+ ------------------
117
+
118
+ * Feature - Add support for S3 Multi-region access point configuration.
119
+
120
+ 3.120.0 (2021-09-01)
121
+ ------------------
122
+
123
+ * Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 1.9, 2.0, 2.1, and 2.2.
124
+
125
+ 3.119.1 (2021-08-20)
126
+ ------------------
127
+
128
+ * Issue - Refactored `Aws::Json::Engine` to remove dead code and replaced usage of `JSON.load` with `JSON.parse`.
129
+
130
+ 3.119.0 (2021-07-30)
131
+ ------------------
132
+
133
+ * Feature - Support Document Types. Document types are used to carry open content. A document type value is serialized using the same format as its surroundings and requires no additional encoding or escaping.(#2523)
134
+
135
+ 3.118.0 (2021-07-28)
136
+ ------------------
137
+
138
+ * Feature - Add support for Tagged Unions using a "sealed" classes like approach where each union member has a corresponding subclass.
139
+
140
+ 3.117.0 (2021-07-12)
141
+ ------------------
142
+
143
+ * Feature - Support IPv6 endpoints for `Aws::InstanceProfileCredentials`. It supports two shared configuration options (`ec2_metadata_service_endpoint` & `ec2_metadata_service_endpoint_mode`), two ENV variables (`AWS_EC2_METADATA_SERVICE_ENDPOINT` & `AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE`), and two constructor options (`:endpoint` & `:endpoint_mode`).
144
+
145
+ * Feature - Support IPv6 endpoint for `Aws::EC2Metadata` client. It can be configured with `:endpoint` or `:endpoint_mode`.
146
+
147
+ 3.116.0 (2021-07-07)
148
+ ------------------
149
+
150
+ * Feature - Updated Aws::STS::Client with the latest API changes.
151
+
152
+ 3.115.0 (2021-06-23)
153
+ ------------------
154
+
155
+ * Feature - Add support for Assume Role Chaining in profiles. (#2531)
156
+ * Issue - Fixed an issue with `Seahorse::Client::H2::Connection` for non-https endpoints. (#2542)
157
+
158
+ 3.114.3 (2021-06-15)
159
+ ------------------
160
+
161
+ * Issue - Fixed an issue with `Aws::PageableResponse` where it was modifying original params hash, causing frozen hashes to fail.
162
+
163
+ 3.114.2 (2021-06-09)
164
+ ------------------
165
+
166
+ * Issue - Fixed an issue with `Aws::PageableResponse` where intentionally nil tokens were not merged into the params for the next call.
167
+
168
+ 3.114.1 (2021-06-02)
169
+ ------------------
170
+
171
+ * Issue - Change XML Builder to not indent by default
172
+
173
+ 3.114.0 (2021-04-13)
174
+ ------------------
175
+
176
+ * Feature - Updated Aws::STS::Client with the latest API changes.
177
+
178
+ 3.113.1 (2021-03-29)
179
+ ------------------
180
+
181
+ * Issue - Ensure end of line characters are correctly encoded in XML.
182
+
183
+ 3.113.0 (2021-03-10)
184
+ ------------------
185
+
186
+ * Feature - Updated Aws::STS::Client with the latest API changes.
187
+
188
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
189
+
190
+ 3.112.1 (2021-03-04)
191
+ ------------------
192
+
193
+ * Issue - Include LICENSE, CHANGELOG, and VERSION files with this gem.
194
+
195
+ 3.112.0 (2021-02-02)
196
+ ------------------
197
+
198
+ * Feature - The `hostPrefix` trait will now be applied to any customer provided `:endpoint`. This bug fix is a minor behavioral change for clients using custom endpoints for `s3control`, `iotsitewise`, and `servicediscovery`. This behavior can be disabled by configuring `:disable_host_prefix_injection` to `true`.
199
+
200
+ 3.111.2 (2021-01-19)
201
+ ------------------
202
+
203
+ * Issue - Fix a loading issue with SSO and STS gem aliases using `require_relative` instead of `require`.
204
+
205
+ 3.111.1 (2021-01-15)
206
+ ------------------
207
+
208
+ * Issue - Fix an issue with `max_attempts` validation raising incorrectly.
209
+
210
+ 3.111.0 (2021-01-11)
211
+ ------------------
212
+
213
+ * Feature - Adds an IMDSv2 client as `Aws::EC2Metadata`.
214
+
215
+ 3.110.0 (2020-12-03)
216
+ ------------------
217
+
218
+ * Feature - Updated Aws::STS::Client with the latest API changes.
219
+
220
+ * Issue - Support `aws-sdk-sts` alias gem.
221
+
222
+ * Issue - Retry when `Net:HTTPFatalError` is thrown by the `Net::HTTP` library. This can occur when proxy connections are configured. (#2439)
223
+
224
+ 3.109.3 (2020-11-17)
225
+ ------------------
226
+
227
+ * Issue - Use full namespace for SSO Client when creating `SSOCredentials`
228
+
229
+ 3.109.2 (2020-11-04)
230
+ ------------------
231
+
232
+ * Issue - Check for flattened on ref for lists when serializing.
233
+
234
+ 3.109.1 (2020-10-05)
235
+ ------------------
236
+
237
+ * Issue - For errors without a message, default to the error class. (#2388)
238
+
239
+ 3.109.0 (2020-09-30)
240
+ ------------------
241
+
242
+ * Feature - Add `Seahorse::Util.host_label?` to check strings for valid RFC-3986 host labels.
243
+ * Feature - Add `Aws::ARN#to_h`.
244
+
245
+ 3.108.0 (2020-09-25)
246
+ ------------------
247
+
248
+ * Feature - Updated Aws::STS::Client with the latest API changes.
249
+
250
+ 3.107.0 (2020-09-15)
251
+ ------------------
252
+
253
+ * Feature - Updated Aws::STS::Client with the latest API changes.
254
+
255
+ * Issue - Fix circular dependency of `aws-sdk-sso` and `aws-sdk-core` (#2405).
256
+
257
+ 3.106.0 (2020-09-14)
258
+ ------------------
259
+
260
+ * Feature - Support `AWS_CA_BUNDLE` ENV variable and `ca_bundle` shared configuration options. The `:ssl_ca_bundle` client option will override either of these options. (#1907)
261
+
262
+ 3.105.0 (2020-08-25)
263
+ ------------------
264
+
265
+ * Feature - Updated Aws::STS::Client with the latest API changes.
266
+
267
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
268
+
269
+ * Feature - Add `SSOCredentials`. Moved functionality from `aws-sdk-sso` into core.
270
+
271
+ 3.104.4 (2020-08-19)
272
+ ------------------
273
+
274
+ * Issue - Use Aws::Json for parsing instead of JSON
275
+
276
+ 3.104.3 (2020-07-23)
277
+ ------------------
278
+
279
+ * Issue - Revert duplication of params. Ensure code that relied on internal modification of parameters is not broken.
280
+
281
+ 3.104.2 (2020-07-22)
282
+ ------------------
283
+
284
+ * Issue - Validate IO like objects support read,rewind and size unless streaming. Fixes #2364
285
+
286
+ 3.104.1 (2020-07-20)
287
+ ------------------
288
+
289
+ * Issue - Duplicate params to ensure user provided params are not modified. Fixes #2366
290
+
291
+ 3.104.0 (2020-07-15)
292
+ ------------------
293
+
294
+ * Feature - Add headers to the `ResponseTarget` callback. A block passed as the response target on a streaming method will be called with the `chunk` and `headers`.
295
+ * Feature - Added the `RequestCallback` plugin which allows clients and methods to set `on_chunk_sent` to a `Proc` which will be called as each chunk of the request body is sent.
296
+
297
+ 3.103.0 (2020-07-01)
298
+ ------------------
299
+
300
+ * Feature - Updated the list of parameters to filter when logging.
301
+
302
+ 3.102.1 (2020-06-25)
303
+ ------------------
304
+
305
+ * Issue - Set the `response_target` on the context when deleting it from the parameters.
306
+
307
+ 3.102.0 (2020-06-24)
308
+ ------------------
309
+
310
+ * Feature - Updated the list of parameters to filter when logging.
311
+
312
+ 3.101.0 (2020-06-23)
313
+ ------------------
314
+
315
+ * Feature - Updated Aws::STS::Client with the latest API changes.
316
+
317
+ * Feature - Added sensitive params to request and response Types instead of just on a large list.
318
+ * Feature - Provide an option `:filter_sensitive_params` for `Aws::Log::Formatter` to allow disabling of the sensitive param filter (#2312, #2105, #2082).
319
+
320
+ 3.100.0 (2020-06-15)
321
+ ------------------
322
+
323
+ * Feature - Updated the list of parameters to filter when logging.
324
+
325
+ 3.99.2 (2020-06-12)
326
+ ------------------
327
+
328
+ * Issue - Don't retry streaming requests with blocks (#2311)
329
+
330
+ 3.99.1 (2020-06-11)
331
+ ------------------
332
+
333
+ * Issue - Republish after incorrect yank.
334
+
335
+ 3.99.0 (2020-06-10)
336
+ ------------------
337
+
338
+ * Issue - This version has been yanked. (#2327).
339
+ * Feature - Updated Aws::STS::Client with the latest API changes.
340
+
341
+ * Feature - Updated the list of parameters to filter when logging.
342
+
343
+ * Feature - Support `httpChecksumRequired` on operations that require Content MD5 validation.
344
+ * Issue - Validate `:region` as a valid DNS host label.
345
+
346
+ 3.98.0 (2020-06-05)
347
+ ------------------
348
+
349
+ * Feature - Updated the list of parameters to filter when logging.
350
+
351
+ 3.97.1 (2020-06-01)
352
+ ------------------
353
+
354
+ * Issue - Convert ENV['AWS_MAX_ATTEMPTS'] String value to Integer when set. (#2319)
355
+ * Issue - Handle unknown and unmodeled events from event streams by ignoring them and providing a new callback rather than raising an error.
356
+
357
+ 3.97.0 (2020-05-28)
358
+ ------------------
359
+ * Feature - Default endpoint_discovery to `true` for services with at least one operation that requires it.
360
+ * Feature - Updated Aws::STS::Client with the latest API changes.
361
+
362
+ 3.96.1 (2020-05-18)
363
+ ------------------
364
+
365
+ * Issue - Raise `ArgumentError` for XML services when required URI elements are not included.
366
+
367
+ 3.96.0 (2020-05-15)
368
+ ------------------
369
+
370
+ * Feature - Updated the list of parameters to filter when logging.
371
+
372
+ 3.95.0 (2020-05-07)
373
+ ------------------
374
+
375
+ * Feature - Updated Aws::STS::Client with the latest API changes.
376
+
377
+ 3.94.1 (2020-05-04)
378
+ ------------------
379
+
380
+ * Issue - When handling errors in XML responses, don't set a new error on the response if one is already set.
381
+
382
+ 3.94.0 (2020-04-08)
383
+ ------------------
384
+
385
+ * Feature - Updated the list of parameters to filter when logging.
386
+
387
+ * Issue - Update dependency on aws-eventstream
388
+
389
+ 3.93.0 (2020-04-06)
390
+ ------------------
391
+
392
+ * Feature - Updated the list of parameters to filter when logging.
393
+
394
+ 3.92.0 (2020-03-20)
395
+ ------------------
396
+
397
+ * Feature - Updated Aws::STS::Client with the latest API changes.
398
+
399
+ * Issue - Change the default of `sts_regional_endpoints` from 'legacy' to 'regional'.
400
+
401
+ 3.91.1 (2020-03-10)
402
+ ------------------
403
+
404
+ * Issue - Rescue from `JSON::ParserError` when using `Oj.mimic_JSON`. (#2247)
405
+
406
+ 3.91.0 (2020-03-09)
407
+ ------------------
408
+
409
+ * Feature - Updated Aws::STS::Client with the latest API changes.
410
+ * Feature - Add `standard` and `adaptive` retry modes.
411
+
412
+ 3.90.1 (2020-02-14)
413
+ ------------------
414
+
415
+ * Issue - Perform a case-insensitive comparison when filtering sensitive parameters from logs
416
+ * Issue - Add passthrough of region from client to STS when using `assume_role_web_identity_credentials`.
417
+
418
+ 3.90.0 (2020-02-12)
419
+ ------------------
420
+
421
+ * Issue - Updated the list of parameters to filter when logging.
422
+ * Issue - Parse all values from shared credentials file when using `Aws.shared_config`.
423
+ * Issue - Honor explicit profile in client config when credentials from AWS_ environment variables are present.
424
+ * Issue - Fixed a bug where `Transfer-Encoding` could never be set to `chunked` in streaming operations because all body objects (`String`, `StringIO`) would respond to `#size`.
425
+
426
+ 3.89.1 (2020-01-14)
427
+ ------------------
428
+
429
+ * Issue - Fix erroneously reaped sessions from `Seahorse::Client::NetHttp::ConnectionPool` due to bad `last_used` time calculation
430
+ * Issue - Use monotonic clocks when reaping sessions in `Seahorse::Client::NetHttp::ConnectionPool`
431
+ * Issue - Fix "Conn close because of keep_alive_timeout" when reusing `Seahorse::Client::NetHttp::ConnectionPool` sessions
432
+
433
+ 3.89.0 (2020-01-13)
434
+ ------------------
435
+
436
+ * Feature - Updated the list of parameters to filter when logging.
437
+
438
+ 3.88.0 (2020-01-10)
439
+ ------------------
440
+
441
+ * Feature - Updated the list of parameters to filter when logging.
442
+
443
+ 3.87.0 (2020-01-09)
444
+ ------------------
445
+
446
+ * Feature - Updated Aws::STS::Client with the latest API changes.
447
+
448
+ * Issue - Reuse connections even if `http_wire_trace` is true.
449
+
450
+ 3.86.0 (2019-12-13)
451
+ ------------------
452
+
453
+ * Feature - Updated the list of parameters to filter when logging.
454
+
455
+ 3.85.1 (2019-12-11)
456
+ ------------------
457
+
458
+ * Issue - Change default timeout to 1 and number of retries to 1 for `InstanceProfileCredentials`.
459
+
460
+ 3.85.0 (2019-12-09)
461
+ ------------------
462
+
463
+ * Feature - Add STS Presigner module with a method to generate a presigned EKS token.
464
+
465
+ * Issue - Fix issue for log formatters in clients where http_response_body does not respond to `rewind` when using a block.
466
+
467
+ 3.84.0 (2019-12-04)
468
+ ------------------
469
+
470
+ * Feature - Updated the list of parameters to filter when logging.
471
+
472
+ 3.83.0 (2019-12-03)
473
+ ------------------
474
+
475
+ * Feature - Updated the list of parameters to filter when logging.
476
+
477
+ 3.82.0 (2019-11-25)
478
+ ------------------
479
+
480
+ * Feature - Updated the list of parameters to filter when logging.
481
+
482
+ 3.81.0 (2019-11-22)
483
+ ------------------
484
+
485
+ * Feature - Updated Aws::STS::Client with the latest API changes.
486
+
487
+ 3.80.0 (2019-11-20)
488
+ ------------------
489
+
490
+ * Feature - Updated the list of parameters to filter when logging.
491
+
492
+ 3.79.0 (2019-11-19)
493
+ ------------------
494
+
495
+ * Feature - Support EC2 IMDS updates.
496
+
497
+ 3.78.0 (2019-11-15)
498
+ ------------------
499
+
500
+ * Feature - Updated the list of parameters to filter when logging.
501
+
502
+ 3.77.0 (2019-11-13)
503
+ ------------------
504
+
505
+ * Feature - Support `s3_us_east_1_regional_endpoint` from `SharedConfig`
506
+
507
+ 3.76.0 (2019-11-07)
508
+ ------------------
509
+
510
+ * Feature - Updated the list of parameters to filter when logging.
511
+
512
+ 3.75.0 (2019-11-06)
513
+ ------------------
514
+
515
+ * Feature - Remove deprecated `access_key_id`, `secret_access_key`, and `session_token` methods in credential providers.
516
+
517
+ 3.74.0 (2019-11-05)
518
+ ------------------
519
+
520
+ * Feature - Updated the list of parameters to filter when logging.
521
+
522
+ 3.73.0 (2019-11-04)
523
+ ------------------
524
+
525
+ * Feature - Updated the list of parameters to filter when logging.
526
+
527
+ 3.72.1 (2019-10-31)
528
+ ------------------
529
+
530
+ * Issue - Fix `EndpointCache#key?` to be thread safe.
531
+
532
+ 3.72.0 (2019-10-24)
533
+ ------------------
534
+
535
+ * Feature - Updated the list of parameters to filter when logging.
536
+
537
+ * Issue - Update minimum `aws-partition` gem dependency version
538
+
539
+ 3.71.0 (2019-10-23)
540
+ ------------------
541
+
542
+ * Feature - Updated Aws::STS::Client with the latest API changes.
543
+
544
+ * Feature - Support enable STS regional endpoints by `sts_regional_endpoints: 'regional'`
545
+
546
+ 3.70.0 (2019-10-22)
547
+ ------------------
548
+
549
+ * Feature - Updated the list of parameters to filter when logging.
550
+
551
+ 3.69.1 (2019-10-18)
552
+ ------------------
553
+
554
+ * Issue - Fix method redefinition warnings
555
+
556
+ 3.69.0 (2019-10-17)
557
+ ------------------
558
+
559
+ * Feature - Updated the list of parameters to filter when logging.
560
+
561
+ 3.68.1 (2019-10-02)
562
+ ------------------
563
+
564
+ * Issue - Add final deprecation warnings to `access_key_id`, `secret_access_key`, and `session_token` in credential providers.
565
+
566
+ * Issue - Remove misleading IO documentation from `BlobShape` error output.
567
+
568
+ 3.68.0 (2019-09-16)
569
+ ------------------
570
+
571
+ * Feature - Support assuming a role with `:source_profile` from a profile that can be resolved from a `ProcessCredentials` provider.
572
+
573
+ 3.67.0 (2019-09-09)
574
+ ------------------
575
+
576
+ * Feature - Updated the list of parameters to filter when logging.
577
+
578
+ 3.66.0 (2019-09-04)
579
+ ------------------
580
+
581
+ * Feature - Support CLI AWS_DEFAULT_PROFILE environment variable [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1452).
582
+
583
+ 3.65.1 (2019-08-28)
584
+ ------------------
585
+
586
+ * Issue - Auto refresh credentials for Route53 `ExpiredToken` errors.
587
+
588
+ 3.65.0 (2019-08-27)
589
+ ------------------
590
+
591
+ * Feature - Support assuming a role `:source_profile` profile with `AssumeRoleWebIdentityCredentials`.
592
+
593
+ 3.64.0 (2019-08-20)
594
+ ------------------
595
+
596
+ * Feature - Updated the list of parameters to filter when logging.
597
+
598
+ 3.63.0 (2019-08-15)
599
+ ------------------
600
+
601
+ * Feature - Support passing AssumeRole `duration_seconds` from shared credentials/config file.
602
+
603
+ 3.62.0 (2019-08-02)
604
+ ------------------
605
+
606
+ * Feature - Updated Aws::STS::Client with the latest API changes.
607
+
608
+ 3.61.2 (2019-07-29)
609
+ ------------------
610
+
611
+ * Issue - Add `Aws::STS::InvalidIdentityToken` and `Aws::Errors::NoSuchEndpointError` error for retry.
612
+
613
+ 3.61.1 (2019-07-25)
614
+ ------------------
615
+
616
+ * Issue - Fix default STS Client credential sourcing in `Aws::AssumeRoleWebIdentityCredentialsProvider`.
617
+
618
+ 3.61.0 (2019-07-24)
619
+ ------------------
620
+
621
+ * Feature - Updated Aws::STS::Client with the latest API changes.
622
+
623
+ 3.60.0 (2019-07-23)
624
+ ------------------
625
+
626
+ * Feature - Updated the list of parameters to filter when logging.
627
+
628
+ * Issue - Handle `EncodingError` when using Oj gem [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1831)
629
+
630
+ 3.59.0 (2019-07-03)
631
+ ------------------
632
+
633
+ * Feature - Updated the list of parameters to filter when logging.
634
+
635
+ 3.58.0 (2019-07-01)
636
+ ------------------
637
+
638
+ * Feature - Support `Aws::AssumeRoleWebIdentityCredentials` provider
639
+
640
+ 3.57.0 (2019-06-28)
641
+ ------------------
642
+
643
+ * Feature - Updated the list of parameters to filter when logging.
644
+
645
+ 3.56.0 (2019-06-17)
646
+ ------------------
647
+
648
+ * Feature - Updated Aws::STS::Client with the latest API changes.
649
+
650
+ * Feature - Support `:client_side_monitoring_host` configuration for CSM
651
+
652
+ 3.55.0 (2019-06-14)
653
+ ------------------
654
+
655
+ * Feature - Updated the list of parameters to filter when logging.
656
+
657
+ 3.54.2 (2019-06-03)
658
+ ------------------
659
+
660
+ * Issue - Mirgate Proc.new without a block usage #2058.
661
+
662
+ 3.54.1 (2019-05-30)
663
+ ------------------
664
+
665
+ * Issue - Improved exception messages in credential providers to exclude detailed parse errors that may contain sensitive information.
666
+
667
+ 3.54.0 (2019-05-28)
668
+ ------------------
669
+
670
+ * Feature - Updated Aws::STS::Client with the latest API changes.
671
+
672
+ * Feature - Updated the list of parameters to filter when logging.
673
+
674
+ 3.53.1 (2019-05-22)
675
+ ------------------
676
+
677
+ * Issue - Support #to_hash for Struct with `:members` member #2053
678
+
679
+ 3.53.0 (2019-05-21)
680
+ ------------------
681
+
682
+ * Feature - Updated Aws::STS::Client with the latest API changes.
683
+
684
+ * Feature - Updated the list of parameters to filter when logging.
685
+
686
+ * Feature - Adding support for modeled exceptions
687
+
688
+ 3.52.1 (2019-05-15)
689
+ ------------------
690
+
691
+ * Issue - Handle paginator stubs with expression #2040
692
+
693
+ 3.52.0 (2019-05-14)
694
+ ------------------
695
+
696
+ * Feature - Updated Aws::STS::Client with the latest API changes.
697
+
698
+ * Feature - Updated the list of parameters to filter when logging.
699
+
700
+ * Feature - Support transfer encoding and `requiresLength` trait
701
+
702
+ 3.51.0 (2019-05-10)
703
+ ------------------
704
+
705
+ * Feature - Updated Aws::STS::Client with the latest API changes.
706
+
707
+ 3.50.0 (2019-05-06)
708
+ ------------------
709
+
710
+ * Feature - Updated Aws::STS::Client with the latest API changes.
711
+
712
+ 3.49.0 (2019-04-30)
713
+ ------------------
714
+
715
+ * Feature - Updated the list of parameters to filter when logging.
716
+
717
+ 3.48.6 (2019-04-26)
718
+ ------------------
719
+
720
+ * Issue - Call RefreshingCredentials initialize method in ProcessCredentials to set mutex.
721
+
722
+ 3.48.5 (2019-04-24)
723
+ ------------------
724
+
725
+ * Issue - Add PriorRequestNotComplete to throttling errors.
726
+
727
+ 3.48.4 (2019-04-18)
728
+ ------------------
729
+
730
+ * Issue - Small memory retention reduction.
731
+
732
+ 3.48.3 (2019-03-26)
733
+ ------------------
734
+
735
+ * Issue - event header ":event-type" uses member name instead of shape name
736
+
737
+ 3.48.2 (2019-03-20)
738
+ ------------------
739
+
740
+ * Issue - Support signal events after request only [HTTP2]
741
+
742
+ 3.48.1 (2019-03-19)
743
+ ------------------
744
+
745
+ * Issue - Clean up unnecessary error output when 'http-2' gem is not present.
746
+
747
+ 3.48.0 (2019-03-18)
748
+ ------------------
749
+
750
+ * Feature - Updated the list of parameters to filter when logging.
751
+
752
+ * Feature - Fix http-2 Dependency for Old Ruby Versions (Github Issue #1994)
753
+
754
+ 3.47.0 (2019-03-14)
755
+ ------------------
756
+
757
+ * Feature - Support HTTP/2 based AWS event stream operations
758
+
759
+ 3.46.2 (2019-02-19)
760
+ ------------------
761
+
762
+ * Issue - Update NetHttp Patches per Ruby version (Github Issue: #1979)
763
+
764
+ 3.46.1 (2019-02-12)
765
+ ------------------
766
+
767
+ * Issue - Fix the issue that APIG SDK doesn't have regional endpoint related plugins.
768
+
769
+ 3.46.0 (2019-01-16)
770
+ ------------------
771
+
772
+ * Feature - Updated the list of parameters to filter when logging.
773
+
774
+ 3.45.0 (2019-01-11)
775
+ ------------------
776
+
777
+ * Feature - Improve Query protocol handling of empty responses, to ensure response is an instance of `Aws::EmptyStructure` rather than the class `Aws::EmptyStructure` itself.
778
+ * Issue - Plugin updates to support client-side monitoring.
779
+
780
+ 3.44.2 (2019-01-04)
781
+ ------------------
782
+
783
+ * Issue - Update to code paths and plugins for future SDK instrumentation and telemetry.
784
+
785
+ 3.44.1 (2018-12-17)
786
+ ------------------
787
+
788
+ * Issue - Update sensitive filtering logic to include `#to_s` calls of shapes.
789
+
790
+ 3.44.0 (2018-12-07)
791
+ ------------------
792
+
793
+ * Feature - Updated the list of parameters to filter when logging.
794
+
795
+ 3.43.0 (2018-12-04)
796
+ ------------------
797
+
798
+ * Feature - Update user agent structure.
799
+
800
+ 3.42.0 (2018-11-29)
801
+ ------------------
802
+
803
+ * Feature - Updated the list of parameters to filter when logging.
804
+
805
+ 3.41.0 (2018-11-28)
806
+ ------------------
807
+
808
+ * Feature - Updated the list of parameters to filter when logging.
809
+
810
+ 3.40.0 (2018-11-27)
811
+ ------------------
812
+
813
+ * Feature - Updated the list of parameters to filter when logging.
814
+
815
+ 3.39.0 (2018-11-20)
816
+ ------------------
817
+
818
+ * Feature - Updated Aws::STS::Client with the latest API changes.
819
+
820
+ * Feature - Updated the list of parameters to filter when logging.
821
+
822
+ * Feature - Adding support for endpoint trait (host prefix) per operation, to disable this feature, set `:disable_host_prefix_injection` to `false` for the client.
823
+
824
+ 3.38.0 (2018-11-12)
825
+ ------------------
826
+
827
+ * Feature - Updated the list of parameters to filter when logging.
828
+
829
+ * Feature - Adding `TransactionInProgressException` for throttling retry
830
+
831
+ 3.37.0 (2018-11-08)
832
+ ------------------
833
+
834
+ * Feature - Adding support for endpoint discovery per operation, to enable this feature, set `:endpoint_discovery` to `true` for the client. Note: only available for services with endpoint discovery support.
835
+
836
+ 3.36.0 (2018-10-30)
837
+ ------------------
838
+
839
+ * Feature - Updated the list of parameters to filter when logging.
840
+
841
+ 3.35.0 (2018-10-24)
842
+ ------------------
843
+
844
+ * Feature - Updated Aws::STS::Client with the latest API changes.
845
+
846
+ * Feature - Updated the list of parameters to filter when logging.
847
+
848
+ 3.34.0 (2018-10-23)
849
+ ------------------
850
+
851
+ * Feature - Updated Aws::STS::Client with the latest API changes.
852
+
853
+ * Feature - Allow 429 response code to trigger throttle detection
854
+
855
+ 3.33.0 (2018-10-22)
856
+ ------------------
857
+
858
+ * Feature - Update to code paths and plugins for future SDK instrumentation and telemetry.
859
+
860
+ 3.32.0 (2018-10-18)
861
+ ------------------
862
+
863
+ * Feature - Updated the list of parameters to filter when logging.
864
+
865
+ 3.31.0 (2018-10-16)
866
+ ------------------
867
+
868
+ * Feature - Updated the list of parameters to filter when logging.
869
+
870
+ 3.30.0 (2018-10-04)
871
+ ------------------
872
+
873
+ * Feature - Adds to code paths and plugins for future SDK instrumentation and telemetry.
874
+
875
+ 3.29.0 (2018-09-28)
876
+ ------------------
877
+
878
+ * Feature - Updated the list of parameters to filter when logging.
879
+
880
+ 3.28.0 (2018-09-25)
881
+ ------------------
882
+
883
+ * Feature - Updated the list of parameters to filter when logging.
884
+
885
+ 3.27.1 (2018-09-21)
886
+ ------------------
887
+
888
+ * Issue - Fixes a bug in the `:response_target` plugin error callback. Under certain circumstances a special body object can be removed before its error callback is triggered, breaking retry logic.
889
+
890
+ 3.27.0 (2018-09-06)
891
+ ------------------
892
+
893
+ * Feature - Adds code paths and plugins for future SDK instrumentation and telemetry to aws-sdk-sts.
894
+
895
+ 3.26.0 (2018-09-05)
896
+ ------------------
897
+
898
+ * Feature - Updated Aws::STS::Client with the latest API changes.
899
+
900
+ * Feature - Adds code paths and plugins for future SDK instrumentation and telemetry.
901
+
902
+ 3.25.0 (2018-08-29)
903
+ ------------------
904
+
905
+ * Feature - Updated the list of parameters to filter when logging.
906
+
907
+ * Issue - Add `:exclude_presign` option for #api_requests at client stubbing to allow excluding non-sent request from presigned url (Github Issue #1866)
908
+
909
+ 3.24.1 (2018-08-13)
910
+ ------------------
911
+
912
+ * Issue - Update `ca-bundle.crt` file with newer root certificate authorities.
913
+
914
+ 3.24.0 (2018-08-03)
915
+ ------------------
916
+
917
+ * Feature - Extensible Credential Providers, allows you to declare an executable to be run that outputs the credentials as a JSON payload allowing you to develop custom credential providers and easily add them to the credential resolution chain, [Docs](https://docs.aws.amazon.com/cli/latest/topic/config-vars.html#sourcing-credentials-from-external-processes)
918
+
919
+ 3.23.0 (2018-07-31)
920
+ ------------------
921
+
922
+ * Feature - Add Logged API Requests interface to stubbed clients
923
+
924
+ 3.22.1 (2018-06-28)
925
+ ------------------
926
+
927
+ * Issue - Performance enhancement to instance credential providers, to use a more precisely scoped Time parsing method for improved performance.
928
+
929
+ 3.22.0 (2018-06-26)
930
+ ------------------
931
+
932
+ * Feature - Updated Aws::STS::Client with the latest API changes.
933
+
934
+ * Feature - Allows you to set custom paths to shared config and shared credential files via the `AWS_CONFIG_FILE` and `AWS_SHARED_CREDENTIALS_FILE` environment variables.
935
+
936
+ * Feature - Flexible retry strategies. Provides the `:retry_max_delay`, `:retry_base_delay`, and `:retry_jitter` options, which modify the default backoff strategy without the need to define a full retry lambda from scratch.
937
+
938
+ 3.21.3 (2018-06-20)
939
+ ------------------
940
+
941
+ * Issue - Fix to support URI encoded characters in http_proxy
942
+
943
+ 3.21.2 (2018-05-22)
944
+ ------------------
945
+
946
+ * Issue - Update `EventEmitter` to `Aws::EventEmitter` [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1791)
947
+
948
+ 3.21.1 (2018-05-18)
949
+ ------------------
950
+
951
+ * Issue - Remove `raw_stream` tracking, [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1786)
952
+
953
+ 3.21.0 (2018-05-17)
954
+ ------------------
955
+
956
+ * Feature - Support `vnd.amazon.event-stream` binary stream protocol over HTTP1.1
957
+
958
+ 3.20.2 (2018-04-26)
959
+ ------------------
960
+
961
+ * Issue - Avoiding Net::HTTP patching for Ruby 2.5
962
+
963
+ 3.20.1 (2018-04-24)
964
+ ------------------
965
+
966
+ * Issue - Fix parsing flattened XML shape from shape reference for S3 https://github.com/aws/aws-sdk-ruby/issues/1764
967
+
968
+ 3.20.0 (2018-04-23)
969
+ ------------------
970
+
971
+ * Feature - Aws::InstanceProfileCredentials - Add sending a User-Agent other than the default User-Agent in Ruby. Adding the User-Agent `aws-sdk-ruby3/<version>` to allow protection against Server Side Request Forgery (SSRF) credential theft vectors by use of a metadata proxy.
972
+
973
+ 3.19.0 (2018-04-04)
974
+ ------------------
975
+
976
+ * Feature - Updated the list of parameters to filter when logging.
977
+
978
+ 3.18.1 (2018-03-29)
979
+ ------------------
980
+
981
+ * Issue - Fix undefined method `each`/`next` for `Enumerable::Enumerator` when this class exists in the environment
982
+
983
+ 3.18.0 (2018-03-28)
984
+ ------------------
985
+
986
+ * Feature - Updated Aws::STS::Client with the latest API changes.
987
+
988
+ 3.17.1 (2018-03-20)
989
+ ------------------
990
+
991
+ * Issue - Support timestamp shape in querystring
992
+
993
+ 3.17.0 (2018-02-27)
994
+ ------------------
995
+
996
+ * Feature - Updated Aws::STS::Client with the latest API changes.
997
+
998
+ * Issue - Fix Ruby warnings: Shadowed local variables "parts" and "headers"
999
+
1000
+ 3.16.0 (2018-02-20)
1001
+ ------------------
1002
+
1003
+ * Feature - Aws::InstanceProfileCredentials - When the `AWS_EC2_METADATA_DISABLED` environment variable is present with the value `true` (not case sensitive), the `Aws::InstanceProfileCredentials` credential provider will not be used.
1004
+
1005
+ 3.15.0 (2018-02-06)
1006
+ ------------------
1007
+
1008
+ * Feature - Updated the list of parameters to filter when logging.
1009
+
1010
+ 3.14.0 (2018-01-15)
1011
+ ------------------
1012
+
1013
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1014
+
1015
+ 3.13.1 (2018-01-12)
1016
+ ------------------
1017
+
1018
+ * Issue - Fix Ruby 2.5 warnings.
1019
+
1020
+ 3.13.0 (2017-12-21)
1021
+ ------------------
1022
+
1023
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1024
+
1025
+ 3.12.0 (2017-12-20)
1026
+ ------------------
1027
+
1028
+ * Feature - Adds support for credential_source when assuming a role via shared configuration.
1029
+
1030
+ * Issue - Update APIGateway SDK user agent pattern
1031
+
1032
+ 3.11.0 (2017-11-29)
1033
+ ------------------
1034
+
1035
+ * Feature - Updated the list of parameters to filter when logging.
1036
+
1037
+ 3.10.0 (2017-11-29)
1038
+ ------------------
1039
+
1040
+ * Feature - Updated the list of parameters to filter when logging.
1041
+
1042
+ 3.9.0 (2017-11-20)
1043
+ ------------------
1044
+
1045
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1046
+
1047
+ * Feature - Updated the list of parameters to filter when logging.
1048
+
1049
+ 3.8.0 (2017-11-19)
1050
+ ------------------
1051
+
1052
+ * Feature - Add support for APIGateway protocol and custom service build.
1053
+
1054
+ 3.7.0 (2017-11-07)
1055
+ ------------------
1056
+
1057
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1058
+
1059
+ * Feature - Updated the list of parameters to filter when logging.
1060
+
1061
+ 3.6.1 (2017-11-07)
1062
+ ------------------
1063
+
1064
+ * Issue - Update empty struct stubbing shape
1065
+
1066
+ 3.6.0 (2017-09-20)
1067
+ ------------------
1068
+
1069
+ * Feature - Updated the list of parameters to filter when logging.
1070
+
1071
+ 3.5.0 (2017-09-13)
1072
+ ------------------
1073
+
1074
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1075
+
1076
+ 3.4.0 (2017-09-12)
1077
+ ------------------
1078
+
1079
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1080
+
1081
+ 3.3.1 (2017-09-11)
1082
+ ------------------
1083
+
1084
+ * Issue - Fix core util deep copy issue #1603
1085
+
1086
+ 3.3.0 (2017-09-07)
1087
+ ------------------
1088
+
1089
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1090
+
1091
+ 3.2.1 (2017-09-06)
1092
+ ------------------
1093
+
1094
+ * Issue - Remove redundant version file.
1095
+
1096
+ 3.2.0 (2017-08-31)
1097
+ ------------------
1098
+
1099
+ * Feature - Updated the list of parameters to filter when logging.
1100
+
1101
+ * Issue - Update `aws-sdk-core` gemspec metadata.
1102
+
1103
+ * Issue - Update `aws-sdk-core` gemspec metadata
1104
+
1105
+ 3.1.0 (2017-08-30)
1106
+ ------------------
1107
+
1108
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1109
+
1110
+ 3.0.0 (2017-08-29)
1111
+ ------------------
1112
+
1113
+ 3.0.0.rc20 (2017-08-14)
1114
+ ------------------
1115
+
1116
+ * Feature - Updated the list of parameters to filter when logging.
1117
+
1118
+ 3.0.0.rc19 (2017-07-31)
1119
+ ------------------
1120
+
1121
+ * Feature - Updated the list of parameters to filter when logging.
1122
+
1123
+ 3.0.0.rc18 (2017-07-24)
1124
+ ------------------
1125
+
1126
+ * Feature - Updated the list of parameters to filter when logging.
1127
+
1128
+ 3.0.0.rc17 (2017-07-12)
1129
+ ------------------
1130
+
1131
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1132
+
1133
+ 3.0.0.rc16 (2017-07-06)
1134
+ ------------------
1135
+
1136
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1137
+
1138
+ 3.0.0.rc15 (2017-07-06)
1139
+ ------------------
1140
+
1141
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1142
+
1143
+ 3.0.0.rc14 (2017-06-29)
1144
+ ------------------
1145
+
1146
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1147
+
1148
+ 3.0.0.rc13 (2017-06-26)
1149
+ ------------------
1150
+
1151
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1152
+
1153
+ * Feature - Updated the list of parameters to filter when logging.
1154
+
1155
+ * Issue - Aws::CredentialProviderChain - Fetching `AWS_PROFILE` environment variable before using `default` profile.
1156
+
1157
+ 3.0.0.rc12 (2017-05-23)
1158
+ ------------------
1159
+
1160
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1161
+
1162
+ * Feature - Update throttling error pool of retry
1163
+
1164
+ * Feature - Update `User-Agent` format
1165
+
1166
+ 3.0.0.rc11 (2017-05-09)
1167
+ ------------------
1168
+
1169
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1170
+
1171
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1172
+
1173
+ 3.0.0.rc10 (2017-05-09)
1174
+ ------------------
1175
+
1176
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1177
+
1178
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1179
+
1180
+ 3.0.0.rc9 (2017-05-05)
1181
+ ------------------
1182
+
1183
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1184
+
1185
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1186
+
1187
+ * Feature - Added support for Ruby 2.4
1188
+
1189
+ * Issue - Revert 'cgi/util' change that breaks Ruby 2.4
1190
+
1191
+ 3.0.0.rc8 (2017-04-21)
1192
+ ------------------
1193
+
1194
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1195
+
1196
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1197
+
1198
+ * Feature - Updated the list of parameters to filter when logging.
1199
+
1200
+ 3.0.0.rc7 (2017-03-09)
1201
+ ------------------
1202
+
1203
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1204
+
1205
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1206
+
1207
+ * Feature - Updated the list of parameters to filter when logging.
1208
+
1209
+ 3.0.0.rc6 (2017-03-08)
1210
+ ------------------
1211
+
1212
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1213
+
1214
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1215
+
1216
+ 3.0.0.rc5 (2017-03-07)
1217
+ ------------------
1218
+
1219
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1220
+
1221
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1222
+
1223
+ 3.0.0.rc4 (2017-03-07)
1224
+ ------------------
1225
+
1226
+ * Feature - Updated the list of parameters to filter when logging.
1227
+
1228
+ 3.0.0.rc3 (2017-01-24)
1229
+ ------------------
1230
+
1231
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1232
+
1233
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1234
+
1235
+ * Feature - Updated the list of parameters to filter when logging.
1236
+
1237
+ 3.0.0.rc2 (2016-12-09)
1238
+ ------------------
1239
+
1240
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1241
+
1242
+ * Feature - Updated the list of parameters to filter when logging.
1243
+
1244
+ 3.0.0.rc1 (2016-12-05)
1245
+ ------------------
1246
+
1247
+ * Feature - Initial preview release of the `aws-sdk-core` gem.