aws-sdk-core 3.117.0 → 3.197.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +836 -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 +13 -0
- data/lib/aws-sdk-core/assume_role_credentials.rb +21 -7
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +14 -10
- data/lib/aws-sdk-core/binary/decode_handler.rb +0 -5
- data/lib/aws-sdk-core/binary/encode_handler.rb +12 -1
- data/lib/aws-sdk-core/binary/event_builder.rb +34 -37
- data/lib/aws-sdk-core/client_stubs.rb +20 -13
- data/lib/aws-sdk-core/credential_provider.rb +4 -1
- data/lib/aws-sdk-core/credential_provider_chain.rb +8 -5
- data/lib/aws-sdk-core/ec2_metadata.rb +4 -3
- data/lib/aws-sdk-core/ecs_credentials.rb +187 -52
- data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
- data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
- data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
- data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
- data/lib/aws-sdk-core/endpoints/function.rb +80 -0
- data/lib/aws-sdk-core/endpoints/matchers.rb +135 -0
- data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
- data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
- data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
- data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
- data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
- data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
- data/lib/aws-sdk-core/endpoints/url.rb +60 -0
- data/lib/aws-sdk-core/endpoints.rb +78 -0
- data/lib/aws-sdk-core/errors.rb +17 -4
- data/lib/aws-sdk-core/event_emitter.rb +0 -16
- data/lib/aws-sdk-core/ini_parser.rb +7 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +127 -33
- data/lib/aws-sdk-core/json/builder.rb +8 -1
- data/lib/aws-sdk-core/json/error_handler.rb +30 -4
- data/lib/aws-sdk-core/json/handler.rb +8 -1
- data/lib/aws-sdk-core/json/json_engine.rb +10 -8
- data/lib/aws-sdk-core/json/oj_engine.rb +33 -6
- data/lib/aws-sdk-core/json/parser.rb +38 -2
- data/lib/aws-sdk-core/json.rb +8 -26
- data/lib/aws-sdk-core/log/formatter.rb +6 -0
- data/lib/aws-sdk-core/log/param_filter.rb +9 -1
- data/lib/aws-sdk-core/lru_cache.rb +75 -0
- data/lib/aws-sdk-core/pageable_response.rb +81 -32
- data/lib/aws-sdk-core/param_validator.rb +36 -2
- data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
- data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +342 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +1 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +14 -2
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +29 -1
- data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +6 -2
- data/lib/aws-sdk-core/plugins/http_checksum.rb +9 -1
- data/lib/aws-sdk-core/plugins/invocation_id.rb +1 -11
- data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +34 -6
- data/lib/aws-sdk-core/plugins/logging.rb +2 -0
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +17 -0
- data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +4 -2
- data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -2
- data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +144 -17
- data/lib/aws-sdk-core/plugins/request_compression.rb +226 -0
- data/lib/aws-sdk-core/plugins/response_paging.rb +1 -1
- data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +7 -4
- data/lib/aws-sdk-core/plugins/retry_errors.rb +33 -7
- data/lib/aws-sdk-core/plugins/sign.rb +211 -0
- data/lib/aws-sdk-core/plugins/signature_v2.rb +1 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +28 -31
- data/lib/aws-sdk-core/plugins/stub_responses.rb +6 -1
- data/lib/aws-sdk-core/plugins/user_agent.rb +152 -14
- data/lib/aws-sdk-core/process_credentials.rb +50 -34
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +5 -7
- data/lib/aws-sdk-core/query/param_builder.rb +2 -2
- data/lib/aws-sdk-core/refreshing_credentials.rb +49 -18
- data/lib/aws-sdk-core/refreshing_token.rb +71 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -1
- data/lib/aws-sdk-core/rest/request/body.rb +49 -4
- data/lib/aws-sdk-core/rest/request/content_type.rb +60 -0
- data/lib/aws-sdk-core/rest/request/endpoint.rb +24 -4
- data/lib/aws-sdk-core/rest/request/headers.rb +23 -7
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +62 -36
- data/lib/aws-sdk-core/rest/response/body.rb +15 -1
- data/lib/aws-sdk-core/rest/response/header_list_parser.rb +79 -0
- data/lib/aws-sdk-core/rest/response/headers.rb +10 -3
- data/lib/aws-sdk-core/rest.rb +1 -0
- data/lib/aws-sdk-core/shared_config.rb +112 -12
- data/lib/aws-sdk-core/sso_credentials.rb +92 -51
- data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
- data/lib/aws-sdk-core/static_token_provider.rb +14 -0
- data/lib/aws-sdk-core/structure.rb +16 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +11 -0
- data/lib/aws-sdk-core/token.rb +31 -0
- data/lib/aws-sdk-core/token_provider.rb +15 -0
- data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
- data/lib/aws-sdk-core/util.rb +39 -0
- data/lib/aws-sdk-core/waiters/poller.rb +4 -2
- data/lib/aws-sdk-core/xml/builder.rb +17 -9
- data/lib/aws-sdk-core/xml/error_handler.rb +31 -8
- data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
- data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -1
- data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +0 -8
- data/lib/aws-sdk-core/xml/parser/frame.rb +27 -20
- data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
- data/lib/aws-sdk-core.rb +21 -0
- data/lib/aws-sdk-sso/client.rb +157 -50
- data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-sso/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-sso/endpoints.rb +72 -0
- data/lib/aws-sdk-sso/plugins/endpoints.rb +78 -0
- data/lib/aws-sdk-sso/types.rb +8 -43
- data/lib/aws-sdk-sso.rb +5 -1
- data/lib/aws-sdk-ssooidc/client.rb +1008 -0
- data/lib/aws-sdk-ssooidc/client_api.rb +293 -0
- data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
- data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-ssooidc/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-ssooidc/endpoints.rb +72 -0
- data/lib/aws-sdk-ssooidc/errors.rb +342 -0
- data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +78 -0
- data/lib/aws-sdk-ssooidc/resource.rb +26 -0
- data/lib/aws-sdk-ssooidc/types.rb +823 -0
- data/lib/aws-sdk-ssooidc.rb +59 -0
- data/lib/aws-sdk-sts/client.rb +472 -398
- data/lib/aws-sdk-sts/client_api.rb +20 -9
- data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
- data/lib/aws-sdk-sts/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-sts/endpoints.rb +136 -0
- data/lib/aws-sdk-sts/plugins/endpoints.rb +86 -0
- data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +5 -1
- data/lib/aws-sdk-sts/presigner.rb +14 -10
- data/lib/aws-sdk-sts/types.rb +168 -227
- data/lib/aws-sdk-sts.rb +5 -1
- data/lib/seahorse/client/async_base.rb +1 -2
- data/lib/seahorse/client/async_response.rb +19 -0
- data/lib/seahorse/client/base.rb +1 -0
- data/lib/seahorse/client/configuration.rb +5 -5
- data/lib/seahorse/client/h2/connection.rb +15 -16
- data/lib/seahorse/client/h2/handler.rb +5 -5
- data/lib/seahorse/client/net_http/connection_pool.rb +10 -9
- data/lib/seahorse/client/net_http/handler.rb +15 -7
- data/lib/seahorse/client/net_http/patches.rb +12 -86
- data/lib/seahorse/client/plugin.rb +9 -0
- data/lib/seahorse/client/plugins/content_length.rb +11 -5
- data/lib/seahorse/client/plugins/h2.rb +3 -3
- data/lib/seahorse/client/plugins/net_http.rb +73 -10
- data/lib/seahorse/client/plugins/request_callback.rb +40 -9
- data/lib/seahorse/client/response.rb +6 -0
- data/lib/seahorse/model/operation.rb +6 -0
- data/lib/seahorse/model/shapes.rb +27 -2
- data/lib/seahorse/util.rb +4 -0
- data/sig/aws-sdk-core/client_stubs.rbs +10 -0
- data/sig/aws-sdk-core/errors.rbs +22 -0
- data/sig/aws-sdk-core/resources/collection.rbs +21 -0
- data/sig/aws-sdk-core/structure.rbs +4 -0
- data/sig/aws-sdk-core/waiters/errors.rbs +20 -0
- data/sig/aws-sdk-core.rbs +7 -0
- data/sig/seahorse/client/base.rbs +25 -0
- data/sig/seahorse/client/handler_builder.rbs +16 -0
- data/sig/seahorse/client/response.rbs +61 -0
- metadata +82 -17
- data/lib/aws-sdk-sso/plugins/content_type.rb +0 -25
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,842 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
3.197.2 (2024-06-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Issue - fix issue in Endpoint `attr` matcher when path is only an array index.
|
8
|
+
|
9
|
+
* Issue - Fix trailing slash in endpoint URLs for rest-json and rest-xml services.
|
10
|
+
|
11
|
+
3.197.1 (2024-06-19)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
* Issue - Support an array of string arguments for `Aws::ProcessCredentials` to be executed by `system`.
|
15
|
+
|
16
|
+
3.197.0 (2024-06-05)
|
17
|
+
------------------
|
18
|
+
|
19
|
+
* Issue - Ensure no UTC offset when deserializing `iso8601` timestamp format values.
|
20
|
+
|
21
|
+
* Feature - Bump User Agent to version 2.1 to track business metrics. This changes the User Agent plugin order to be just before sending.
|
22
|
+
|
23
|
+
3.196.1 (2024-05-14)
|
24
|
+
------------------
|
25
|
+
|
26
|
+
* Issue - Fix `ConnectionPool` for `.empty!` and `.clear!` since it prevented adding a new key from being added to the pool (#3020).
|
27
|
+
|
28
|
+
3.196.0 (2024-05-13)
|
29
|
+
------------------
|
30
|
+
|
31
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
32
|
+
|
33
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
34
|
+
|
35
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
36
|
+
|
37
|
+
3.195.0 (2024-05-10)
|
38
|
+
------------------
|
39
|
+
|
40
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
41
|
+
|
42
|
+
* Feature - Updated request parameters for PKCE support.
|
43
|
+
|
44
|
+
3.194.2 (2024-05-07)
|
45
|
+
------------------
|
46
|
+
|
47
|
+
* Issue - Fix issue where `ConnectionPool` size iteration would prevent a new key from being added to the pool.
|
48
|
+
|
49
|
+
3.194.1 (2024-05-03)
|
50
|
+
------------------
|
51
|
+
|
52
|
+
* Issue - Update EC2 protocol to not serialize empty lists.
|
53
|
+
|
54
|
+
3.194.0 (2024-04-30)
|
55
|
+
------------------
|
56
|
+
|
57
|
+
* Feature - Add an API private cache for S3 Express and Access Grants.
|
58
|
+
|
59
|
+
3.193.0 (2024-04-25)
|
60
|
+
------------------
|
61
|
+
|
62
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
63
|
+
|
64
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
65
|
+
|
66
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
67
|
+
|
68
|
+
* Issue - Update event stream documentation.
|
69
|
+
* Issue - Move `InvocationId` plugin to all clients.
|
70
|
+
* Issue - Handle event streaming content-sha256 header in the signer plugin.
|
71
|
+
* Issue - Add the event stream content type to initial requests.
|
72
|
+
* Issue - Fix `standard` and `adaptive` retry mode for event streams.
|
73
|
+
* Issue - Add `authority` to http2 headers.
|
74
|
+
* Issue - Do not treat single members in event stream structures as implicit payloads.
|
75
|
+
* Issue - Do not wait for initial response headers to start sending input events.
|
76
|
+
|
77
|
+
3.192.1 (2024-04-18)
|
78
|
+
------------------
|
79
|
+
|
80
|
+
* Issue - Drop key/value pair if value is `nil` when deserializing json maps.
|
81
|
+
|
82
|
+
3.192.0 (2024-04-16)
|
83
|
+
------------------
|
84
|
+
|
85
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
86
|
+
|
87
|
+
* Feature - Update serializing/deserializing for all protocols to align with Smithy protocol-tests.
|
88
|
+
* Issue - Allow `nil` values in lists and maps.
|
89
|
+
* Issue - Populate headers for XML and JSON error responses.
|
90
|
+
* Issue - Support fractional seconds when parsing `DateTime` timestamps.
|
91
|
+
* Issue - Correctly serialize flattened lists for Query protocol.
|
92
|
+
* Issue - Correctly serialize payload name in Rest-XML requests.
|
93
|
+
* Issue - Fix an issue where Rest-XML requests do not have a default `Content-Type` header applied.
|
94
|
+
* Issue - Apply appropriate `Content-Type` header for payloads in Rest services.
|
95
|
+
* Issue - Correctly serialize URI label bindings in Rest requests.
|
96
|
+
* Issue - Correctly serialize and parse header bindings in Rest services.
|
97
|
+
* Issue - Ensure that null and empty headers are not sent in Rest requests.
|
98
|
+
* Issue - Ensure keys in query maps do not override modeled keys in Rest requests.
|
99
|
+
* Issue - Ensure empty blob payloads are omitted in Rest requests.
|
100
|
+
* Issue - Support parsing of `NaN`, `Infinity` and `-Infinity` float values.
|
101
|
+
* Issue - Apply appropriate `xmlName` for flattened lists and maps in Rest-XML services.
|
102
|
+
* Issue - Handle serializing of different formats of `xmlNamespace` on shapes.
|
103
|
+
* Issue - Fix deserializing of an empty blob to produce an empty string.
|
104
|
+
* Issue - Fix deserializing an empty self-closed blob to produce an empty string.
|
105
|
+
* Issue - Support parsing of different formats of error data in Rest-XML services.
|
106
|
+
|
107
|
+
3.191.6 (2024-04-02)
|
108
|
+
------------------
|
109
|
+
* Issue - Performance optimization: ensure presence and order of instance variables in `PluginOptions` (#3002).
|
110
|
+
|
111
|
+
3.191.5 (2024-03-26)
|
112
|
+
------------------
|
113
|
+
|
114
|
+
* Issue - Fix `EC2Metadata` and `InstanceProfileCredentials` to respect the port from a configured endpoint from code, ENV, or shared config.
|
115
|
+
|
116
|
+
3.191.4 (2024-03-15)
|
117
|
+
------------------
|
118
|
+
|
119
|
+
* Issue - Ensure output unions work correctly with stub_responses.
|
120
|
+
|
121
|
+
3.191.3 (2024-02-20)
|
122
|
+
------------------
|
123
|
+
|
124
|
+
* Issue - Remove base64 as dependency.
|
125
|
+
|
126
|
+
3.191.2 (2024-02-14)
|
127
|
+
------------------
|
128
|
+
|
129
|
+
* Issue - Add base64 as dependency to prepare for Ruby 3.4 release (#2984).
|
130
|
+
|
131
|
+
3.191.1 (2024-02-07)
|
132
|
+
------------------
|
133
|
+
|
134
|
+
* Issue - Warn on previously silent credential failures (#2981).
|
135
|
+
|
136
|
+
3.191.0 (2024-01-26)
|
137
|
+
------------------
|
138
|
+
|
139
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
140
|
+
|
141
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
142
|
+
|
143
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
144
|
+
|
145
|
+
* Feature - Add RBS signature files to support static type checking
|
146
|
+
|
147
|
+
3.190.3 (2024-01-16)
|
148
|
+
------------------
|
149
|
+
|
150
|
+
* Issue - Add mutex around accessing stub api_requests.
|
151
|
+
|
152
|
+
3.190.2 (2024-01-09)
|
153
|
+
------------------
|
154
|
+
|
155
|
+
* Issue - Minor performance optimization.
|
156
|
+
|
157
|
+
3.190.1 (2023-12-20)
|
158
|
+
------------------
|
159
|
+
|
160
|
+
* Issue - Add mutex around stub api_requests.
|
161
|
+
|
162
|
+
3.190.0 (2023-11-29)
|
163
|
+
------------------
|
164
|
+
|
165
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
166
|
+
|
167
|
+
3.189.0 (2023-11-28)
|
168
|
+
------------------
|
169
|
+
|
170
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
171
|
+
|
172
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
173
|
+
|
174
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
175
|
+
|
176
|
+
* Feature - Support S3 Express authentication.
|
177
|
+
|
178
|
+
3.188.0 (2023-11-22)
|
179
|
+
------------------
|
180
|
+
|
181
|
+
* Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 2.3 and 2.4.
|
182
|
+
|
183
|
+
* Feature - Support `AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE` in `ECSCredentials` and also allow for ECS and EKS link-local http addresses.
|
184
|
+
|
185
|
+
3.187.1 (2023-11-20)
|
186
|
+
------------------
|
187
|
+
|
188
|
+
* Issue - For `awsQueryCompatible` services, default an empty list or map for shapes that were previously flattened in the query protocol.
|
189
|
+
|
190
|
+
3.187.0 (2023-11-17)
|
191
|
+
------------------
|
192
|
+
|
193
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
194
|
+
|
195
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
196
|
+
|
197
|
+
3.186.0 (2023-11-02)
|
198
|
+
------------------
|
199
|
+
|
200
|
+
* Feature - Support disabling IMDSv1 in `InstanceProfileCredentials` using `ENV['AWS_EC2_METADATA_V1_DISABLED']`, `ec2_metadata_v1_disabled` shared config, or the `disable_imds_v1` credentials option.
|
201
|
+
|
202
|
+
3.185.2 (2023-10-31)
|
203
|
+
------------------
|
204
|
+
|
205
|
+
* Issue - Fix query string support to lists of booleans, floats, integers and timestamps per rest-json protocol.
|
206
|
+
|
207
|
+
3.185.1 (2023-10-05)
|
208
|
+
------------------
|
209
|
+
|
210
|
+
* Issue - Ignore `__type` when deserializing Unions.
|
211
|
+
|
212
|
+
3.185.0 (2023-10-02)
|
213
|
+
------------------
|
214
|
+
|
215
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
216
|
+
|
217
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
218
|
+
|
219
|
+
3.184.0 (2023-09-27)
|
220
|
+
------------------
|
221
|
+
|
222
|
+
* Feature - Change the `ServiceError` data member from read only to read/write.
|
223
|
+
|
224
|
+
3.183.1 (2023-09-25)
|
225
|
+
------------------
|
226
|
+
|
227
|
+
* Issue - Remove value inspection from param validation errors.
|
228
|
+
|
229
|
+
3.183.0 (2023-09-20)
|
230
|
+
------------------
|
231
|
+
|
232
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
233
|
+
|
234
|
+
3.182.0 (2023-09-19)
|
235
|
+
------------------
|
236
|
+
|
237
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
238
|
+
|
239
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
240
|
+
|
241
|
+
3.181.1 (2023-09-14)
|
242
|
+
------------------
|
243
|
+
|
244
|
+
* Issue - Fix host label validation in endpoint matchers.
|
245
|
+
|
246
|
+
3.181.0 (2023-08-22)
|
247
|
+
------------------
|
248
|
+
|
249
|
+
* Feature - Add support for `on_chunk_received` callback.
|
250
|
+
|
251
|
+
3.180.3 (2023-08-09)
|
252
|
+
------------------
|
253
|
+
|
254
|
+
* Issue - Add support for sso-session names with whitespace configured by the CLI `aws sso configure` command (#2895).
|
255
|
+
|
256
|
+
3.180.2 (2023-08-07)
|
257
|
+
------------------
|
258
|
+
|
259
|
+
* Issue - Fix parsing of ini files with mixes of blank properties and nested configurations.
|
260
|
+
|
261
|
+
3.180.1 (2023-07-31)
|
262
|
+
------------------
|
263
|
+
|
264
|
+
* Issue - Remove checksums from default stubs (#2888).
|
265
|
+
|
266
|
+
3.180.0 (2023-07-25)
|
267
|
+
------------------
|
268
|
+
|
269
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
270
|
+
|
271
|
+
3.179.0 (2023-07-24)
|
272
|
+
------------------
|
273
|
+
|
274
|
+
* Feature - Add `checksum_validated` method to response.
|
275
|
+
|
276
|
+
3.178.0 (2023-07-11)
|
277
|
+
------------------
|
278
|
+
|
279
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
280
|
+
|
281
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
282
|
+
|
283
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
284
|
+
|
285
|
+
* Feature - Add support for configuring the endpoint URL in the shared configuration file or via an environment variable for a specific AWS service or all AWS services.
|
286
|
+
|
287
|
+
3.177.0 (2023-07-06)
|
288
|
+
------------------
|
289
|
+
|
290
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
291
|
+
|
292
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
293
|
+
|
294
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
295
|
+
|
296
|
+
* Feature - Add support for Request Compression.
|
297
|
+
|
298
|
+
3.176.1 (2023-06-29)
|
299
|
+
------------------
|
300
|
+
|
301
|
+
* Issue - Fix signing for S3/S3 Control and `aws-crt` gem for certain object keys (#2849).
|
302
|
+
|
303
|
+
* Issue - Ensure `SSOCredentials` `#expiration` is a `Time` (#2874)
|
304
|
+
|
305
|
+
3.176.0 (2023-06-28)
|
306
|
+
------------------
|
307
|
+
|
308
|
+
* Feature - Add :expiration accessor to `CredentialProvider` and do not refresh credentials when checking expiration (#2872).
|
309
|
+
|
310
|
+
3.175.0 (2023-06-15)
|
311
|
+
------------------
|
312
|
+
|
313
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
314
|
+
|
315
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
316
|
+
|
317
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
318
|
+
|
319
|
+
3.174.0 (2023-05-31)
|
320
|
+
------------------
|
321
|
+
|
322
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
323
|
+
|
324
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
325
|
+
|
326
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
327
|
+
|
328
|
+
* Feature - Improve User-Agent metrics tracking.
|
329
|
+
|
330
|
+
3.173.1 (2023-05-24)
|
331
|
+
------------------
|
332
|
+
|
333
|
+
* Issue - Updated `checksum_algorithm` plugin to use IO.copy_stream for JRuby.
|
334
|
+
|
335
|
+
3.173.0 (2023-05-18)
|
336
|
+
------------------
|
337
|
+
|
338
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
339
|
+
|
340
|
+
3.172.0 (2023-05-08)
|
341
|
+
------------------
|
342
|
+
|
343
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
344
|
+
|
345
|
+
* Feature - Add :region option to `Aws::Log::Formatter`.
|
346
|
+
|
347
|
+
3.171.1 (2023-05-04)
|
348
|
+
------------------
|
349
|
+
|
350
|
+
* Issue - Fix error code parsing in AWS query compatible JSON services.
|
351
|
+
|
352
|
+
3.171.0 (2023-03-22)
|
353
|
+
------------------
|
354
|
+
|
355
|
+
* Feature - Add support for `AWS_CONTAINER_CREDENTIALS_FULL_URI` and `AWS_CONTAINER_AUTHORIZATION_TOKEN` environment variables to `ECSCredentials`.
|
356
|
+
|
357
|
+
3.170.1 (2023-03-17)
|
358
|
+
------------------
|
359
|
+
|
360
|
+
* Issue - Reduce memory usage in H2::Connection when `http_wire_log` is not set.
|
361
|
+
|
362
|
+
3.170.0 (2023-01-25)
|
363
|
+
------------------
|
364
|
+
|
365
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
366
|
+
|
367
|
+
3.169.0 (2023-01-18)
|
368
|
+
------------------
|
369
|
+
|
370
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
371
|
+
|
372
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
373
|
+
|
374
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
375
|
+
|
376
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code for STS, SSO, and SSOOIDC.
|
377
|
+
|
378
|
+
3.168.4 (2022-12-08)
|
379
|
+
------------------
|
380
|
+
|
381
|
+
* Issue - Fix Sign to not sign Sigv2 requests to S3.
|
382
|
+
|
383
|
+
3.168.3 (2022-12-02)
|
384
|
+
------------------
|
385
|
+
|
386
|
+
* Issue - Retry S3's `BadDigest` error
|
387
|
+
|
388
|
+
3.168.2 (2022-11-29)
|
389
|
+
------------------
|
390
|
+
|
391
|
+
* Issue - Allow region resolution in `AssumeRoleCredentials` from `CredentialProviderChain`.
|
392
|
+
|
393
|
+
3.168.1 (2022-11-18)
|
394
|
+
------------------
|
395
|
+
|
396
|
+
* Issue - Fix initialization of SSOTokenProvider when `AWS_PROFILE` is specified.
|
397
|
+
|
398
|
+
3.168.0 (2022-11-17)
|
399
|
+
------------------
|
400
|
+
|
401
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
402
|
+
|
403
|
+
3.167.0 (2022-11-09)
|
404
|
+
------------------
|
405
|
+
|
406
|
+
* Issue - Ensure the stream_thread is not killed before H2 connection status is updated (#2779).
|
407
|
+
|
408
|
+
* Feature - Add token refresh support to `SSOCredentialProvider`.
|
409
|
+
|
410
|
+
3.166.0 (2022-10-26)
|
411
|
+
------------------
|
412
|
+
|
413
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
414
|
+
|
415
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
416
|
+
|
417
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
418
|
+
|
419
|
+
3.165.1 (2022-10-25)
|
420
|
+
------------------
|
421
|
+
|
422
|
+
* Issue - Require the SignatureV4 plugin to fix compatability with older `aws-sdk-s3` versions (#2774).
|
423
|
+
|
424
|
+
3.165.0 (2022-10-25)
|
425
|
+
------------------
|
426
|
+
|
427
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
428
|
+
|
429
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
430
|
+
|
431
|
+
* 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.
|
432
|
+
|
433
|
+
3.164.0 (2022-10-21)
|
434
|
+
------------------
|
435
|
+
|
436
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
437
|
+
|
438
|
+
3.163.0 (2022-10-20)
|
439
|
+
------------------
|
440
|
+
|
441
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
442
|
+
|
443
|
+
3.162.0 (2022-10-19)
|
444
|
+
------------------
|
445
|
+
|
446
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
447
|
+
|
448
|
+
3.161.0 (2022-10-18)
|
449
|
+
------------------
|
450
|
+
|
451
|
+
* Feature - Support AwsQueryCompatible trait to read error code from x-amzn-query-error header.
|
452
|
+
|
453
|
+
3.160.0 (2022-10-13)
|
454
|
+
------------------
|
455
|
+
|
456
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
457
|
+
|
458
|
+
3.159.0 (2022-10-07)
|
459
|
+
------------------
|
460
|
+
|
461
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
462
|
+
|
463
|
+
3.158.1 (2022-10-06)
|
464
|
+
------------------
|
465
|
+
|
466
|
+
* Issue - Ensure that the ReadCallbackIO is always unwrapped (#2761).
|
467
|
+
|
468
|
+
3.158.0 (2022-09-30)
|
469
|
+
------------------
|
470
|
+
|
471
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
472
|
+
|
473
|
+
3.157.0 (2022-09-29)
|
474
|
+
------------------
|
475
|
+
|
476
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
477
|
+
|
478
|
+
3.156.0 (2022-09-27)
|
479
|
+
------------------
|
480
|
+
|
481
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
482
|
+
|
483
|
+
3.155.0 (2022-09-26)
|
484
|
+
------------------
|
485
|
+
|
486
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
487
|
+
|
488
|
+
3.154.0 (2022-09-23)
|
489
|
+
------------------
|
490
|
+
|
491
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
492
|
+
|
493
|
+
3.153.0 (2022-09-22)
|
494
|
+
------------------
|
495
|
+
|
496
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
497
|
+
|
498
|
+
3.152.0 (2022-09-21)
|
499
|
+
------------------
|
500
|
+
|
501
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
502
|
+
|
503
|
+
3.151.0 (2022-09-20)
|
504
|
+
------------------
|
505
|
+
|
506
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
507
|
+
|
508
|
+
3.150.0 (2022-09-19)
|
509
|
+
------------------
|
510
|
+
|
511
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
512
|
+
|
513
|
+
3.149.0 (2022-09-16)
|
514
|
+
------------------
|
515
|
+
|
516
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
517
|
+
|
518
|
+
3.148.0 (2022-09-15)
|
519
|
+
------------------
|
520
|
+
|
521
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
522
|
+
|
523
|
+
3.147.0 (2022-09-14)
|
524
|
+
------------------
|
525
|
+
|
526
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
527
|
+
|
528
|
+
3.146.0 (2022-09-13)
|
529
|
+
------------------
|
530
|
+
|
531
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
532
|
+
|
533
|
+
3.145.0 (2022-09-12)
|
534
|
+
------------------
|
535
|
+
|
536
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
537
|
+
|
538
|
+
3.144.0 (2022-09-09)
|
539
|
+
------------------
|
540
|
+
|
541
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
542
|
+
|
543
|
+
3.143.0 (2022-09-08)
|
544
|
+
------------------
|
545
|
+
|
546
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
547
|
+
|
548
|
+
3.142.0 (2022-09-07)
|
549
|
+
------------------
|
550
|
+
|
551
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
552
|
+
|
553
|
+
3.141.0 (2022-09-06)
|
554
|
+
------------------
|
555
|
+
|
556
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
557
|
+
|
558
|
+
3.140.0 (2022-09-02)
|
559
|
+
------------------
|
560
|
+
|
561
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
562
|
+
|
563
|
+
3.139.0 (2022-09-01)
|
564
|
+
------------------
|
565
|
+
|
566
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
567
|
+
|
568
|
+
3.138.0 (2022-08-31)
|
569
|
+
------------------
|
570
|
+
|
571
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
572
|
+
|
573
|
+
3.137.0 (2022-08-30)
|
574
|
+
------------------
|
575
|
+
|
576
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
577
|
+
|
578
|
+
* Issue - Fix errors in recursion detection when `_X_AMZN_TRACE_ID` is unset (#2748).
|
579
|
+
|
580
|
+
3.136.0 (2022-08-25)
|
581
|
+
------------------
|
582
|
+
|
583
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
584
|
+
|
585
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
586
|
+
|
587
|
+
3.135.0 (2022-08-24)
|
588
|
+
------------------
|
589
|
+
|
590
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
591
|
+
|
592
|
+
3.134.0 (2022-08-23)
|
593
|
+
------------------
|
594
|
+
|
595
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
596
|
+
|
597
|
+
* Feature - Add support for Bearer Token Authentication and TokenProviders.
|
598
|
+
|
599
|
+
* Issue - Validate that `_X_AMZN_TRACE_ID` ENV value contains only valid, non-control characters.
|
600
|
+
|
601
|
+
3.133.0 (2022-08-22)
|
602
|
+
------------------
|
603
|
+
|
604
|
+
* Feature - Moved functionality from `aws-sdk-ssooidc` into core.
|
605
|
+
|
606
|
+
3.132.0 (2022-08-08)
|
607
|
+
------------------
|
608
|
+
|
609
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
610
|
+
|
611
|
+
3.131.6 (2022-08-03)
|
612
|
+
------------------
|
613
|
+
|
614
|
+
* Issue - Fix typo in `RecursionDetection`, change amz to amzn in header and env name.
|
615
|
+
|
616
|
+
3.131.5 (2022-07-28)
|
617
|
+
------------------
|
618
|
+
|
619
|
+
* Issue - Fix `to_json` usage in nested hashes by defining `as_json` (#2733).
|
620
|
+
|
621
|
+
3.131.4 (2022-07-27)
|
622
|
+
------------------
|
623
|
+
|
624
|
+
* Issue - Fix `to_json` usage on pageable responses when using Rails (#2733).
|
625
|
+
* Issue - Use `expand_path` on credential/config paths in SharedConfig (#2735).
|
626
|
+
|
627
|
+
3.131.3 (2022-07-18)
|
628
|
+
------------------
|
629
|
+
|
630
|
+
* Issue - Add support for serializing shapes on the body with `jsonvalue` members.
|
631
|
+
|
632
|
+
3.131.2 (2022-06-20)
|
633
|
+
------------------
|
634
|
+
|
635
|
+
* Issue - Populate context :request_id for XML error responses.
|
636
|
+
|
637
|
+
3.131.1 (2022-05-20)
|
638
|
+
------------------
|
639
|
+
|
640
|
+
* Issue - Bump the minimum version of `jmespath` dependency.
|
641
|
+
|
642
|
+
3.131.0 (2022-05-16)
|
643
|
+
------------------
|
644
|
+
|
645
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
646
|
+
|
647
|
+
3.130.2 (2022-04-22)
|
648
|
+
------------------
|
649
|
+
|
650
|
+
* Issue - Don't pass `:before_refresh` to Client constructors in RefreshingCredential implementations (#2690).
|
651
|
+
|
652
|
+
3.130.1 (2022-04-12)
|
653
|
+
------------------
|
654
|
+
|
655
|
+
* Issue - Don't call `refresh!` on non-refreshable `Credentials` when retrying errors (#2685).
|
656
|
+
|
657
|
+
3.130.0 (2022-03-11)
|
658
|
+
------------------
|
659
|
+
|
660
|
+
* Feature - Asynchronously refresh AWS credentials (#2641).
|
661
|
+
|
662
|
+
* Issue - Add x-amz-region-set to list of headers deleted for re-sign.
|
663
|
+
|
664
|
+
3.129.1 (2022-03-10)
|
665
|
+
------------------
|
666
|
+
|
667
|
+
* Issue - Make stubs thread safe by creating new responses for each operation call (#2675).
|
668
|
+
|
669
|
+
3.129.0 (2022-03-08)
|
670
|
+
------------------
|
671
|
+
|
672
|
+
* Feature - Add support for cases when `InstanceProfileCredentials` (IMDS) is unable to refresh credentials.
|
673
|
+
|
674
|
+
3.128.1 (2022-03-07)
|
675
|
+
------------------
|
676
|
+
|
677
|
+
* Issue - Fixed `Aws::PageableResponse` invalidating Ruby's global constant cache.
|
678
|
+
|
679
|
+
3.128.0 (2022-03-04)
|
680
|
+
------------------
|
681
|
+
|
682
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
683
|
+
|
684
|
+
3.127.0 (2022-02-24)
|
685
|
+
------------------
|
686
|
+
|
687
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
688
|
+
|
689
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
690
|
+
|
691
|
+
* Feature - Support `HttpChecksum` trait for requests and responses.
|
692
|
+
|
693
|
+
3.126.2 (2022-02-16)
|
694
|
+
------------------
|
695
|
+
|
696
|
+
* Issue - Add a before_refresh callback to AssumeRoleCredentials (#2529).
|
697
|
+
* Issue - Raise a `NoSuchProfileError` when config and credentials files don't exist.
|
698
|
+
|
699
|
+
3.126.1 (2022-02-14)
|
700
|
+
------------------
|
701
|
+
|
702
|
+
* Issue - Set `create_time` on IMDS tokens before fetch to reduce chance of using expired tokens and retry failures due to using expired tokens.
|
703
|
+
|
704
|
+
3.126.0 (2022-02-03)
|
705
|
+
------------------
|
706
|
+
|
707
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
708
|
+
|
709
|
+
* Feature - Add support for recursion detection.
|
710
|
+
|
711
|
+
3.125.6 (2022-02-02)
|
712
|
+
------------------
|
713
|
+
|
714
|
+
* Issue - Ensure default message for ServiceError is a string (#2643).
|
715
|
+
|
716
|
+
3.125.5 (2022-01-19)
|
717
|
+
------------------
|
718
|
+
|
719
|
+
* Issue - Correctly serialize empty header lists.
|
720
|
+
|
721
|
+
3.125.4 (2022-01-18)
|
722
|
+
------------------
|
723
|
+
|
724
|
+
* Issue - Add `InternalError` to `ErrorInspector` for S3 errors.
|
725
|
+
|
726
|
+
|
727
|
+
3.125.3 (2022-01-12)
|
728
|
+
------------------
|
729
|
+
|
730
|
+
* Issue - Add `ExpiredTokenException` to `ErrorInspector` for Kinesis errors.
|
731
|
+
|
732
|
+
3.125.2 (2022-01-10)
|
733
|
+
------------------
|
734
|
+
|
735
|
+
* Issue - Correctly serialize lists of strings in headers with quotes and commas.
|
736
|
+
|
737
|
+
3.125.1 (2022-01-04)
|
738
|
+
------------------
|
739
|
+
|
740
|
+
* Issue - Parse a response with consecutive spaces correctly when ox is used as the XML parser.
|
741
|
+
|
742
|
+
3.125.0 (2021-12-21)
|
743
|
+
------------------
|
744
|
+
|
745
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
746
|
+
|
747
|
+
* Feature - Add `:defaults_mode` configuration - that determines how certain default configuration options are resolved in the SDK.
|
748
|
+
|
749
|
+
3.124.0 (2021-11-30)
|
750
|
+
------------------
|
751
|
+
|
752
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
753
|
+
|
754
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
755
|
+
|
756
|
+
3.123.0 (2021-11-23)
|
757
|
+
------------------
|
758
|
+
|
759
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
760
|
+
|
761
|
+
3.122.1 (2021-11-09)
|
762
|
+
------------------
|
763
|
+
|
764
|
+
* Issue - Correctly serialize/deserialize header lists.
|
765
|
+
|
766
|
+
3.122.0 (2021-11-04)
|
767
|
+
------------------
|
768
|
+
|
769
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
770
|
+
|
771
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
772
|
+
|
773
|
+
* Issue - Fix parsing of ISO8601 timestamps with millisecond precision in headers.
|
774
|
+
|
775
|
+
* 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.
|
776
|
+
|
777
|
+
* 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.
|
778
|
+
|
779
|
+
3.121.6 (2021-11-02)
|
780
|
+
------------------
|
781
|
+
|
782
|
+
* Issue - Improve `SSOCredentials` error handling when profile file does not exist (#2605)
|
783
|
+
|
784
|
+
3.121.5 (2021-10-29)
|
785
|
+
------------------
|
786
|
+
|
787
|
+
* Issue - bump minimum version of `aws-partitions` (#2603).
|
788
|
+
|
789
|
+
3.121.4 (2021-10-28)
|
790
|
+
------------------
|
791
|
+
|
792
|
+
* Issue - This version has been yanked. (#2603).
|
793
|
+
|
794
|
+
* Issue - use the `EndpointProvider` to lookup signing region and name.
|
795
|
+
|
796
|
+
3.121.3 (2021-10-20)
|
797
|
+
------------------
|
798
|
+
|
799
|
+
* Issue - Use endpointPrefix when looking up the `signing_region` from the `EndpointProvider`.
|
800
|
+
|
801
|
+
3.121.2 (2021-10-18)
|
802
|
+
------------------
|
803
|
+
|
804
|
+
* Issue - Fix an issue where Rest JSON services do not have a `Content-Type` header.
|
805
|
+
|
806
|
+
* Issue - Remove blank `Content-Type` header from Net::HTTP handler, and prevent a default from being set.
|
807
|
+
|
808
|
+
* Issue - Set `Content-Length` only for HTTP methods that take a body.
|
809
|
+
|
810
|
+
3.121.1 (2021-09-24)
|
811
|
+
------------------
|
812
|
+
|
813
|
+
* Issue - Fix error in finding union member for boolean shapes with `false` values.
|
814
|
+
|
815
|
+
3.121.0 (2021-09-02)
|
816
|
+
------------------
|
817
|
+
|
818
|
+
* Feature - Add support for S3 Multi-region access point configuration.
|
819
|
+
|
820
|
+
3.120.0 (2021-09-01)
|
821
|
+
------------------
|
822
|
+
|
823
|
+
* Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 1.9, 2.0, 2.1, and 2.2.
|
824
|
+
|
825
|
+
3.119.1 (2021-08-20)
|
826
|
+
------------------
|
827
|
+
|
828
|
+
* Issue - Refactored `Aws::Json::Engine` to remove dead code and replaced usage of `JSON.load` with `JSON.parse`.
|
829
|
+
|
830
|
+
3.119.0 (2021-07-30)
|
831
|
+
------------------
|
832
|
+
|
833
|
+
* 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)
|
834
|
+
|
835
|
+
3.118.0 (2021-07-28)
|
836
|
+
------------------
|
837
|
+
|
838
|
+
* Feature - Add support for Tagged Unions using a "sealed" classes like approach where each union member has a corresponding subclass.
|
839
|
+
|
4
840
|
3.117.0 (2021-07-12)
|
5
841
|
------------------
|
6
842
|
|