aws-sdk-core 3.114.0 → 3.180.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +617 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-defaults/default_configuration.rb +153 -0
  5. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  6. data/lib/aws-defaults.rb +3 -0
  7. data/lib/aws-sdk-core/arn.rb +13 -0
  8. data/lib/aws-sdk-core/assume_role_credentials.rb +21 -7
  9. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +14 -10
  10. data/lib/aws-sdk-core/binary/encode_handler.rb +12 -1
  11. data/lib/aws-sdk-core/client_stubs.rb +5 -1
  12. data/lib/aws-sdk-core/credential_provider.rb +3 -0
  13. data/lib/aws-sdk-core/credential_provider_chain.rb +10 -6
  14. data/lib/aws-sdk-core/ec2_metadata.rb +27 -7
  15. data/lib/aws-sdk-core/ecs_credentials.rb +121 -53
  16. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  17. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  18. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  19. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  20. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  21. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  22. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  23. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  24. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  25. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  26. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  27. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  28. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  29. data/lib/aws-sdk-core/endpoints.rb +78 -0
  30. data/lib/aws-sdk-core/errors.rb +18 -1
  31. data/lib/aws-sdk-core/ini_parser.rb +7 -0
  32. data/lib/aws-sdk-core/instance_profile_credentials.rb +124 -18
  33. data/lib/aws-sdk-core/json/error_handler.rb +20 -1
  34. data/lib/aws-sdk-core/json/json_engine.rb +10 -8
  35. data/lib/aws-sdk-core/json/oj_engine.rb +33 -6
  36. data/lib/aws-sdk-core/json/parser.rb +8 -0
  37. data/lib/aws-sdk-core/json.rb +8 -26
  38. data/lib/aws-sdk-core/log/formatter.rb +6 -0
  39. data/lib/aws-sdk-core/log/param_filter.rb +9 -1
  40. data/lib/aws-sdk-core/pageable_response.rb +81 -26
  41. data/lib/aws-sdk-core/pager.rb +3 -0
  42. data/lib/aws-sdk-core/param_validator.rb +29 -0
  43. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  44. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +27 -1
  46. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +6 -2
  48. data/lib/aws-sdk-core/plugins/http_checksum.rb +8 -1
  49. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +34 -6
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +17 -0
  51. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +16 -1
  52. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  53. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +144 -17
  54. data/lib/aws-sdk-core/plugins/request_compression.rb +217 -0
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +1 -1
  56. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +7 -4
  57. data/lib/aws-sdk-core/plugins/retry_errors.rb +21 -5
  58. data/lib/aws-sdk-core/plugins/sign.rb +201 -0
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +1 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +28 -31
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +5 -1
  62. data/lib/aws-sdk-core/plugins/user_agent.rb +117 -14
  63. data/lib/aws-sdk-core/process_credentials.rb +9 -11
  64. data/lib/aws-sdk-core/refreshing_credentials.rb +41 -16
  65. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  66. data/lib/aws-sdk-core/rest/handler.rb +1 -1
  67. data/lib/aws-sdk-core/rest/request/body.rb +19 -1
  68. data/lib/aws-sdk-core/rest/request/headers.rb +14 -6
  69. data/lib/aws-sdk-core/rest/response/headers.rb +3 -1
  70. data/lib/aws-sdk-core/shared_config.rb +127 -13
  71. data/lib/aws-sdk-core/shared_credentials.rb +7 -1
  72. data/lib/aws-sdk-core/sso_credentials.rb +92 -52
  73. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  74. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  75. data/lib/aws-sdk-core/structure.rb +16 -5
  76. data/lib/aws-sdk-core/stubbing/protocols/json.rb +1 -1
  77. data/lib/aws-sdk-core/stubbing/stub_data.rb +11 -0
  78. data/lib/aws-sdk-core/token.rb +31 -0
  79. data/lib/aws-sdk-core/token_provider.rb +15 -0
  80. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  81. data/lib/aws-sdk-core/waiters/poller.rb +3 -1
  82. data/lib/aws-sdk-core/xml/builder.rb +1 -1
  83. data/lib/aws-sdk-core/xml/error_handler.rb +7 -0
  84. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  85. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -1
  86. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +0 -8
  87. data/lib/aws-sdk-core/xml/parser/frame.rb +23 -0
  88. data/lib/aws-sdk-core.rb +20 -0
  89. data/lib/aws-sdk-sso/client.rb +97 -15
  90. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  91. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  92. data/lib/aws-sdk-sso/endpoints.rb +72 -0
  93. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  94. data/lib/aws-sdk-sso/types.rb +8 -43
  95. data/lib/aws-sdk-sso.rb +5 -1
  96. data/lib/aws-sdk-ssooidc/client.rb +626 -0
  97. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  98. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  99. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  100. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  101. data/lib/aws-sdk-ssooidc/endpoints.rb +58 -0
  102. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  103. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  104. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  105. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  106. data/lib/aws-sdk-ssooidc.rb +59 -0
  107. data/lib/aws-sdk-sts/client.rb +535 -472
  108. data/lib/aws-sdk-sts/client_api.rb +10 -0
  109. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  110. data/lib/aws-sdk-sts/endpoint_provider.rb +112 -0
  111. data/lib/aws-sdk-sts/endpoints.rb +136 -0
  112. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  113. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +5 -1
  114. data/lib/aws-sdk-sts/presigner.rb +13 -9
  115. data/lib/aws-sdk-sts/types.rb +248 -313
  116. data/lib/aws-sdk-sts.rb +5 -1
  117. data/lib/seahorse/client/async_base.rb +0 -1
  118. data/lib/seahorse/client/configuration.rb +5 -5
  119. data/lib/seahorse/client/h2/connection.rb +26 -22
  120. data/lib/seahorse/client/h2/handler.rb +4 -5
  121. data/lib/seahorse/client/net_http/connection_pool.rb +7 -0
  122. data/lib/seahorse/client/net_http/handler.rb +15 -7
  123. data/lib/seahorse/client/net_http/patches.rb +13 -84
  124. data/lib/seahorse/client/plugins/content_length.rb +11 -5
  125. data/lib/seahorse/client/plugins/net_http.rb +33 -2
  126. data/lib/seahorse/client/plugins/request_callback.rb +9 -9
  127. data/lib/seahorse/client/response.rb +6 -0
  128. data/lib/seahorse/model/operation.rb +6 -0
  129. data/lib/seahorse/model/shapes.rb +25 -0
  130. data/lib/seahorse/util.rb +4 -0
  131. metadata +64 -12
  132. data/lib/aws-sdk-sso/plugins/content_type.rb +0 -25
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 05c92208568d6da15a22a13751f95250f41f75aee075c229041d9e5143508541
4
- data.tar.gz: 117caabce8194db97c873fd92597cbfcd1628f35f218233c7dd45d745e0796af
3
+ metadata.gz: 9d6a082ec31cbf3212a495241a9d0ef606f1569fc4e808d052794616caee39ce
4
+ data.tar.gz: e107003d7a98303241d8d9f016f4a81d9d0c3f0012e355e172911ede5aa80701
5
5
  SHA512:
