aws-sdk-core 3.224.0 → 3.226.1

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: 56ba5589862b40cf99f648e87923d49a121c32270c50770ed1560edef1b9c3f9
4
- data.tar.gz: cd63b44949e52a267ff6dba2dbfeb8676a6a0f4f9b64713177d85e967ee8f3cb
3
+ metadata.gz: e2ca0fbdedab1c093c716160e76303794d1546fb910732e7399158149393379d
4
+ data.tar.gz: 80287b842e9382353bb5c5093495299d8bfefaa4c1ca41227e34eeb2cb0ee592
5
5
  SHA512:
6
- metadata.gz: 776326554fa8287dad3c9da9fe1cf56d8e7cf633033d2b52715f1caf841911f28f16f4719c67ec205ba841dd3ca23c7727992fd3aec840dd94777394681e0e28
7
- data.tar.gz: dc916c4151cb13f82fb6640bc14b109cdaf6dcc5dce685477cd2adf1321041095254f886e628548a2232c62c8c76e542bf8378132216a7694d801418aaadfdac
6
+ metadata.gz: 95520dcd178c17ffee6588d5c840dcab71184746d1b3b9262de70a43a9fb2fb43ba0e773c6d4dcf08cdc0fc7639b407a644050e002edf34dc288077577e2577a
7
+ data.tar.gz: 963666144b4c5f8f9826a667060e371b73772fa3fae57066cbcac775bc8a56a6e12350984bce5241a90e53d8e29f95e6be78b472c53a319af6b56b15a51f3bc3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,38 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.226.1 (2025-06-24)
5
+ ------------------
6
+
7
+ * Issue - Fixed spelling in the `Aws::Errors::SignalEventError` error message.
8
+
9
+ 3.226.0 (2025-06-17)
10
+ ------------------
11
+
12
+ * Feature - Updated Aws::STS::Client with the latest API changes.
13
+
14
+ * Feature - The AWS Security Token Service APIs AssumeRoleWithSAML and AssumeRoleWithWebIdentity can now be invoked without pre-configured AWS credentials in the SDK configuration.
15
+
16
+ 3.225.2 (2025-06-10)
17
+ ------------------
18
+
19
+ * Issue - Only load required `cgi` modules for Ruby 3.5.
20
+
21
+ 3.225.1 (2025-06-05)
22
+ ------------------
23
+
24
+ * Issue - Fix RPCv2 parser to handle flattened list and flattened map members correctly for `AwsQueryCompatible` services.
25
+
26
+ 3.225.0 (2025-06-02)
27
+ ------------------
28
+
29
+ * Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 2.5 and 2.6.
30
+
31
+ 3.224.1 (2025-05-28)
32
+ ------------------
33
+
34
+ * Issue - Signal data in http response listeners prior to writing, so that data can be inspected or verified before potential mutation.
35
+
4
36
  3.224.0 (2025-05-12)
5
37
  ------------------
6
38
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.224.0
1
+ 3.226.1
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'cgi'
3
+ require "cgi/escape"
4
+ require "cgi/util" if RUBY_VERSION < "3.5"
4
5
 
5
6
  module Aws
6
7
  module Endpoints
@@ -31,7 +31,7 @@ module Aws
31
31
  def emit(type, params)
32
32
  unless @stream
33
33
  raise Aws::Errors::SignalEventError.new(
34
- "Singaling events before making async request"\
34
+ "Signaling events before making async request"\
35
35
  " is not allowed."
36
36
  )
37
37
  end
@@ -85,6 +85,14 @@ module Aws
85
85
  end
86
86
  end
87
87
  end
88
+
89
+ def flattened_list?(shape)
90
+ shape.is_a?(ListShape) && shape.flattened
91
+ end
92
+
93
+ def flattened_map?(shape)
94
+ shape.is_a?(MapShape) && shape.flattened
95
+ end
88
96
  end
89
97
  end
90
98
  end
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'cgi'
3
+ require "cgi/escape"
4
+ require "cgi/util" if RUBY_VERSION < "3.5"
4
5
 
5
6
  module Aws
6
7
  # @api private
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'cgi'
3
+ require "cgi/escape"
4
+ require "cgi/util" if RUBY_VERSION < "3.5"
4
5
 
5
6
  module Aws
6
7
  module Xml
@@ -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.224.0'
694
+ context[:gem_version] = '3.226.1'
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.224.0'
59
+ GEM_VERSION = '3.226.1'
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.224.0'
1064
+ context[:gem_version] = '3.226.1'
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.224.0'
59
+ GEM_VERSION = '3.226.1'
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.224.0'
2597
+ context[:gem_version] = '3.226.1'
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.224.0'
59
+ GEM_VERSION = '3.226.1'
60
60
 
61
61
  end
62
62
 
@@ -66,8 +66,8 @@ module Seahorse
66
66
  # @param [string] chunk
67
67
  def signal_data(chunk)
68
68
  unless chunk == ''
69
- @body.write(chunk)
70
69
  emit(:data, chunk)
70
+ @body.write(chunk)
71
71
  end
72
72
  end
73
73
 
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'cgi'
3
+ require "cgi/escape"
4
+ require "cgi/util" if RUBY_VERSION < "3.5"
4
5
  require 'net/http'
5
6
  require 'net/https'
6
7
  require 'delegate'
data/lib/seahorse/util.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'cgi'
3
+ require "cgi/escape"
4
+ require "cgi/util" if RUBY_VERSION < "3.5"
4
5
 
5
6
  module Seahorse
6
7
  # @api private
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.224.0
4
+ version: 3.226.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -422,7 +422,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
422
422
  requirements:
423
423
  - - ">="
424
424
  - !ruby/object:Gem::Version
425
- version: '2.5'
425
+ version: '2.7'
426
426
  required_rubygems_version: !ruby/object:Gem::Requirement
427
427
  requirements:
428
428
  - - ">="