aws-sdk-core 3.225.1 → 3.225.2

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: 46a7d116a72d11f9bb92bb54fcbd7fc499a648858331558501f929e1ca051abb
4
- data.tar.gz: fbcc09871a414fbfb5595e5784eb6a073b386d4931c4e7c48f9d2db20295bfdb
3
+ metadata.gz: 5f77bb0a527676ff1076e9ce5e1aa81336c5c7876d203667ec7fc4993293ed38
4
+ data.tar.gz: 6f49a97b9b2ac5652c492920422c89293ef3eeb463f507419220dc1d60ba4a91
5
5
  SHA512:
6
- metadata.gz: 02f986d640f24f9cfff25e1da0d0a911f1731a62f627f9d75baf372031461fb40e6e7c8d7900de4e86177192c32e4945ab609e12254fb4a02e811032966f9964
7
- data.tar.gz: 93db28af8711d1fa15de97dbd5dc805d241bd6d5d264e793e25660deeb16a1e5dfc0f9777fd7085f7b411dc50cbf34dbf60977437253bb35cc99bb5e857edf5d
6
+ metadata.gz: faeb430c122c774162db6bdf7cfb697a18598bf28efae0ac2b4387b2a83b4166a98032aaa5098bd98587adb634c40a6faa96c8ba3a41d2f264c3bc31bd21ddf9
7
+ data.tar.gz: 8fba4a5d0638db46abb2badb552b7fce247c6279d6e47c44b7f8e03b55f8b0954616453a69e0cce5e3ba1828ff6baa1adcc8149dfcdd74f09bda87efb42f08e5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.225.2 (2025-06-10)
5
+ ------------------
6
+
7
+ * Issue - Only load required `cgi` modules for Ruby 3.5.
8
+
4
9
  3.225.1 (2025-06-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.225.1
1
+ 3.225.2
@@ -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
@@ -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.225.1'
694
+ context[:gem_version] = '3.225.2'
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.1'
59
+ GEM_VERSION = '3.225.2'
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.1'
1064
+ context[:gem_version] = '3.225.2'
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.1'
59
+ GEM_VERSION = '3.225.2'
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.1'
2597
+ context[:gem_version] = '3.225.2'
2598
2598
  Seahorse::Client::Request.new(handlers, context)
2599
2599
  end
2600
2600
 
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.1'
59
+ GEM_VERSION = '3.225.2'
60
60
 
61
61
  end
62
62
 
@@ -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.225.1
4
+ version: 3.225.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services