aws-sdk-core 3.172.0 → 3.173.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: 746f82369d60381064a023bbb6acf6d34175a24c1efabb7a321413e4d2d9de88
4
- data.tar.gz: 463ab018b652877c3dcd0ad4b9c5dfae3c17ad3c0d90b48b97d076a2d92cb946
3
+ metadata.gz: 8a894a8fe85e4f69dec182fc6f18a3dae49ae5ef9ecc91eb404e555098692964
4
+ data.tar.gz: 364fa57f088c9d15a450e6de2de3554e50fac98f764de451cc2d890bead5a420
5
5
  SHA512:
6
- metadata.gz: cf6fe14a282f4dfe099643be4f34cac8ea6646db4017edad82bcaa44078611f3c3a17945c83079f30be804ae022dc8f66c123cb993d22cb31e262e49a05cce8e
7
- data.tar.gz: '088d17868e17675ad2ab7baea66aba02c07905a912b2fefb51ec306299d48da5cdba325ff022e7eedf7e0ee27c09721de1c9070da233fa6353169762900b1cf1'
6
+ metadata.gz: c381bf0f39f79c2dd992c4f20b4ffacd682dbe226be85fdb261cc5d654b703e9933e70eea27c1b91a16165e9a817731b1b20647bd15ca09162775035e6aea16b
7
+ data.tar.gz: b72446b6983d65b96baba7248eba2dc00bca0a1a5c4ac96ad3d7c7a008fb95354d17182ae184abb59874130e96136e7bdb8ed4b9df987619761420903bce16a6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.173.1 (2023-05-24)
5
+ ------------------
6
+
7
+ * Issue - Updated `checksum_algorithm` plugin to use IO.copy_stream for JRuby.
8
+
9
+ 3.173.0 (2023-05-18)
10
+ ------------------
11
+
12
+ * Feature - Updated Aws::STS::Client with the latest API changes.
13
+
4
14
  3.172.0 (2023-05-08)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.172.0
1
+ 3.173.1
@@ -314,7 +314,7 @@ module Aws
314
314
  @io.rewind
315
315
  end
316
316
 
317
- def read(length, buf)
317
+ def read(length, buf = nil)
318
318
  # account for possible leftover bytes at the end, if we have trailer bytes, send them
319
319
  if @trailer_io
320
320
  return @trailer_io.read(length, buf)
@@ -585,7 +585,7 @@ module Aws::SSO
585
585
  params: params,
586
586
  config: config)
587
587
  context[:gem_name] = 'aws-sdk-core'
588
- context[:gem_version] = '3.172.0'
588
+ context[:gem_version] = '3.173.1'
589
589
  Seahorse::Client::Request.new(handlers, context)
590
590
  end
591
591
 
data/lib/aws-sdk-sso.rb CHANGED
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-sso/customizations'
54
54
  # @!group service
55
55
  module Aws::SSO
56
56
 
57
- GEM_VERSION = '3.172.0'
57
+ GEM_VERSION = '3.173.1'
58
58
 
59
59
  end
@@ -581,7 +581,7 @@ module Aws::SSOOIDC
581
581
  params: params,
582
582
  config: config)
583
583
  context[:gem_name] = 'aws-sdk-core'
584
- context[:gem_version] = '3.172.0'
584
+ context[:gem_version] = '3.173.1'
585
585
  Seahorse::Client::Request.new(handlers, context)
586
586
  end
587
587
 
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-ssooidc/customizations'
54
54
  # @!group service
55
55
  module Aws::SSOOIDC
56
56
 
57
- GEM_VERSION = '3.172.0'
57
+ GEM_VERSION = '3.173.1'
58
58
 
59
59
  end
@@ -2314,7 +2314,7 @@ module Aws::STS
2314
2314
  params: params,
2315
2315
  config: config)
2316
2316
  context[:gem_name] = 'aws-sdk-core'
2317
- context[:gem_version] = '3.172.0'
2317
+ context[:gem_version] = '3.173.1'
2318
2318
  Seahorse::Client::Request.new(handlers, context)
2319
2319
  end
2320
2320
 
@@ -508,7 +508,7 @@ module Aws::STS
508
508
  :policy_arns,
509
509
  :policy,
510
510
  :duration_seconds)
511
- SENSITIVE = []
511
+ SENSITIVE = [:saml_assertion]
512
512
  include Aws::Structure
513
513
  end
514
514
 
@@ -780,7 +780,7 @@ module Aws::STS
780
780
  :policy_arns,
781
781
  :policy,
782
782
  :duration_seconds)
783
- SENSITIVE = []
783
+ SENSITIVE = [:web_identity_token]
784
784
  include Aws::Structure
785
785
  end
786
786
 
@@ -941,7 +941,7 @@ module Aws::STS
941
941
  :secret_access_key,
942
942
  :session_token,
943
943
  :expiration)
944
- SENSITIVE = []
944
+ SENSITIVE = [:secret_access_key]
945
945
  include Aws::Structure
946
946
  end
947
947
 
data/lib/aws-sdk-sts.rb CHANGED
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-sts/customizations'
54
54
  # @!group service
55
55
  module Aws::STS
56
56
 
57
- GEM_VERSION = '3.172.0'
57
+ GEM_VERSION = '3.173.1'
58
58
 
59
59
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.172.0
4
+ version: 3.173.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-08 00:00:00.000000000 Z
11
+ date: 2023-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath