aws-sdk-core 3.124.0 → 3.186.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +552 -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/encode_handler.rb +12 -1
- data/lib/aws-sdk-core/client_stubs.rb +5 -1
- data/lib/aws-sdk-core/credential_provider.rb +3 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +8 -5
- data/lib/aws-sdk-core/ec2_metadata.rb +3 -2
- data/lib/aws-sdk-core/ecs_credentials.rb +121 -53
- 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 +131 -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 +15 -2
- data/lib/aws-sdk-core/ini_parser.rb +7 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +124 -31
- data/lib/aws-sdk-core/json/error_handler.rb +20 -1
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/formatter.rb +6 -0
- data/lib/aws-sdk-core/pageable_response.rb +81 -32
- data/lib/aws-sdk-core/param_validator.rb +2 -2
- data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
- data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +24 -0
- 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 +8 -1
- data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +34 -6
- data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +111 -30
- data/lib/aws-sdk-core/plugins/request_compression.rb +217 -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 +21 -5
- data/lib/aws-sdk-core/plugins/sign.rb +201 -0
- data/lib/aws-sdk-core/plugins/signature_v2.rb +1 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +15 -8
- data/lib/aws-sdk-core/plugins/stub_responses.rb +5 -1
- data/lib/aws-sdk-core/plugins/user_agent.rb +117 -14
- data/lib/aws-sdk-core/process_credentials.rb +9 -11
- data/lib/aws-sdk-core/refreshing_credentials.rb +41 -16
- 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/headers.rb +11 -8
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +43 -29
- data/lib/aws-sdk-core/shared_config.rb +108 -12
- data/lib/aws-sdk-core/sso_credentials.rb +91 -50
- 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 +6 -4
- 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/waiters/poller.rb +3 -1
- data/lib/aws-sdk-core/xml/error_handler.rb +7 -0
- 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.rb +17 -0
- data/lib/aws-sdk-sso/client.rb +85 -12
- 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 +76 -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 +626 -0
- data/lib/aws-sdk-ssooidc/client_api.rb +216 -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 +58 -0
- data/lib/aws-sdk-ssooidc/errors.rb +290 -0
- data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
- data/lib/aws-sdk-ssooidc/resource.rb +26 -0
- data/lib/aws-sdk-ssooidc/types.rb +502 -0
- data/lib/aws-sdk-ssooidc.rb +59 -0
- data/lib/aws-sdk-sts/client.rb +332 -263
- data/lib/aws-sdk-sts/client_api.rb +12 -1
- 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 +84 -0
- data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +5 -1
- data/lib/aws-sdk-sts/presigner.rb +13 -15
- data/lib/aws-sdk-sts/types.rb +121 -204
- data/lib/aws-sdk-sts.rb +5 -1
- data/lib/seahorse/client/async_base.rb +0 -1
- data/lib/seahorse/client/configuration.rb +1 -5
- data/lib/seahorse/client/h2/connection.rb +12 -11
- data/lib/seahorse/client/net_http/connection_pool.rb +7 -0
- data/lib/seahorse/client/plugins/net_http.rb +33 -2
- 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/util.rb +4 -0
- metadata +62 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b996ac6ca7e1d4d61926d24af262a70a2d2da40b09a8999165721b58c8995a1
|
4
|
+
data.tar.gz: a931f4b08ac8b2fd6342abbd4b799b649ee057c9e1bb9dc8cb9581ef30030f30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9655a1c8c71af67476d77e3248f8fd95e994aee2ac1a1c8960d9f12c4c7823ef624029661683b346653cd671c048ee00f01938fcfcade24b2a60ea344c886ec
|
7
|
+
data.tar.gz: 97cec2c4e76b50f1224f92111d47240ab8f9d318489ec30607a206b4c83623033972d4ed72a466d90eef2957eb9ae1cf2c416cc276f9a8d4bb2c057fe7f1e968
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,558 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
3.186.0 (2023-11-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* 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.
|
8
|
+
|
9
|
+
3.185.2 (2023-10-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Issue - Fix query string support to lists of booleans, floats, integers and timestamps per rest-json protocol.
|
13
|
+
|
14
|
+
3.185.1 (2023-10-05)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Issue - Ignore `__type` when deserializing Unions.
|
18
|
+
|
19
|
+
3.185.0 (2023-10-02)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
23
|
+
|
24
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
25
|
+
|
26
|
+
3.184.0 (2023-09-27)
|
27
|
+
------------------
|
28
|
+
|
29
|
+
* Feature - Change the `ServiceError` data member from read only to read/write.
|
30
|
+
|
31
|
+
3.183.1 (2023-09-25)
|
32
|
+
------------------
|
33
|
+
|
34
|
+
* Issue - Remove value inspection from param validation errors.
|
35
|
+
|
36
|
+
3.183.0 (2023-09-20)
|
37
|
+
------------------
|
38
|
+
|
39
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
40
|
+
|
41
|
+
3.182.0 (2023-09-19)
|
42
|
+
------------------
|
43
|
+
|
44
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
45
|
+
|
46
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
47
|
+
|
48
|
+
3.181.1 (2023-09-14)
|
49
|
+
------------------
|
50
|
+
|
51
|
+
* Issue - Fix host label validation in endpoint matchers.
|
52
|
+
|
53
|
+
3.181.0 (2023-08-22)
|
54
|
+
------------------
|
55
|
+
|
56
|
+
* Feature - Add support for `on_chunk_received` callback.
|
57
|
+
|
58
|
+
3.180.3 (2023-08-09)
|
59
|
+
------------------
|
60
|
+
|
61
|
+
* Issue - Add support for sso-session names with whitespace configured by the CLI `aws sso configure` command (#2895).
|
62
|
+
|
63
|
+
3.180.2 (2023-08-07)
|
64
|
+
------------------
|
65
|
+
|
66
|
+
* Issue - Fix parsing of ini files with mixes of blank properties and nested configurations.
|
67
|
+
|
68
|
+
3.180.1 (2023-07-31)
|
69
|
+
------------------
|
70
|
+
|
71
|
+
* Issue - Remove checksums from default stubs (#2888).
|
72
|
+
|
73
|
+
3.180.0 (2023-07-25)
|
74
|
+
------------------
|
75
|
+
|
76
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
77
|
+
|
78
|
+
3.179.0 (2023-07-24)
|
79
|
+
------------------
|
80
|
+
|
81
|
+
* Feature - Add `checksum_validated` method to response.
|
82
|
+
|
83
|
+
3.178.0 (2023-07-11)
|
84
|
+
------------------
|
85
|
+
|
86
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
87
|
+
|
88
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
89
|
+
|
90
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
91
|
+
|
92
|
+
* 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.
|
93
|
+
|
94
|
+
3.177.0 (2023-07-06)
|
95
|
+
------------------
|
96
|
+
|
97
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
98
|
+
|
99
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
100
|
+
|
101
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
102
|
+
|
103
|
+
* Feature - Add support for Request Compression.
|
104
|
+
|
105
|
+
3.176.1 (2023-06-29)
|
106
|
+
------------------
|
107
|
+
|
108
|
+
* Issue - Fix signing for S3/S3 Control and `aws-crt` gem for certain object keys (#2849).
|
109
|
+
|
110
|
+
* Issue - Ensure `SSOCredentials` `#expiration` is a `Time` (#2874)
|
111
|
+
|
112
|
+
3.176.0 (2023-06-28)
|
113
|
+
------------------
|
114
|
+
|
115
|
+
* Feature - Add :expiration accessor to `CredentialProvider` and do not refresh credentials when checking expiration (#2872).
|
116
|
+
|
117
|
+
3.175.0 (2023-06-15)
|
118
|
+
------------------
|
119
|
+
|
120
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
121
|
+
|
122
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
123
|
+
|
124
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
125
|
+
|
126
|
+
3.174.0 (2023-05-31)
|
127
|
+
------------------
|
128
|
+
|
129
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
130
|
+
|
131
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
132
|
+
|
133
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
134
|
+
|
135
|
+
* Feature - Improve User-Agent metrics tracking.
|
136
|
+
|
137
|
+
3.173.1 (2023-05-24)
|
138
|
+
------------------
|
139
|
+
|
140
|
+
* Issue - Updated `checksum_algorithm` plugin to use IO.copy_stream for JRuby.
|
141
|
+
|
142
|
+
3.173.0 (2023-05-18)
|
143
|
+
------------------
|
144
|
+
|
145
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
146
|
+
|
147
|
+
3.172.0 (2023-05-08)
|
148
|
+
------------------
|
149
|
+
|
150
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
151
|
+
|
152
|
+
* Feature - Add :region option to `Aws::Log::Formatter`.
|
153
|
+
|
154
|
+
3.171.1 (2023-05-04)
|
155
|
+
------------------
|
156
|
+
|
157
|
+
* Issue - Fix error code parsing in AWS query compatible JSON services.
|
158
|
+
|
159
|
+
3.171.0 (2023-03-22)
|
160
|
+
------------------
|
161
|
+
|
162
|
+
* Feature - Add support for `AWS_CONTAINER_CREDENTIALS_FULL_URI` and `AWS_CONTAINER_AUTHORIZATION_TOKEN` environment variables to `ECSCredentials`.
|
163
|
+
|
164
|
+
3.170.1 (2023-03-17)
|
165
|
+
------------------
|
166
|
+
|
167
|
+
* Issue - Reduce memory usage in H2::Connection when `http_wire_log` is not set.
|
168
|
+
|
169
|
+
3.170.0 (2023-01-25)
|
170
|
+
------------------
|
171
|
+
|
172
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
173
|
+
|
174
|
+
3.169.0 (2023-01-18)
|
175
|
+
------------------
|
176
|
+
|
177
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
178
|
+
|
179
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
180
|
+
|
181
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
182
|
+
|
183
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code for STS, SSO, and SSOOIDC.
|
184
|
+
|
185
|
+
3.168.4 (2022-12-08)
|
186
|
+
------------------
|
187
|
+
|
188
|
+
* Issue - Fix Sign to not sign Sigv2 requests to S3.
|
189
|
+
|
190
|
+
3.168.3 (2022-12-02)
|
191
|
+
------------------
|
192
|
+
|
193
|
+
* Issue - Retry S3's `BadDigest` error
|
194
|
+
|
195
|
+
3.168.2 (2022-11-29)
|
196
|
+
------------------
|
197
|
+
|
198
|
+
* Issue - Allow region resolution in `AssumeRoleCredentials` from `CredentialProviderChain`.
|
199
|
+
|
200
|
+
3.168.1 (2022-11-18)
|
201
|
+
------------------
|
202
|
+
|
203
|
+
* Issue - Fix initialization of SSOTokenProvider when `AWS_PROFILE` is specified.
|
204
|
+
|
205
|
+
3.168.0 (2022-11-17)
|
206
|
+
------------------
|
207
|
+
|
208
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
209
|
+
|
210
|
+
3.167.0 (2022-11-09)
|
211
|
+
------------------
|
212
|
+
|
213
|
+
* Issue - Ensure the stream_thread is not killed before H2 connection status is updated (#2779).
|
214
|
+
|
215
|
+
* Feature - Add token refresh support to `SSOCredentialProvider`.
|
216
|
+
|
217
|
+
3.166.0 (2022-10-26)
|
218
|
+
------------------
|
219
|
+
|
220
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
221
|
+
|
222
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
223
|
+
|
224
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
225
|
+
|
226
|
+
3.165.1 (2022-10-25)
|
227
|
+
------------------
|
228
|
+
|
229
|
+
* Issue - Require the SignatureV4 plugin to fix compatability with older `aws-sdk-s3` versions (#2774).
|
230
|
+
|
231
|
+
3.165.0 (2022-10-25)
|
232
|
+
------------------
|
233
|
+
|
234
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
235
|
+
|
236
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
237
|
+
|
238
|
+
* 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.
|
239
|
+
|
240
|
+
3.164.0 (2022-10-21)
|
241
|
+
------------------
|
242
|
+
|
243
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
244
|
+
|
245
|
+
3.163.0 (2022-10-20)
|
246
|
+
------------------
|
247
|
+
|
248
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
249
|
+
|
250
|
+
3.162.0 (2022-10-19)
|
251
|
+
------------------
|
252
|
+
|
253
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
254
|
+
|
255
|
+
3.161.0 (2022-10-18)
|
256
|
+
------------------
|
257
|
+
|
258
|
+
* Feature - Support AwsQueryCompatible trait to read error code from x-amzn-query-error header.
|
259
|
+
|
260
|
+
3.160.0 (2022-10-13)
|
261
|
+
------------------
|
262
|
+
|
263
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
264
|
+
|
265
|
+
3.159.0 (2022-10-07)
|
266
|
+
------------------
|
267
|
+
|
268
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
269
|
+
|
270
|
+
3.158.1 (2022-10-06)
|
271
|
+
------------------
|
272
|
+
|
273
|
+
* Issue - Ensure that the ReadCallbackIO is always unwrapped (#2761).
|
274
|
+
|
275
|
+
3.158.0 (2022-09-30)
|
276
|
+
------------------
|
277
|
+
|
278
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
279
|
+
|
280
|
+
3.157.0 (2022-09-29)
|
281
|
+
------------------
|
282
|
+
|
283
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
284
|
+
|
285
|
+
3.156.0 (2022-09-27)
|
286
|
+
------------------
|
287
|
+
|
288
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
289
|
+
|
290
|
+
3.155.0 (2022-09-26)
|
291
|
+
------------------
|
292
|
+
|
293
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
294
|
+
|
295
|
+
3.154.0 (2022-09-23)
|
296
|
+
------------------
|
297
|
+
|
298
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
299
|
+
|
300
|
+
3.153.0 (2022-09-22)
|
301
|
+
------------------
|
302
|
+
|
303
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
304
|
+
|
305
|
+
3.152.0 (2022-09-21)
|
306
|
+
------------------
|
307
|
+
|
308
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
309
|
+
|
310
|
+
3.151.0 (2022-09-20)
|
311
|
+
------------------
|
312
|
+
|
313
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
314
|
+
|
315
|
+
3.150.0 (2022-09-19)
|
316
|
+
------------------
|
317
|
+
|
318
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
319
|
+
|
320
|
+
3.149.0 (2022-09-16)
|
321
|
+
------------------
|
322
|
+
|
323
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
324
|
+
|
325
|
+
3.148.0 (2022-09-15)
|
326
|
+
------------------
|
327
|
+
|
328
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
329
|
+
|
330
|
+
3.147.0 (2022-09-14)
|
331
|
+
------------------
|
332
|
+
|
333
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
334
|
+
|
335
|
+
3.146.0 (2022-09-13)
|
336
|
+
------------------
|
337
|
+
|
338
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
339
|
+
|
340
|
+
3.145.0 (2022-09-12)
|
341
|
+
------------------
|
342
|
+
|
343
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
344
|
+
|
345
|
+
3.144.0 (2022-09-09)
|
346
|
+
------------------
|
347
|
+
|
348
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
349
|
+
|
350
|
+
3.143.0 (2022-09-08)
|
351
|
+
------------------
|
352
|
+
|
353
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
354
|
+
|
355
|
+
3.142.0 (2022-09-07)
|
356
|
+
------------------
|
357
|
+
|
358
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
359
|
+
|
360
|
+
3.141.0 (2022-09-06)
|
361
|
+
------------------
|
362
|
+
|
363
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
364
|
+
|
365
|
+
3.140.0 (2022-09-02)
|
366
|
+
------------------
|
367
|
+
|
368
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
369
|
+
|
370
|
+
3.139.0 (2022-09-01)
|
371
|
+
------------------
|
372
|
+
|
373
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
374
|
+
|
375
|
+
3.138.0 (2022-08-31)
|
376
|
+
------------------
|
377
|
+
|
378
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
379
|
+
|
380
|
+
3.137.0 (2022-08-30)
|
381
|
+
------------------
|
382
|
+
|
383
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
384
|
+
|
385
|
+
* Issue - Fix errors in recursion detection when `_X_AMZN_TRACE_ID` is unset (#2748).
|
386
|
+
|
387
|
+
3.136.0 (2022-08-25)
|
388
|
+
------------------
|
389
|
+
|
390
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
391
|
+
|
392
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
393
|
+
|
394
|
+
3.135.0 (2022-08-24)
|
395
|
+
------------------
|
396
|
+
|
397
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
398
|
+
|
399
|
+
3.134.0 (2022-08-23)
|
400
|
+
------------------
|
401
|
+
|
402
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
403
|
+
|
404
|
+
* Feature - Add support for Bearer Token Authentication and TokenProviders.
|
405
|
+
|
406
|
+
* Issue - Validate that `_X_AMZN_TRACE_ID` ENV value contains only valid, non-control characters.
|
407
|
+
|
408
|
+
3.133.0 (2022-08-22)
|
409
|
+
------------------
|
410
|
+
|
411
|
+
* Feature - Moved functionality from `aws-sdk-ssooidc` into core.
|
412
|
+
|
413
|
+
3.132.0 (2022-08-08)
|
414
|
+
------------------
|
415
|
+
|
416
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
417
|
+
|
418
|
+
3.131.6 (2022-08-03)
|
419
|
+
------------------
|
420
|
+
|
421
|
+
* Issue - Fix typo in `RecursionDetection`, change amz to amzn in header and env name.
|
422
|
+
|
423
|
+
3.131.5 (2022-07-28)
|
424
|
+
------------------
|
425
|
+
|
426
|
+
* Issue - Fix `to_json` usage in nested hashes by defining `as_json` (#2733).
|
427
|
+
|
428
|
+
3.131.4 (2022-07-27)
|
429
|
+
------------------
|
430
|
+
|
431
|
+
* Issue - Fix `to_json` usage on pageable responses when using Rails (#2733).
|
432
|
+
* Issue - Use `expand_path` on credential/config paths in SharedConfig (#2735).
|
433
|
+
|
434
|
+
3.131.3 (2022-07-18)
|
435
|
+
------------------
|
436
|
+
|
437
|
+
* Issue - Add support for serializing shapes on the body with `jsonvalue` members.
|
438
|
+
|
439
|
+
3.131.2 (2022-06-20)
|
440
|
+
------------------
|
441
|
+
|
442
|
+
* Issue - Populate context :request_id for XML error responses.
|
443
|
+
|
444
|
+
3.131.1 (2022-05-20)
|
445
|
+
------------------
|
446
|
+
|
447
|
+
* Issue - Bump the minimum version of `jmespath` dependency.
|
448
|
+
|
449
|
+
3.131.0 (2022-05-16)
|
450
|
+
------------------
|
451
|
+
|
452
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
453
|
+
|
454
|
+
3.130.2 (2022-04-22)
|
455
|
+
------------------
|
456
|
+
|
457
|
+
* Issue - Don't pass `:before_refresh` to Client constructors in RefreshingCredential implementations (#2690).
|
458
|
+
|
459
|
+
3.130.1 (2022-04-12)
|
460
|
+
------------------
|
461
|
+
|
462
|
+
* Issue - Don't call `refresh!` on non-refreshable `Credentials` when retrying errors (#2685).
|
463
|
+
|
464
|
+
3.130.0 (2022-03-11)
|
465
|
+
------------------
|
466
|
+
|
467
|
+
* Feature - Asynchronously refresh AWS credentials (#2641).
|
468
|
+
|
469
|
+
* Issue - Add x-amz-region-set to list of headers deleted for re-sign.
|
470
|
+
|
471
|
+
3.129.1 (2022-03-10)
|
472
|
+
------------------
|
473
|
+
|
474
|
+
* Issue - Make stubs thread safe by creating new responses for each operation call (#2675).
|
475
|
+
|
476
|
+
3.129.0 (2022-03-08)
|
477
|
+
------------------
|
478
|
+
|
479
|
+
* Feature - Add support for cases when `InstanceProfileCredentials` (IMDS) is unable to refresh credentials.
|
480
|
+
|
481
|
+
3.128.1 (2022-03-07)
|
482
|
+
------------------
|
483
|
+
|
484
|
+
* Issue - Fixed `Aws::PageableResponse` invalidating Ruby's global constant cache.
|
485
|
+
|
486
|
+
3.128.0 (2022-03-04)
|
487
|
+
------------------
|
488
|
+
|
489
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
490
|
+
|
491
|
+
3.127.0 (2022-02-24)
|
492
|
+
------------------
|
493
|
+
|
494
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
495
|
+
|
496
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
497
|
+
|
498
|
+
* Feature - Support `HttpChecksum` trait for requests and responses.
|
499
|
+
|
500
|
+
3.126.2 (2022-02-16)
|
501
|
+
------------------
|
502
|
+
|
503
|
+
* Issue - Add a before_refresh callback to AssumeRoleCredentials (#2529).
|
504
|
+
* Issue - Raise a `NoSuchProfileError` when config and credentials files don't exist.
|
505
|
+
|
506
|
+
3.126.1 (2022-02-14)
|
507
|
+
------------------
|
508
|
+
|
509
|
+
* Issue - Set `create_time` on IMDS tokens before fetch to reduce chance of using expired tokens and retry failures due to using expired tokens.
|
510
|
+
|
511
|
+
3.126.0 (2022-02-03)
|
512
|
+
------------------
|
513
|
+
|
514
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
515
|
+
|
516
|
+
* Feature - Add support for recursion detection.
|
517
|
+
|
518
|
+
3.125.6 (2022-02-02)
|
519
|
+
------------------
|
520
|
+
|
521
|
+
* Issue - Ensure default message for ServiceError is a string (#2643).
|
522
|
+
|
523
|
+
3.125.5 (2022-01-19)
|
524
|
+
------------------
|
525
|
+
|
526
|
+
* Issue - Correctly serialize empty header lists.
|
527
|
+
|
528
|
+
3.125.4 (2022-01-18)
|
529
|
+
------------------
|
530
|
+
|
531
|
+
* Issue - Add `InternalError` to `ErrorInspector` for S3 errors.
|
532
|
+
|
533
|
+
|
534
|
+
3.125.3 (2022-01-12)
|
535
|
+
------------------
|
536
|
+
|
537
|
+
* Issue - Add `ExpiredTokenException` to `ErrorInspector` for Kinesis errors.
|
538
|
+
|
539
|
+
3.125.2 (2022-01-10)
|
540
|
+
------------------
|
541
|
+
|
542
|
+
* Issue - Correctly serialize lists of strings in headers with quotes and commas.
|
543
|
+
|
544
|
+
3.125.1 (2022-01-04)
|
545
|
+
------------------
|
546
|
+
|
547
|
+
* Issue - Parse a response with consecutive spaces correctly when ox is used as the XML parser.
|
548
|
+
|
549
|
+
3.125.0 (2021-12-21)
|
550
|
+
------------------
|
551
|
+
|
552
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
553
|
+
|
554
|
+
* Feature - Add `:defaults_mode` configuration - that determines how certain default configuration options are resolved in the SDK.
|
555
|
+
|
4
556
|
3.124.0 (2021-11-30)
|
5
557
|
------------------
|
6
558
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.186.0
|