aws-sdk-core 3.111.0 → 3.113.0

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