6
- metadata.gz: c02e113926180f3a3fc82788b1017501ca7ff1e247dbaded8d3ea78cd35d3f5e4fb2c2e546e8327b1060d61824feab5750f820a04a3ae4d406c82c3ca25ad905
7
- data.tar.gz: e6eca7b1d0823f668bcff24331006def2d46ff43672da88612472e4ec2474f1bba1b0dc410f6e4a6897017f21cf7e4a452614a4657228d5246d3fba3895703a7
6
+ metadata.gz: b73a9b216e87fd749add538b8ca9f3531d9d5d0b5ae97b404056dbaafb39bbf5597096a016a34e36361a86d4b1802721b22f57e74674ba2d976ce6f124ab6aa7
7
+ data.tar.gz: fd4859dd906959788161d88275c470109bb5798bc8c19e62f173e789f1c89d657043983da6d66a40b346082d74d8e4f86a91e0ec4d9dca73f7dd8c9e18ca66e1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,623 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.180.2 (2023-08-07)
5
+ ------------------
6
+
7
+ * Issue - Fix parsing of ini files with mixes of blank properties and nested configurations.
8
+
9
+ 3.180.1 (2023-07-31)
10
+ ------------------
11
+
12
+ * Issue - Remove checksums from default stubs (#2888).
13
+
14
+ 3.180.0 (2023-07-25)
15
+ ------------------
16
+
17
+ * Feature - Updated Aws::STS::Client with the latest API changes.
18
+
19
+ 3.179.0 (2023-07-24)
20
+ ------------------
21
+
22
+ * Feature - Add `checksum_validated` method to response.
23
+
24
+ 3.178.0 (2023-07-11)
25
+ ------------------
26
+
27
+ * Feature - Updated Aws::STS::Client with the latest API changes.
28
+
29
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
30
+
31
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
32
+
33
+ * 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.
34
+
35
+ 3.177.0 (2023-07-06)
36
+ ------------------
37
+
38
+ * Feature - Updated Aws::STS::Client with the latest API changes.
39
+
40
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
41
+
42
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
43
+
44
+ * Feature - Add support for Request Compression.
45
+
46
+ 3.176.1 (2023-06-29)
47
+ ------------------
48
+
49
+ * Issue - Fix signing for S3/S3 Control and `aws-crt` gem for certain object keys (#2849).
50
+
51
+ * Issue - Ensure `SSOCredentials` `#expiration` is a `Time` (#2874)
52
+
53
+ 3.176.0 (2023-06-28)
54
+ ------------------
55
+
56
+ * Feature - Add :expiration accessor to `CredentialProvider` and do not refresh credentials when checking expiration (#2872).
57
+
58
+ 3.175.0 (2023-06-15)
59
+ ------------------
60
+
61
+ * Feature - Updated Aws::STS::Client with the latest API changes.
62
+
63
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
64
+
65
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
66
+
67
+ 3.174.0 (2023-05-31)
68
+ ------------------
69
+
70
+ * Feature - Updated Aws::STS::Client with the latest API changes.
71
+
72
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
73
+
74
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
75
+
76
+ * Feature - Improve User-Agent metrics tracking.
77
+
78
+ 3.173.1 (2023-05-24)
79
+ ------------------
80
+
81
+ * Issue - Updated `checksum_algorithm` plugin to use IO.copy_stream for JRuby.
82
+
83
+ 3.173.0 (2023-05-18)
84
+ ------------------
85
+
86
+ * Feature - Updated Aws::STS::Client with the latest API changes.
87
+
88
+ 3.172.0 (2023-05-08)
89
+ ------------------
90
+
91
+ * Feature - Updated Aws::STS::Client with the latest API changes.
92
+
93
+ * Feature - Add :region option to `Aws::Log::Formatter`.
94
+
95
+ 3.171.1 (2023-05-04)
96
+ ------------------
97
+
98
+ * Issue - Fix error code parsing in AWS query compatible JSON services.
99
+
100
+ 3.171.0 (2023-03-22)
101
+ ------------------
102
+
103
+ * Feature - Add support for `AWS_CONTAINER_CREDENTIALS_FULL_URI` and `AWS_CONTAINER_AUTHORIZATION_TOKEN` environment variables to `ECSCredentials`.
104
+
105
+ 3.170.1 (2023-03-17)
106
+ ------------------
107
+
108
+ * Issue - Reduce memory usage in H2::Connection when `http_wire_log` is not set.
109
+
110
+ 3.170.0 (2023-01-25)
111
+ ------------------
112
+
113
+ * Feature - Updated Aws::STS::Client with the latest API changes.
114
+
115
+ 3.169.0 (2023-01-18)
116
+ ------------------
117
+
118
+ * Feature - Updated Aws::STS::Client with the latest API changes.
119
+
120
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
121
+
122
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
123
+
124
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code for STS, SSO, and SSOOIDC.
125
+
126
+ 3.168.4 (2022-12-08)
127
+ ------------------
128
+
129
+ * Issue - Fix Sign to not sign Sigv2 requests to S3.
130
+
131
+ 3.168.3 (2022-12-02)
132
+ ------------------
133
+
134
+ * Issue - Retry S3's `BadDigest` error
135
+
136
+ 3.168.2 (2022-11-29)
137
+ ------------------
138
+
139
+ * Issue - Allow region resolution in `AssumeRoleCredentials` from `CredentialProviderChain`.
140
+
141
+ 3.168.1 (2022-11-18)
142
+ ------------------
143
+
144
+ * Issue - Fix initialization of SSOTokenProvider when `AWS_PROFILE` is specified.
145
+
146
+ 3.168.0 (2022-11-17)
147
+ ------------------
148
+
149
+ * Feature - Updated Aws::STS::Client with the latest API changes.
150
+
151
+ 3.167.0 (2022-11-09)
152
+ ------------------
153
+
154
+ * Issue - Ensure the stream_thread is not killed before H2 connection status is updated (#2779).
155
+
156
+ * Feature - Add token refresh support to `SSOCredentialProvider`.
157
+
158
+ 3.166.0 (2022-10-26)
159
+ ------------------
160
+
161
+ * Feature - Updated Aws::STS::Client with the latest API changes.
162
+
163
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
164
+
165
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
166
+
167
+ 3.165.1 (2022-10-25)
168
+ ------------------
169
+
170
+ * Issue - Require the SignatureV4 plugin to fix compatability with older `aws-sdk-s3` versions (#2774).
171
+
172
+ 3.165.0 (2022-10-25)
173
+ ------------------
174
+
175
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
176
+
177
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
178
+
179
+ * 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.
180
+
181
+ 3.164.0 (2022-10-21)
182
+ ------------------
183
+
184
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
185
+
186
+ 3.163.0 (2022-10-20)
187
+ ------------------
188
+
189
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
190
+
191
+ 3.162.0 (2022-10-19)
192
+ ------------------
193
+
194
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
195
+
196
+ 3.161.0 (2022-10-18)
197
+ ------------------
198
+
199
+ * Feature - Support AwsQueryCompatible trait to read error code from x-amzn-query-error header.
200
+
201
+ 3.160.0 (2022-10-13)
202
+ ------------------
203
+
204
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
205
+
206
+ 3.159.0 (2022-10-07)
207
+ ------------------
208
+
209
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
210
+
211
+ 3.158.1 (2022-10-06)
212
+ ------------------
213
+
214
+ * Issue - Ensure that the ReadCallbackIO is always unwrapped (#2761).
215
+
216
+ 3.158.0 (2022-09-30)
217
+ ------------------
218
+
219
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
220
+
221
+ 3.157.0 (2022-09-29)
222
+ ------------------
223
+
224
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
225
+
226
+ 3.156.0 (2022-09-27)
227
+ ------------------
228
+
229
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
230
+
231
+ 3.155.0 (2022-09-26)
232
+ ------------------
233
+
234
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
235
+
236
+ 3.154.0 (2022-09-23)
237
+ ------------------
238
+
239
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
240
+
241
+ 3.153.0 (2022-09-22)
242
+ ------------------
243
+
244
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
245
+
246
+ 3.152.0 (2022-09-21)
247
+ ------------------
248
+
249
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
250
+
251
+ 3.151.0 (2022-09-20)
252
+ ------------------
253
+
254
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
255
+
256
+ 3.150.0 (2022-09-19)
257
+ ------------------
258
+
259
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
260
+
261
+ 3.149.0 (2022-09-16)
262
+ ------------------
263
+
264
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
265
+
266
+ 3.148.0 (2022-09-15)
267
+ ------------------
268
+
269
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
270
+
271
+ 3.147.0 (2022-09-14)
272
+ ------------------
273
+
274
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
275
+
276
+ 3.146.0 (2022-09-13)
277
+ ------------------
278
+
279
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
280
+
281
+ 3.145.0 (2022-09-12)
282
+ ------------------
283
+
284
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
285
+
286
+ 3.144.0 (2022-09-09)
287
+ ------------------
288
+
289
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
290
+
291
+ 3.143.0 (2022-09-08)
292
+ ------------------
293
+
294
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
295
+
296
+ 3.142.0 (2022-09-07)
297
+ ------------------
298
+
299
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
300
+
301
+ 3.141.0 (2022-09-06)
302
+ ------------------
303
+
304
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
305
+
306
+ 3.140.0 (2022-09-02)
307
+ ------------------
308
+
309
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
310
+
311
+ 3.139.0 (2022-09-01)
312
+ ------------------
313
+
314
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
315
+
316
+ 3.138.0 (2022-08-31)
317
+ ------------------
318
+
319
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
320
+
321
+ 3.137.0 (2022-08-30)
322
+ ------------------
323
+
324
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
325
+
326
+ * Issue - Fix errors in recursion detection when `_X_AMZN_TRACE_ID` is unset (#2748).
327
+
328
+ 3.136.0 (2022-08-25)
329
+ ------------------
330
+
331
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
332
+
333
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
334
+
335
+ 3.135.0 (2022-08-24)
336
+ ------------------
337
+
338
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
339
+
340
+ 3.134.0 (2022-08-23)
341
+ ------------------
342
+
343
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
344
+
345
+ * Feature - Add support for Bearer Token Authentication and TokenProviders.
346
+
347
+ * Issue - Validate that `_X_AMZN_TRACE_ID` ENV value contains only valid, non-control characters.
348
+
349
+ 3.133.0 (2022-08-22)
350
+ ------------------
351
+
352
+ * Feature - Moved functionality from `aws-sdk-ssooidc` into core.
353
+
354
+ 3.132.0 (2022-08-08)
355
+ ------------------
356
+
357
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
358
+
359
+ 3.131.6 (2022-08-03)
360
+ ------------------
361
+
362
+ * Issue - Fix typo in `RecursionDetection`, change amz to amzn in header and env name.
363
+
364
+ 3.131.5 (2022-07-28)
365
+ ------------------
366
+
367
+ * Issue - Fix `to_json` usage in nested hashes by defining `as_json` (#2733).
368
+
369
+ 3.131.4 (2022-07-27)
370
+ ------------------
371
+
372
+ * Issue - Fix `to_json` usage on pageable responses when using Rails (#2733).
373
+ * Issue - Use `expand_path` on credential/config paths in SharedConfig (#2735).
374
+
375
+ 3.131.3 (2022-07-18)
376
+ ------------------
377
+
378
+ * Issue - Add support for serializing shapes on the body with `jsonvalue` members.
379
+
380
+ 3.131.2 (2022-06-20)
381
+ ------------------
382
+
383
+ * Issue - Populate context :request_id for XML error responses.
384
+
385
+ 3.131.1 (2022-05-20)
386
+ ------------------
387
+
388
+ * Issue - Bump the minimum version of `jmespath` dependency.
389
+
390
+ 3.131.0 (2022-05-16)
391
+ ------------------
392
+
393
+ * Feature - Updated Aws::STS::Client with the latest API changes.
394
+
395
+ 3.130.2 (2022-04-22)
396
+ ------------------
397
+
398
+ * Issue - Don't pass `:before_refresh` to Client constructors in RefreshingCredential implementations (#2690).
399
+
400
+ 3.130.1 (2022-04-12)
401
+ ------------------
402
+
403
+ * Issue - Don't call `refresh!` on non-refreshable `Credentials` when retrying errors (#2685).
404
+
405
+ 3.130.0 (2022-03-11)
406
+ ------------------
407
+
408
+ * Feature - Asynchronously refresh AWS credentials (#2641).
409
+
410
+ * Issue - Add x-amz-region-set to list of headers deleted for re-sign.
411
+
412
+ 3.129.1 (2022-03-10)
413
+ ------------------
414
+
415
+ * Issue - Make stubs thread safe by creating new responses for each operation call (#2675).
416
+
417
+ 3.129.0 (2022-03-08)
418
+ ------------------
419
+
420
+ * Feature - Add support for cases when `InstanceProfileCredentials` (IMDS) is unable to refresh credentials.
421
+
422
+ 3.128.1 (2022-03-07)
423
+ ------------------
424
+
425
+ * Issue - Fixed `Aws::PageableResponse` invalidating Ruby's global constant cache.
426
+
427
+ 3.128.0 (2022-03-04)
428
+ ------------------
429
+
430
+ * Feature - Updated Aws::STS::Client with the latest API changes.
431
+
432
+ 3.127.0 (2022-02-24)
433
+ ------------------
434
+
435
+ * Feature - Updated Aws::STS::Client with the latest API changes.
436
+
437
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
438
+
439
+ * Feature - Support `HttpChecksum` trait for requests and responses.
440
+
441
+ 3.126.2 (2022-02-16)
442
+ ------------------
443
+
444
+ * Issue - Add a before_refresh callback to AssumeRoleCredentials (#2529).
445
+ * Issue - Raise a `NoSuchProfileError` when config and credentials files don't exist.
446
+
447
+ 3.126.1 (2022-02-14)
448
+ ------------------
449
+
450
+ * Issue - Set `create_time` on IMDS tokens before fetch to reduce chance of using expired tokens and retry failures due to using expired tokens.
451
+
452
+ 3.126.0 (2022-02-03)
453
+ ------------------
454
+
455
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
456
+
457
+ * Feature - Add support for recursion detection.
458
+
459
+ 3.125.6 (2022-02-02)
460
+ ------------------
461
+
462
+ * Issue - Ensure default message for ServiceError is a string (#2643).
463
+
464
+ 3.125.5 (2022-01-19)
465
+ ------------------
466
+
467
+ * Issue - Correctly serialize empty header lists.
468
+
469
+ 3.125.4 (2022-01-18)
470
+ ------------------
471
+
472
+ * Issue - Add `InternalError` to `ErrorInspector` for S3 errors.
473
+
474
+
475
+ 3.125.3 (2022-01-12)
476
+ ------------------
477
+
478
+ * Issue - Add `ExpiredTokenException` to `ErrorInspector` for Kinesis errors.
479
+
480
+ 3.125.2 (2022-01-10)
481
+ ------------------
482
+
483
+ * Issue - Correctly serialize lists of strings in headers with quotes and commas.
484
+
485
+ 3.125.1 (2022-01-04)
486
+ ------------------
487
+
488
+ * Issue - Parse a response with consecutive spaces correctly when ox is used as the XML parser.
489
+
490
+ 3.125.0 (2021-12-21)
491
+ ------------------
492
+
493
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
494
+
495
+ * Feature - Add `:defaults_mode` configuration - that determines how certain default configuration options are resolved in the SDK.
496
+
497
+ 3.124.0 (2021-11-30)
498
+ ------------------
499
+
500
+ * Feature - Updated Aws::STS::Client with the latest API changes.
501
+
502
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
503
+
504
+ 3.123.0 (2021-11-23)
505
+ ------------------
506
+
507
+ * Feature - Updated Aws::STS::Client with the latest API changes.
508
+
509
+ 3.122.1 (2021-11-09)
510
+ ------------------
511
+
512
+ * Issue - Correctly serialize/deserialize header lists.
513
+
514
+ 3.122.0 (2021-11-04)
515
+ ------------------
516
+
517
+ * Feature - Updated Aws::STS::Client with the latest API changes.
518
+
519
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
520
+
521
+ * Issue - Fix parsing of ISO8601 timestamps with millisecond precision in headers.
522
+
523
+ * 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.
524
+
525
+ * 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.
526
+
527
+ 3.121.6 (2021-11-02)
528
+ ------------------
529
+
530
+ * Issue - Improve `SSOCredentials` error handling when profile file does not exist (#2605)
531
+
532
+ 3.121.5 (2021-10-29)
533
+ ------------------
534
+
535
+ * Issue - bump minimum version of `aws-partitions` (#2603).
536
+
537
+ 3.121.4 (2021-10-28)
538
+ ------------------
539
+
540
+ * Issue - This version has been yanked. (#2603).
541
+
542
+ * Issue - use the `EndpointProvider` to lookup signing region and name.
543
+
544
+ 3.121.3 (2021-10-20)
545
+ ------------------
546
+
547
+ * Issue - Use endpointPrefix when looking up the `signing_region` from the `EndpointProvider`.
548
+
549
+ 3.121.2 (2021-10-18)
550
+ ------------------
551
+
552
+ * Issue - Fix an issue where Rest JSON services do not have a `Content-Type` header.
553
+
554
+ * Issue - Remove blank `Content-Type` header from Net::HTTP handler, and prevent a default from being set.
555
+
556
+ * Issue - Set `Content-Length` only for HTTP methods that take a body.
557
+
558
+ 3.121.1 (2021-09-24)
559
+ ------------------
560
+
561
+ * Issue - Fix error in finding union member for boolean shapes with `false` values.
562
+
563
+ 3.121.0 (2021-09-02)
564
+ ------------------
565
+
566
+ * Feature - Add support for S3 Multi-region access point configuration.
567
+
568
+ 3.120.0 (2021-09-01)
569
+ ------------------
570
+
571
+ * Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 1.9, 2.0, 2.1, and 2.2.
572
+
573
+ 3.119.1 (2021-08-20)
574
+ ------------------
575
+
576
+ * Issue - Refactored `Aws::Json::Engine` to remove dead code and replaced usage of `JSON.load` with `JSON.parse`.
577
+
578
+ 3.119.0 (2021-07-30)
579
+ ------------------
580
+
581
+ * 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)
582
+
583
+ 3.118.0 (2021-07-28)
584
+ ------------------
585
+
586
+ * Feature - Add support for Tagged Unions using a "sealed" classes like approach where each union member has a corresponding subclass.
587
+
588
+ 3.117.0 (2021-07-12)
589
+ ------------------
590
+
591
+ * 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`).
592
+
593
+ * Feature - Support IPv6 endpoint for `Aws::EC2Metadata` client. It can be configured with `:endpoint` or `:endpoint_mode`.
594
+
595
+ 3.116.0 (2021-07-07)
596
+ ------------------
597
+
598
+ * Feature - Updated Aws::STS::Client with the latest API changes.
599
+
600
+ 3.115.0 (2021-06-23)
601
+ ------------------
602
+
603
+ * Feature - Add support for Assume Role Chaining in profiles. (#2531)
604
+ * Issue - Fixed an issue with `Seahorse::Client::H2::Connection` for non-https endpoints. (#2542)
605
+
606
+ 3.114.3 (2021-06-15)
607
+ ------------------
608
+
609
+ * Issue - Fixed an issue with `Aws::PageableResponse` where it was modifying original params hash, causing frozen hashes to fail.
610
+
611
+ 3.114.2 (2021-06-09)
612
+ ------------------
613
+
614
+ * Issue - Fixed an issue with `Aws::PageableResponse` where intentionally nil tokens were not merged into the params for the next call.
615
+
616
+ 3.114.1 (2021-06-02)
617
+ ------------------
618
+
619
+ * Issue - Change XML Builder to not indent by default
620
+
4
621
  3.114.0 (2021-04-13)
5
622
  ------------------
6
623
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.114.0
1
+ 3.180.2