aws-sdk-core 3.111.1 → 3.113.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c6fb1296bf2644c63bfe07b03343b2a2cce7532d320af8e32362f72ee8a40cb
4
- data.tar.gz: '084be36043cfa4deb41c34de6d614bbacdb83e37ee71c56ca1588a3b5ea361b3'
3
+ metadata.gz: 22a9b79629fe96dba0c2ab281d0b976827e8681b72736c5344491b5988a2835f
4
+ data.tar.gz: 556f267c1016e41cabd38213669d478c6b27291262e66dd6455c2fed5f087a61
5
5
  SHA512:
6
- metadata.gz: 4ca95c4611235ec3c649caa1a3104f129e4c8303b4ae7fb9061ad6e3a2a5df443549ba2bad0b8ccbcf35baaac3c8ecd1281600cac289d7c9855117a9c64d931d
7
- data.tar.gz: 933b95974041c21f3278dad0da9cf56ba7a2df678565355024189cc2b2e9d1c12f525653b93727b30b098a35b4755af3ffd6827eb8cc1fbcdccba67287d52e91
6
+ metadata.gz: bea46ccd2d82d78a1be079e887a4cb2721a50eca0e3111b8ed86e7f4ea45e1b35a2d0fdff80b99088b04a53c16e26c5fd7b4072e8ff75efb4509d129ff8ffc07
7
+ data.tar.gz: bcae08d043d43dfdd0f31aa1e6b29cfd6b5eee9da2c00d6a2ddad56f93cb57bc33cd1f121b694528cab2498ade089c1b685bafab716fd40eec9612ca8ae9effe
data/CHANGELOG.md ADDED
@@ -0,0 +1,1073 @@
1
+ Unreleased Changes
2
+ ------------------
3
+
4
+ 3.113.1 (2021-03-29)
5
+ ------------------
6
+
7
+ * Issue - Ensure end of line characters are correctly encoded in XML.
8
+
9
+ 3.113.0 (2021-03-10)
10
+ ------------------
11
+
12
+ * Feature - Updated Aws::STS::Client with the latest API changes.
13
+
14
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
15
+
16
+ 3.112.1 (2021-03-04)
17
+ ------------------
18
+
19
+ * Issue - Include LICENSE, CHANGELOG, and VERSION files with this gem.
20
+
21
+ 3.112.0 (2021-02-02)
22
+ ------------------
23
+
24
+ * Feature - The `hostPrefix` trait will now be applied to any customer provided `:endpoint`. This bug fix is a minor behavioral change for clients using custom endpoints for `s3control`, `iotsitewise`, and `servicediscovery`. This behavior can be disabled by configuring `:disable_host_prefix_injection` to `true`.
25
+
26
+ 3.111.2 (2021-01-19)
27
+ ------------------
28
+
29
+ * Issue - Fix a loading issue with SSO and STS gem aliases using `require_relative` instead of `require`.
30
+
31
+ 3.111.1 (2021-01-15)
32
+ ------------------
33
+
34
+ * Issue - Fix an issue with `max_attempts` validation raising incorrectly.
35
+
36
+ 3.111.0 (2021-01-11)
37
+ ------------------
38
+
39
+ * Feature - Adds an IMDSv2 client as `Aws::EC2Metadata`.
40
+
41
+ 3.110.0 (2020-12-03)
42
+ ------------------
43
+
44
+ * Feature - Updated Aws::STS::Client with the latest API changes.
45
+
46
+ * Issue - Support `aws-sdk-sts` alias gem.
47
+
48
+ * Issue - Retry when `Net:HTTPFatalError` is thrown by the `Net::HTTP` library. This can occur when proxy connections are configured. (#2439)
49
+
50
+ 3.109.3 (2020-11-17)
51
+ ------------------
52
+
53
+ * Issue - Use full namespace for SSO Client when creating `SSOCredentials`
54
+
55
+ 3.109.2 (2020-11-04)
56
+ ------------------
57
+
58
+ * Issue - Check for flattened on ref for lists when serializing.
59
+
60
+ 3.109.1 (2020-10-05)
61
+ ------------------
62
+
63
+ * Issue - For errors without a message, default to the error class. (#2388)
64
+
65
+ 3.109.0 (2020-09-30)
66
+ ------------------
67
+
68
+ * Feature - Add `Seahorse::Util.host_label?` to check strings for valid RFC-3986 host labels.
69
+ * Feature - Add `Aws::ARN#to_h`.
70
+
71
+ 3.108.0 (2020-09-25)
72
+ ------------------
73
+
74
+ * Feature - Updated Aws::STS::Client with the latest API changes.
75
+
76
+ 3.107.0 (2020-09-15)
77
+ ------------------
78
+
79
+ * Feature - Updated Aws::STS::Client with the latest API changes.
80
+
81
+ * Issue - Fix circular dependency of `aws-sdk-sso` and `aws-sdk-core` (#2405).
82
+
83
+ 3.106.0 (2020-09-14)
84
+ ------------------
85
+
86
+ * Feature - Support `AWS_CA_BUNDLE` ENV variable and `ca_bundle` shared configuration options. The `:ssl_ca_bundle` client option will override either of these options. (#1907)
87
+
88
+ 3.105.0 (2020-08-25)
89
+ ------------------
90
+
91
+ * Feature - Updated Aws::STS::Client with the latest API changes.
92
+
93
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
94
+
95
+ * Feature - Add `SSOCredentials`. Moved functionality from `aws-sdk-sso` into core.
96
+
97
+ 3.104.4 (2020-08-19)
98
+ ------------------
99
+
100
+ * Issue - Use Aws::Json for parsing instead of JSON
101
+
102
+ 3.104.3 (2020-07-23)
103
+ ------------------
104
+
105
+ * Issue - Revert duplication of params. Ensure code that relied on internal modification of parameters is not broken.
106
+
107
+ 3.104.2 (2020-07-22)
108
+ ------------------
109
+
110
+ * Issue - Validate IO like objects support read,rewind and size unless streaming. Fixes #2364
111
+
112
+ 3.104.1 (2020-07-20)
113
+ ------------------
114
+
115
+ * Issue - Duplicate params to ensure user provided params are not modified. Fixes #2366
116
+
117
+ 3.104.0 (2020-07-15)
118
+ ------------------
119
+
120
+ * Feature - Add headers to the `ResponseTarget` callback. A block passed as the response target on a streaming method will be called with the `chunk` and `headers`.
121
+ * Feature - Added the `RequestCallback` plugin which allows clients and methods to set `on_chunk_sent` to a `Proc` which will be called as each chunk of the request body is sent.
122
+
123
+ 3.103.0 (2020-07-01)
124
+ ------------------
125
+
126
+ * Feature - Updated the list of parameters to filter when logging.
127
+
128
+ 3.102.1 (2020-06-25)
129
+ ------------------
130
+
131
+ * Issue - Set the `response_target` on the context when deleting it from the parameters.
132
+
133
+ 3.102.0 (2020-06-24)
134
+ ------------------
135
+
136
+ * Feature - Updated the list of parameters to filter when logging.
137
+
138
+ 3.101.0 (2020-06-23)
139
+ ------------------
140
+
141
+ * Feature - Updated Aws::STS::Client with the latest API changes.
142
+
143
+ * Feature - Added sensitive params to request and response Types instead of just on a large list.
144
+ * Feature - Provide an option `:filter_sensitive_params` for `Aws::Log::Formatter` to allow disabling of the sensitive param filter (#2312, #2105, #2082).
145
+
146
+ 3.100.0 (2020-06-15)
147
+ ------------------
148
+
149
+ * Feature - Updated the list of parameters to filter when logging.
150
+
151
+ 3.99.2 (2020-06-12)
152
+ ------------------
153
+
154
+ * Issue - Don't retry streaming requests with blocks (#2311)
155
+
156
+ 3.99.1 (2020-06-11)
157
+ ------------------
158
+
159
+ * Issue - Republish after incorrect yank.
160
+
161
+ 3.99.0 (2020-06-10)
162
+ ------------------
163
+
164
+ * Issue - This version has been yanked. (#2327).
165
+ * Feature - Updated Aws::STS::Client with the latest API changes.
166
+
167
+ * Feature - Updated the list of parameters to filter when logging.
168
+
169
+ * Feature - Support `httpChecksumRequired` on operations that require Content MD5 validation.
170
+ * Issue - Validate `:region` as a valid DNS host label.
171
+
172
+ 3.98.0 (2020-06-05)
173
+ ------------------
174
+
175
+ * Feature - Updated the list of parameters to filter when logging.
176
+
177
+ 3.97.1 (2020-06-01)
178
+ ------------------
179
+
180
+ * Issue - Convert ENV['AWS_MAX_ATTEMPTS'] String value to Integer when set. (#2319)
181
+ * Issue - Handle unknown and unmodeled events from event streams by ignoring them and providing a new callback rather than raising an error.
182
+
183
+ 3.97.0 (2020-05-28)
184
+ ------------------
185
+ * Feature - Default endpoint_discovery to `true` for services with at least one operation that requires it.
186
+ * Feature - Updated Aws::STS::Client with the latest API changes.
187
+
188
+ 3.96.1 (2020-05-18)
189
+ ------------------
190
+
191
+ * Issue - Raise `ArgumentError` for XML services when required URI elements are not included.
192
+
193
+ 3.96.0 (2020-05-15)
194
+ ------------------
195
+
196
+ * Feature - Updated the list of parameters to filter when logging.
197
+
198
+ 3.95.0 (2020-05-07)
199
+ ------------------
200
+
201
+ * Feature - Updated Aws::STS::Client with the latest API changes.
202
+
203
+ 3.94.1 (2020-05-04)
204
+ ------------------
205
+
206
+ * Issue - When handling errors in XML responses, don't set a new error on the response if one is already set.
207
+
208
+ 3.94.0 (2020-04-08)
209
+ ------------------
210
+
211
+ * Feature - Updated the list of parameters to filter when logging.
212
+
213
+ * Issue - Update dependency on aws-eventstream
214
+
215
+ 3.93.0 (2020-04-06)
216
+ ------------------
217
+
218
+ * Feature - Updated the list of parameters to filter when logging.
219
+
220
+ 3.92.0 (2020-03-20)
221
+ ------------------
222
+
223
+ * Feature - Updated Aws::STS::Client with the latest API changes.
224
+
225
+ * Issue - Change the default of `sts_regional_endpoints` from 'legacy' to 'regional'.
226
+
227
+ 3.91.1 (2020-03-10)
228
+ ------------------
229
+
230
+ * Issue - Rescue from `JSON::ParserError` when using `Oj.mimic_JSON`. (#2247)
231
+
232
+ 3.91.0 (2020-03-09)
233
+ ------------------
234
+
235
+ * Feature - Updated Aws::STS::Client with the latest API changes.
236
+ * Feature - Add `standard` and `adaptive` retry modes.
237
+
238
+ 3.90.1 (2020-02-14)
239
+ ------------------
240
+
241
+ * Issue - Perform a case-insensitive comparison when filtering sensitive parameters from logs
242
+ * Issue - Add passthrough of region from client to STS when using `assume_role_web_identity_credentials`.
243
+
244
+ 3.90.0 (2020-02-12)
245
+ ------------------
246
+
247
+ * Issue - Updated the list of parameters to filter when logging.
248
+ * Issue - Parse all values from shared credentials file when using `Aws.shared_config`.
249
+ * Issue - Honor explicit profile in client config when credentials from AWS_ environment variables are present.
250
+ * Issue - Fixed a bug where `Transfer-Encoding` could never be set to `chunked` in streaming operations because all body objects (`String`, `StringIO`) would respond to `#size`.
251
+
252
+ 3.89.1 (2020-01-14)
253
+ ------------------
254
+
255
+ * Issue - Fix erroneously reaped sessions from `Seahorse::Client::NetHttp::ConnectionPool` due to bad `last_used` time calculation
256
+ * Issue - Use monotonic clocks when reaping sessions in `Seahorse::Client::NetHttp::ConnectionPool`
257
+ * Issue - Fix "Conn close because of keep_alive_timeout" when reusing `Seahorse::Client::NetHttp::ConnectionPool` sessions
258
+
259
+ 3.89.0 (2020-01-13)
260
+ ------------------
261
+
262
+ * Feature - Updated the list of parameters to filter when logging.
263
+
264
+ 3.88.0 (2020-01-10)
265
+ ------------------
266
+
267
+ * Feature - Updated the list of parameters to filter when logging.
268
+
269
+ 3.87.0 (2020-01-09)
270
+ ------------------
271
+
272
+ * Feature - Updated Aws::STS::Client with the latest API changes.
273
+
274
+ * Issue - Reuse connections even if `http_wire_trace` is true.
275
+
276
+ 3.86.0 (2019-12-13)
277
+ ------------------
278
+
279
+ * Feature - Updated the list of parameters to filter when logging.
280
+
281
+ 3.85.1 (2019-12-11)
282
+ ------------------
283
+
284
+ * Issue - Change default timeout to 1 and number of retries to 1 for `InstanceProfileCredentials`.
285
+
286
+ 3.85.0 (2019-12-09)
287
+ ------------------
288
+
289
+ * Feature - Add STS Presigner module with a method to generate a presigned EKS token.
290
+
291
+ * Issue - Fix issue for log formatters in clients where http_response_body does not respond to `rewind` when using a block.
292
+
293
+ 3.84.0 (2019-12-04)
294
+ ------------------
295
+
296
+ * Feature - Updated the list of parameters to filter when logging.
297
+
298
+ 3.83.0 (2019-12-03)
299
+ ------------------
300
+
301
+ * Feature - Updated the list of parameters to filter when logging.
302
+
303
+ 3.82.0 (2019-11-25)
304
+ ------------------
305
+
306
+ * Feature - Updated the list of parameters to filter when logging.
307
+
308
+ 3.81.0 (2019-11-22)
309
+ ------------------
310
+
311
+ * Feature - Updated Aws::STS::Client with the latest API changes.
312
+
313
+ 3.80.0 (2019-11-20)
314
+ ------------------
315
+
316
+ * Feature - Updated the list of parameters to filter when logging.
317
+
318
+ 3.79.0 (2019-11-19)
319
+ ------------------
320
+
321
+ * Feature - Support EC2 IMDS updates.
322
+
323
+ 3.78.0 (2019-11-15)
324
+ ------------------
325
+
326
+ * Feature - Updated the list of parameters to filter when logging.
327
+
328
+ 3.77.0 (2019-11-13)
329
+ ------------------
330
+
331
+ * Feature - Support `s3_us_east_1_regional_endpoint` from `SharedConfig`
332
+
333
+ 3.76.0 (2019-11-07)
334
+ ------------------
335
+
336
+ * Feature - Updated the list of parameters to filter when logging.
337
+
338
+ 3.75.0 (2019-11-06)
339
+ ------------------
340
+
341
+ * Feature - Remove deprecated `access_key_id`, `secret_access_key`, and `session_token` methods in credential providers.
342
+
343
+ 3.74.0 (2019-11-05)
344
+ ------------------
345
+
346
+ * Feature - Updated the list of parameters to filter when logging.
347
+
348
+ 3.73.0 (2019-11-04)
349
+ ------------------
350
+
351
+ * Feature - Updated the list of parameters to filter when logging.
352
+
353
+ 3.72.1 (2019-10-31)
354
+ ------------------
355
+
356
+ * Issue - Fix `EndpointCache#key?` to be thread safe.
357
+
358
+ 3.72.0 (2019-10-24)
359
+ ------------------
360
+
361
+ * Feature - Updated the list of parameters to filter when logging.
362
+
363
+ * Issue - Update minimum `aws-partition` gem dependency version
364
+
365
+ 3.71.0 (2019-10-23)
366
+ ------------------
367
+
368
+ * Feature - Updated Aws::STS::Client with the latest API changes.
369
+
370
+ * Feature - Support enable STS regional endpoints by `sts_regional_endpoints: 'regional'`
371
+
372
+ 3.70.0 (2019-10-22)
373
+ ------------------
374
+
375
+ * Feature - Updated the list of parameters to filter when logging.
376
+
377
+ 3.69.1 (2019-10-18)
378
+ ------------------
379
+
380
+ * Issue - Fix method redefinition warnings
381
+
382
+ 3.69.0 (2019-10-17)
383
+ ------------------
384
+
385
+ * Feature - Updated the list of parameters to filter when logging.
386
+
387
+ 3.68.1 (2019-10-02)
388
+ ------------------
389
+
390
+ * Issue - Add final deprecation warnings to `access_key_id`, `secret_access_key`, and `session_token` in credential providers.
391
+
392
+ * Issue - Remove misleading IO documentation from `BlobShape` error output.
393
+
394
+ 3.68.0 (2019-09-16)
395
+ ------------------
396
+
397
+ * Feature - Support assuming a role with `:source_profile` from a profile that can be resolved from a `ProcessCredentials` provider.
398
+
399
+ 3.67.0 (2019-09-09)
400
+ ------------------
401
+
402
+ * Feature - Updated the list of parameters to filter when logging.
403
+
404
+ 3.66.0 (2019-09-04)
405
+ ------------------
406
+
407
+ * Feature - Support CLI AWS_DEFAULT_PROFILE environment variable [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1452).
408
+
409
+ 3.65.1 (2019-08-28)
410
+ ------------------
411
+
412
+ * Issue - Auto refresh credentials for Route53 `ExpiredToken` errors.
413
+
414
+ 3.65.0 (2019-08-27)
415
+ ------------------
416
+
417
+ * Feature - Support assuming a role `:source_profile` profile with `AssumeRoleWebIdentityCredentials`.
418
+
419
+ 3.64.0 (2019-08-20)
420
+ ------------------
421
+
422
+ * Feature - Updated the list of parameters to filter when logging.
423
+
424
+ 3.63.0 (2019-08-15)
425
+ ------------------
426
+
427
+ * Feature - Support passing AssumeRole `duration_seconds` from shared credentials/config file.
428
+
429
+ 3.62.0 (2019-08-02)
430
+ ------------------
431
+
432
+ * Feature - Updated Aws::STS::Client with the latest API changes.
433
+
434
+ 3.61.2 (2019-07-29)
435
+ ------------------
436
+
437
+ * Issue - Add `Aws::STS::InvalidIdentityToken` and `Aws::Errors::NoSuchEndpointError` error for retry.
438
+
439
+ 3.61.1 (2019-07-25)
440
+ ------------------
441
+
442
+ * Issue - Fix default STS Client credential sourcing in `Aws::AssumeRoleWebIdentityCredentialsProvider`.
443
+
444
+ 3.61.0 (2019-07-24)
445
+ ------------------
446
+
447
+ * Feature - Updated Aws::STS::Client with the latest API changes.
448
+
449
+ 3.60.0 (2019-07-23)
450
+ ------------------
451
+
452
+ * Feature - Updated the list of parameters to filter when logging.
453
+
454
+ * Issue - Handle `EncodingError` when using Oj gem [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1831)
455
+
456
+ 3.59.0 (2019-07-03)
457
+ ------------------
458
+
459
+ * Feature - Updated the list of parameters to filter when logging.
460
+
461
+ 3.58.0 (2019-07-01)
462
+ ------------------
463
+
464
+ * Feature - Support `Aws::AssumeRoleWebIdentityCredentials` provider
465
+
466
+ 3.57.0 (2019-06-28)
467
+ ------------------
468
+
469
+ * Feature - Updated the list of parameters to filter when logging.
470
+
471
+ 3.56.0 (2019-06-17)
472
+ ------------------
473
+
474
+ * Feature - Updated Aws::STS::Client with the latest API changes.
475
+
476
+ * Feature - Support `:client_side_monitoring_host` configuration for CSM
477
+
478
+ 3.55.0 (2019-06-14)
479
+ ------------------
480
+
481
+ * Feature - Updated the list of parameters to filter when logging.
482
+
483
+ 3.54.2 (2019-06-03)
484
+ ------------------
485
+
486
+ * Issue - Mirgate Proc.new without a block usage #2058.
487
+
488
+ 3.54.1 (2019-05-30)
489
+ ------------------
490
+
491
+ * Issue - Improved exception messages in credential providers to exclude detailed parse errors that may contain sensitive information.
492
+
493
+ 3.54.0 (2019-05-28)
494
+ ------------------
495
+
496
+ * Feature - Updated Aws::STS::Client with the latest API changes.
497
+
498
+ * Feature - Updated the list of parameters to filter when logging.
499
+
500
+ 3.53.1 (2019-05-22)
501
+ ------------------
502
+
503
+ * Issue - Support #to_hash for Struct with `:members` member #2053
504
+
505
+ 3.53.0 (2019-05-21)
506
+ ------------------
507
+
508
+ * Feature - Updated Aws::STS::Client with the latest API changes.
509
+
510
+ * Feature - Updated the list of parameters to filter when logging.
511
+
512
+ * Feature - Adding support for modeled exceptions
513
+
514
+ 3.52.1 (2019-05-15)
515
+ ------------------
516
+
517
+ * Issue - Handle paginator stubs with expression #2040
518
+
519
+ 3.52.0 (2019-05-14)
520
+ ------------------
521
+
522
+ * Feature - Updated Aws::STS::Client with the latest API changes.
523
+
524
+ * Feature - Updated the list of parameters to filter when logging.
525
+
526
+ * Feature - Support transfer encoding and `requiresLength` trait
527
+
528
+ 3.51.0 (2019-05-10)
529
+ ------------------
530
+
531
+ * Feature - Updated Aws::STS::Client with the latest API changes.
532
+
533
+ 3.50.0 (2019-05-06)
534
+ ------------------
535
+
536
+ * Feature - Updated Aws::STS::Client with the latest API changes.
537
+
538
+ 3.49.0 (2019-04-30)
539
+ ------------------
540
+
541
+ * Feature - Updated the list of parameters to filter when logging.
542
+
543
+ 3.48.6 (2019-04-26)
544
+ ------------------
545
+
546
+ * Issue - Call RefreshingCredentials initialize method in ProcessCredentials to set mutex.
547
+
548
+ 3.48.5 (2019-04-24)
549
+ ------------------
550
+
551
+ * Issue - Add PriorRequestNotComplete to throttling errors.
552
+
553
+ 3.48.4 (2019-04-18)
554
+ ------------------
555
+
556
+ * Issue - Small memory retention reduction.
557
+
558
+ 3.48.3 (2019-03-26)
559
+ ------------------
560
+
561
+ * Issue - event header ":event-type" uses member name instead of shape name
562
+
563
+ 3.48.2 (2019-03-20)
564
+ ------------------
565
+
566
+ * Issue - Support signal events after request only [HTTP2]
567
+
568
+ 3.48.1 (2019-03-19)
569
+ ------------------
570
+
571
+ * Issue - Clean up unnecessary error output when 'http-2' gem is not present.
572
+
573
+ 3.48.0 (2019-03-18)
574
+ ------------------
575
+
576
+ * Feature - Updated the list of parameters to filter when logging.
577
+
578
+ * Feature - Fix http-2 Dependency for Old Ruby Versions (Github Issue #1994)
579
+
580
+ 3.47.0 (2019-03-14)
581
+ ------------------
582
+
583
+ * Feature - Support HTTP/2 based AWS event stream operations
584
+
585
+ 3.46.2 (2019-02-19)
586
+ ------------------
587
+
588
+ * Issue - Update NetHttp Patches per Ruby version (Github Issue: #1979)
589
+
590
+ 3.46.1 (2019-02-12)
591
+ ------------------
592
+
593
+ * Issue - Fix the issue that APIG SDK doesn't have regional endpoint related plugins.
594
+
595
+ 3.46.0 (2019-01-16)
596
+ ------------------
597
+
598
+ * Feature - Updated the list of parameters to filter when logging.
599
+
600
+ 3.45.0 (2019-01-11)
601
+ ------------------
602
+
603
+ * Feature - Improve Query protocol handling of empty responses, to ensure response is an instance of `Aws::EmptyStructure` rather than the class `Aws::EmptyStructure` itself.
604
+ * Issue - Plugin updates to support client-side monitoring.
605
+
606
+ 3.44.2 (2019-01-04)
607
+ ------------------
608
+
609
+ * Issue - Update to code paths and plugins for future SDK instrumentation and telemetry.
610
+
611
+ 3.44.1 (2018-12-17)
612
+ ------------------
613
+
614
+ * Issue - Update sensitive filtering logic to include `#to_s` calls of shapes.
615
+
616
+ 3.44.0 (2018-12-07)
617
+ ------------------
618
+
619
+ * Feature - Updated the list of parameters to filter when logging.
620
+
621
+ 3.43.0 (2018-12-04)
622
+ ------------------
623
+
624
+ * Feature - Update user agent structure.
625
+
626
+ 3.42.0 (2018-11-29)
627
+ ------------------
628
+
629
+ * Feature - Updated the list of parameters to filter when logging.
630
+
631
+ 3.41.0 (2018-11-28)
632
+ ------------------
633
+
634
+ * Feature - Updated the list of parameters to filter when logging.
635
+
636
+ 3.40.0 (2018-11-27)
637
+ ------------------
638
+
639
+ * Feature - Updated the list of parameters to filter when logging.
640
+
641
+ 3.39.0 (2018-11-20)
642
+ ------------------
643
+
644
+ * Feature - Updated Aws::STS::Client with the latest API changes.
645
+
646
+ * Feature - Updated the list of parameters to filter when logging.
647
+
648
+ * Feature - Adding support for endpoint trait (host prefix) per operation, to disable this feature, set `:disable_host_prefix_injection` to `false` for the client.
649
+
650
+ 3.38.0 (2018-11-12)
651
+ ------------------
652
+
653
+ * Feature - Updated the list of parameters to filter when logging.
654
+
655
+ * Feature - Adding `TransactionInProgressException` for throttling retry
656
+
657
+ 3.37.0 (2018-11-08)
658
+ ------------------
659
+
660
+ * Feature - Adding support for endpoint discovery per operation, to enable this feature, set `:endpoint_discovery` to `true` for the client. Note: only available for services with endpoint discovery support.
661
+
662
+ 3.36.0 (2018-10-30)
663
+ ------------------
664
+
665
+ * Feature - Updated the list of parameters to filter when logging.
666
+
667
+ 3.35.0 (2018-10-24)
668
+ ------------------
669
+
670
+ * Feature - Updated Aws::STS::Client with the latest API changes.
671
+
672
+ * Feature - Updated the list of parameters to filter when logging.
673
+
674
+ 3.34.0 (2018-10-23)
675
+ ------------------
676
+
677
+ * Feature - Updated Aws::STS::Client with the latest API changes.
678
+
679
+ * Feature - Allow 429 response code to trigger throttle detection
680
+
681
+ 3.33.0 (2018-10-22)
682
+ ------------------
683
+
684
+ * Feature - Update to code paths and plugins for future SDK instrumentation and telemetry.
685
+
686
+ 3.32.0 (2018-10-18)
687
+ ------------------
688
+
689
+ * Feature - Updated the list of parameters to filter when logging.
690
+
691
+ 3.31.0 (2018-10-16)
692
+ ------------------
693
+
694
+ * Feature - Updated the list of parameters to filter when logging.
695
+
696
+ 3.30.0 (2018-10-04)
697
+ ------------------
698
+
699
+ * Feature - Adds to code paths and plugins for future SDK instrumentation and telemetry.
700
+
701
+ 3.29.0 (2018-09-28)
702
+ ------------------
703
+
704
+ * Feature - Updated the list of parameters to filter when logging.
705
+
706
+ 3.28.0 (2018-09-25)
707
+ ------------------
708
+
709
+ * Feature - Updated the list of parameters to filter when logging.
710
+
711
+ 3.27.1 (2018-09-21)
712
+ ------------------
713
+
714
+ * Issue - Fixes a bug in the `:response_target` plugin error callback. Under certain circumstances a special body object can be removed before its error callback is triggered, breaking retry logic.
715
+
716
+ 3.27.0 (2018-09-06)
717
+ ------------------
718
+
719
+ * Feature - Adds code paths and plugins for future SDK instrumentation and telemetry to aws-sdk-sts.
720
+
721
+ 3.26.0 (2018-09-05)
722
+ ------------------
723
+
724
+ * Feature - Updated Aws::STS::Client with the latest API changes.
725
+
726
+ * Feature - Adds code paths and plugins for future SDK instrumentation and telemetry.
727
+
728
+ 3.25.0 (2018-08-29)
729
+ ------------------
730
+
731
+ * Feature - Updated the list of parameters to filter when logging.
732
+
733
+ * Issue - Add `:exclude_presign` option for #api_requests at client stubbing to allow excluding non-sent request from presigned url (Github Issue #1866)
734
+
735
+ 3.24.1 (2018-08-13)
736
+ ------------------
737
+
738
+ * Issue - Update `ca-bundle.crt` file with newer root certificate authorities.
739
+
740
+ 3.24.0 (2018-08-03)
741
+ ------------------
742
+
743
+ * Feature - Extensible Credential Providers, allows you to declare an executable to be run that outputs the credentials as a JSON payload allowing you to develop custom credential providers and easily add them to the credential resolution chain, [Docs](https://docs.aws.amazon.com/cli/latest/topic/config-vars.html#sourcing-credentials-from-external-processes)
744
+
745
+ 3.23.0 (2018-07-31)
746
+ ------------------
747
+
748
+ * Feature - Add Logged API Requests interface to stubbed clients
749
+
750
+ 3.22.1 (2018-06-28)
751
+ ------------------
752
+
753
+ * Issue - Performance enhancement to instance credential providers, to use a more precisely scoped Time parsing method for improved performance.
754
+
755
+ 3.22.0 (2018-06-26)
756
+ ------------------
757
+
758
+ * Feature - Updated Aws::STS::Client with the latest API changes.
759
+
760
+ * Feature - Allows you to set custom paths to shared config and shared credential files via the `AWS_CONFIG_FILE` and `AWS_SHARED_CREDENTIALS_FILE` environment variables.
761
+
762
+ * Feature - Flexible retry strategies. Provides the `:retry_max_delay`, `:retry_base_delay`, and `:retry_jitter` options, which modify the default backoff strategy without the need to define a full retry lambda from scratch.
763
+
764
+ 3.21.3 (2018-06-20)
765
+ ------------------
766
+
767
+ * Issue - Fix to support URI encoded characters in http_proxy
768
+
769
+ 3.21.2 (2018-05-22)
770
+ ------------------
771
+
772
+ * Issue - Update `EventEmitter` to `Aws::EventEmitter` [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1791)
773
+
774
+ 3.21.1 (2018-05-18)
775
+ ------------------
776
+
777
+ * Issue - Remove `raw_stream` tracking, [Github Issue](https://github.com/aws/aws-sdk-ruby/issues/1786)
778
+
779
+ 3.21.0 (2018-05-17)
780
+ ------------------
781
+
782
+ * Feature - Support `vnd.amazon.event-stream` binary stream protocol over HTTP1.1
783
+
784
+ 3.20.2 (2018-04-26)
785
+ ------------------
786
+
787
+ * Issue - Avoiding Net::HTTP patching for Ruby 2.5
788
+
789
+ 3.20.1 (2018-04-24)
790
+ ------------------
791
+
792
+ * Issue - Fix parsing flattened XML shape from shape reference for S3 https://github.com/aws/aws-sdk-ruby/issues/1764
793
+
794
+ 3.20.0 (2018-04-23)
795
+ ------------------
796
+
797
+ * Feature - Aws::InstanceProfileCredentials - Add sending a User-Agent other than the default User-Agent in Ruby. Adding the User-Agent `aws-sdk-ruby3/<version>` to allow protection against Server Side Request Forgery (SSRF) credential theft vectors by use of a metadata proxy.
798
+
799
+ 3.19.0 (2018-04-04)
800
+ ------------------
801
+
802
+ * Feature - Updated the list of parameters to filter when logging.
803
+
804
+ 3.18.1 (2018-03-29)
805
+ ------------------
806
+
807
+ * Issue - Fix undefined method `each`/`next` for `Enumerable::Enumerator` when this class exists in the environment
808
+
809
+ 3.18.0 (2018-03-28)
810
+ ------------------
811
+
812
+ * Feature - Updated Aws::STS::Client with the latest API changes.
813
+
814
+ 3.17.1 (2018-03-20)
815
+ ------------------
816
+
817
+ * Issue - Support timestamp shape in querystring
818
+
819
+ 3.17.0 (2018-02-27)
820
+ ------------------
821
+
822
+ * Feature - Updated Aws::STS::Client with the latest API changes.
823
+
824
+ * Issue - Fix Ruby warnings: Shadowed local variables "parts" and "headers"
825
+
826
+ 3.16.0 (2018-02-20)
827
+ ------------------
828
+
829
+ * Feature - Aws::InstanceProfileCredentials - When the `AWS_EC2_METADATA_DISABLED` environment variable is present with the value `true` (not case sensitive), the `Aws::InstanceProfileCredentials` credential provider will not be used.
830
+
831
+ 3.15.0 (2018-02-06)
832
+ ------------------
833
+
834
+ * Feature - Updated the list of parameters to filter when logging.
835
+
836
+ 3.14.0 (2018-01-15)
837
+ ------------------
838
+
839
+ * Feature - Updated Aws::STS::Client with the latest API changes.
840
+
841
+ 3.13.1 (2018-01-12)
842
+ ------------------
843
+
844
+ * Issue - Fix Ruby 2.5 warnings.
845
+
846
+ 3.13.0 (2017-12-21)
847
+ ------------------
848
+
849
+ * Feature - Updated Aws::STS::Client with the latest API changes.
850
+
851
+ 3.12.0 (2017-12-20)
852
+ ------------------
853
+
854
+ * Feature - Adds support for credential_source when assuming a role via shared configuration.
855
+
856
+ * Issue - Update APIGateway SDK user agent pattern
857
+
858
+ 3.11.0 (2017-11-29)
859
+ ------------------
860
+
861
+ * Feature - Updated the list of parameters to filter when logging.
862
+
863
+ 3.10.0 (2017-11-29)
864
+ ------------------
865
+
866
+ * Feature - Updated the list of parameters to filter when logging.
867
+
868
+ 3.9.0 (2017-11-20)
869
+ ------------------
870
+
871
+ * Feature - Updated Aws::STS::Client with the latest API changes.
872
+
873
+ * Feature - Updated the list of parameters to filter when logging.
874
+
875
+ 3.8.0 (2017-11-19)
876
+ ------------------
877
+
878
+ * Feature - Add support for APIGateway protocol and custom service build.
879
+
880
+ 3.7.0 (2017-11-07)
881
+ ------------------
882
+
883
+ * Feature - Updated Aws::STS::Client with the latest API changes.
884
+
885
+ * Feature - Updated the list of parameters to filter when logging.
886
+
887
+ 3.6.1 (2017-11-07)
888
+ ------------------
889
+
890
+ * Issue - Update empty struct stubbing shape
891
+
892
+ 3.6.0 (2017-09-20)
893
+ ------------------
894
+
895
+ * Feature - Updated the list of parameters to filter when logging.
896
+
897
+ 3.5.0 (2017-09-13)
898
+ ------------------
899
+
900
+ * Feature - Updated Aws::STS::Client with the latest API changes.
901
+
902
+ 3.4.0 (2017-09-12)
903
+ ------------------
904
+
905
+ * Feature - Updated Aws::STS::Client with the latest API changes.
906
+
907
+ 3.3.1 (2017-09-11)
908
+ ------------------
909
+
910
+ * Issue - Fix core util deep copy issue #1603
911
+
912
+ 3.3.0 (2017-09-07)
913
+ ------------------
914
+
915
+ * Feature - Updated Aws::STS::Client with the latest API changes.
916
+
917
+ 3.2.1 (2017-09-06)
918
+ ------------------
919
+
920
+ * Issue - Remove redundant version file.
921
+
922
+ 3.2.0 (2017-08-31)
923
+ ------------------
924
+
925
+ * Feature - Updated the list of parameters to filter when logging.
926
+
927
+ * Issue - Update `aws-sdk-core` gemspec metadata.
928
+
929
+ * Issue - Update `aws-sdk-core` gemspec metadata
930
+
931
+ 3.1.0 (2017-08-30)
932
+ ------------------
933
+
934
+ * Feature - Updated Aws::STS::Client with the latest API changes.
935
+
936
+ 3.0.0 (2017-08-29)
937
+ ------------------
938
+
939
+ 3.0.0.rc20 (2017-08-14)
940
+ ------------------
941
+
942
+ * Feature - Updated the list of parameters to filter when logging.
943
+
944
+ 3.0.0.rc19 (2017-07-31)
945
+ ------------------
946
+
947
+ * Feature - Updated the list of parameters to filter when logging.
948
+
949
+ 3.0.0.rc18 (2017-07-24)
950
+ ------------------
951
+
952
+ * Feature - Updated the list of parameters to filter when logging.
953
+
954
+ 3.0.0.rc17 (2017-07-12)
955
+ ------------------
956
+
957
+ * Feature - Updated Aws::STS::Client with the latest API changes.
958
+
959
+ 3.0.0.rc16 (2017-07-06)
960
+ ------------------
961
+
962
+ * Feature - Updated Aws::STS::Client with the latest API changes.
963
+
964
+ 3.0.0.rc15 (2017-07-06)
965
+ ------------------
966
+
967
+ * Feature - Updated Aws::STS::Client with the latest API changes.
968
+
969
+ 3.0.0.rc14 (2017-06-29)
970
+ ------------------
971
+
972
+ * Feature - Updated Aws::STS::Client with the latest API changes.
973
+
974
+ 3.0.0.rc13 (2017-06-26)
975
+ ------------------
976
+
977
+ * Feature - Updated Aws::STS::Client with the latest API changes.
978
+
979
+ * Feature - Updated the list of parameters to filter when logging.
980
+
981
+ * Issue - Aws::CredentialProviderChain - Fetching `AWS_PROFILE` environment variable before using `default` profile.
982
+
983
+ 3.0.0.rc12 (2017-05-23)
984
+ ------------------
985
+
986
+ * Feature - Updated Aws::STS::Client with the latest API changes.
987
+
988
+ * Feature - Update throttling error pool of retry
989
+
990
+ * Feature - Update `User-Agent` format
991
+
992
+ 3.0.0.rc11 (2017-05-09)
993
+ ------------------
994
+
995
+ * Feature - Updated Aws::STS::Client with the latest API changes.
996
+
997
+ * Feature - Updated Aws::STS::Client with the latest API changes.
998
+
999
+ 3.0.0.rc10 (2017-05-09)
1000
+ ------------------
1001
+
1002
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1003
+
1004
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1005
+
1006
+ 3.0.0.rc9 (2017-05-05)
1007
+ ------------------
1008
+
1009
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1010
+
1011
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1012
+
1013
+ * Feature - Added support for Ruby 2.4
1014
+
1015
+ * Issue - Revert 'cgi/util' change that breaks Ruby 2.4
1016
+
1017
+ 3.0.0.rc8 (2017-04-21)
1018
+ ------------------
1019
+
1020
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1021
+
1022
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1023
+
1024
+ * Feature - Updated the list of parameters to filter when logging.
1025
+
1026
+ 3.0.0.rc7 (2017-03-09)
1027
+ ------------------
1028
+
1029
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1030
+
1031
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1032
+
1033
+ * Feature - Updated the list of parameters to filter when logging.
1034
+
1035
+ 3.0.0.rc6 (2017-03-08)
1036
+ ------------------
1037
+
1038
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1039
+
1040
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1041
+
1042
+ 3.0.0.rc5 (2017-03-07)
1043
+ ------------------
1044
+
1045
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1046
+
1047
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1048
+
1049
+ 3.0.0.rc4 (2017-03-07)
1050
+ ------------------
1051
+
1052
+ * Feature - Updated the list of parameters to filter when logging.
1053
+
1054
+ 3.0.0.rc3 (2017-01-24)
1055
+ ------------------
1056
+
1057
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1058
+
1059
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1060
+
1061
+ * Feature - Updated the list of parameters to filter when logging.
1062
+
1063
+ 3.0.0.rc2 (2016-12-09)
1064
+ ------------------
1065
+
1066
+ * Feature - Updated Aws::STS::Client with the latest API changes.
1067
+
1068
+ * Feature - Updated the list of parameters to filter when logging.
1069
+
1070
+ 3.0.0.rc1 (2016-12-05)
1071
+ ------------------
1072
+
1073
+ * Feature - Initial preview release of the `aws-sdk-core` gem.