aws-sdk-core 3.225.2 → 3.226.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f77bb0a527676ff1076e9ce5e1aa81336c5c7876d203667ec7fc4993293ed38
4
- data.tar.gz: 6f49a97b9b2ac5652c492920422c89293ef3eeb463f507419220dc1d60ba4a91
3
+ metadata.gz: c2cb399e99384fd8a0eef3f4411c7bb6e6e5da1ce03892d004c0caa8abb2d8e1
4
+ data.tar.gz: a437e7fca293aec8c0e1848b8a0f26a30640fdb8ed30215afdc2e941e1519d9e
5
5
  SHA512:
6
- metadata.gz: faeb430c122c774162db6bdf7cfb697a18598bf28efae0ac2b4387b2a83b4166a98032aaa5098bd98587adb634c40a6faa96c8ba3a41d2f264c3bc31bd21ddf9
7
- data.tar.gz: 8fba4a5d0638db46abb2badb552b7fce247c6279d6e47c44b7f8e03b55f8b0954616453a69e0cce5e3ba1828ff6baa1adcc8149dfcdd74f09bda87efb42f08e5
6
+ metadata.gz: c1fee3bd6f44de4f80182d5838017564e96d8b4ff6c77a4ad7e83df1c8070f200fab187b45daafc2f6650d60fff34703f90a0e2026c6791131a8631cd8254542
7
+ data.tar.gz: 9cdec663bad7902005209a06b3aecb5360e13194dc5df54107f78207347f82461dcd48263572ec9925fa0cdfd1f2ecf0b23756eb895cbfd04cadb95ead93bd47
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.226.0 (2025-06-17)
5
+ ------------------
6
+
7
+ * Feature - Updated Aws::STS::Client with the latest API changes.
8
+
9
+ * Feature - The AWS Security Token Service APIs AssumeRoleWithSAML and AssumeRoleWithWebIdentity can now be invoked without pre-configured AWS credentials in the SDK configuration.
10
+
4
11
  3.225.2 (2025-06-10)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.225.2
1
+ 3.226.0
@@ -691,7 +691,7 @@ module Aws::SSO
691
691
  tracer: tracer
692
692
  )
693
693
  context[:gem_name] = 'aws-sdk-core'
694
- context[:gem_version] = '3.225.2'
694
+ context[:gem_version] = '3.226.0'
695
695
  Seahorse::Client::Request.new(handlers, context)
696
696
  end
697
697
 
data/lib/aws-sdk-sso.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::SSO
56
56
  autoload :EndpointProvider, 'aws-sdk-sso/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sso/endpoints'
58
58
 
59
- GEM_VERSION = '3.225.2'
59
+ GEM_VERSION = '3.226.0'
60
60
 
61
61
  end
62
62
 
@@ -1061,7 +1061,7 @@ module Aws::SSOOIDC
1061
1061
  tracer: tracer
1062
1062
  )
1063
1063
  context[:gem_name] = 'aws-sdk-core'
1064
- context[:gem_version] = '3.225.2'
1064
+ context[:gem_version] = '3.226.0'
1065
1065
  Seahorse::Client::Request.new(handlers, context)
1066
1066
  end
1067
1067
 
@@ -56,7 +56,7 @@ module Aws::SSOOIDC
56
56
  autoload :EndpointProvider, 'aws-sdk-ssooidc/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-ssooidc/endpoints'
58
58
 
59
- GEM_VERSION = '3.225.2'
59
+ GEM_VERSION = '3.226.0'
60
60
 
61
61
  end
62
62
 
@@ -2594,7 +2594,7 @@ module Aws::STS
2594
2594
  tracer: tracer
2595
2595
  )
2596
2596
  context[:gem_name] = 'aws-sdk-core'
2597
- context[:gem_version] = '3.225.2'
2597
+ context[:gem_version] = '3.226.0'
2598
2598
  Seahorse::Client::Request.new(handlers, context)
2599
2599
  end
2600
2600
 
@@ -294,6 +294,7 @@ module Aws::STS
294
294
  o.name = "AssumeRoleWithSAML"
295
295
  o.http_method = "POST"
296
296
  o.http_request_uri = "/"
297
+ o['authtype'] = "none"
297
298
  o['auth'] = ["smithy.api#noAuth"]
298
299
  o.input = Shapes::ShapeRef.new(shape: AssumeRoleWithSAMLRequest)
299
300
  o.output = Shapes::ShapeRef.new(shape: AssumeRoleWithSAMLResponse)
@@ -309,6 +310,7 @@ module Aws::STS
309
310
  o.name = "AssumeRoleWithWebIdentity"
310
311
  o.http_method = "POST"
311
312
  o.http_request_uri = "/"
313
+ o['authtype'] = "none"
312
314
  o['auth'] = ["smithy.api#noAuth"]
313
315
  o.input = Shapes::ShapeRef.new(shape: AssumeRoleWithWebIdentityRequest)
314
316
  o.output = Shapes::ShapeRef.new(shape: AssumeRoleWithWebIdentityResponse)
data/lib/aws-sdk-sts.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::STS
56
56
  autoload :EndpointProvider, 'aws-sdk-sts/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sts/endpoints'
58
58
 
59
- GEM_VERSION = '3.225.2'
59
+ GEM_VERSION = '3.226.0'
60
60
 
61
61
  end
62
62
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.225.2
4
+ version: 3.226.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services