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