aws-sdk-core 3.0.0 → 3.129.1

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