aws-sdk-core 3.31.0 → 3.168.4

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