aws-sdk-core 3.201.5 → 3.202.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: 4c56ef3ae86efb90f1b4aa05e586125837d299507a328f91da2e3ee8cb21a526
4
- data.tar.gz: 320c4f2b04bfee3a2dc133c9efe918ca386c36037339d0a734e8fdf8ed8e419f
3
+ metadata.gz: 28f393b9dd101ce417ff27f8a77853b162bb827e042610da653c4a80a69985a9
4
+ data.tar.gz: 0e431dcd02fce16856c3102e61960b82119f553f5ea03886b5cdccb4c2cf1332
5
5
  SHA512:
6
- metadata.gz: 88d9eafad3840eb07638dc6aa556611056554f493b56c6027d3afbd2b181cc7ea9ab7e8beaf3f9f30eb7adc13257524a00cc59c6ec8ae91e966fe92162404151
7
- data.tar.gz: b4732037f71e7b0bd2b536a6f39a6bba83939d274c3e4231b37aa15afdb12b3a736d89422eed917c26972c038e5ac4c7f23d591ba6498d80151cdf764f47e8ce
6
+ metadata.gz: d037a9238cfa740254b4a43ee73f0089164d0d315af36a9b1956e0111b3edcc5abdb74d271b9b947ecdebad8bf643a7055ae2c320a237bcc4713e33126531929
7
+ data.tar.gz: 7d5d67f7ca48b04cc21478fe16add24137497ad070292ad71fe35b52c8ba10177cba0fa31ae19dbf6dce289d16521375d4a0a5f26088a84d450ac1fbdaf91c1d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.202.0 (2024-08-27)
5
+ ------------------
6
+
7
+ * Feature - Updated Aws::STS::Client with the latest API changes.
8
+
9
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
10
+
11
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
12
+
13
+ * Issue - Reduce initial memory usage by auto-loading bundled gems (STS, SSO, SSOOIDC).
14
+
4
15
  3.201.5 (2024-08-15)
5
16
  ------------------
6
17
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.201.5
1
+ 3.202.0
data/lib/aws-sdk-core.rb CHANGED
@@ -109,15 +109,7 @@ require_relative 'aws-sdk-core/plugins/signature_v4'
109
109
  # defaults
110
110
  require_relative 'aws-defaults'
111
111
 
112
- # plugins
113
- # loaded through building STS or SSO ..
114
-
115
- # aws-sdk-sts is included to support Aws::AssumeRoleCredentials
116
- require_relative 'aws-sdk-sts'
117
-
118
- # aws-sdk-sso is included to support Aws::SSOCredentials
119
- require_relative 'aws-sdk-sso'
120
- require_relative 'aws-sdk-ssooidc'
112
+ # plugins - loaded through service clients as needed.
121
113
 
122
114
  module Aws
123
115
 
@@ -205,3 +197,14 @@ module Aws
205
197
 
206
198
  end
207
199
  end
200
+
201
+ # Autoload bundled service gems used in credential providers
202
+ # need to ensure that the files are the local files from aws-sdk-core
203
+ # and not the installed, legacy/dummy service gems.
204
+
205
+ # aws-sdk-sts is included to support Aws::AssumeRoleCredentials
206
+ Aws.autoload :STS, File.join(__dir__, 'aws-sdk-sts.rb')
207
+
208
+ # aws-sdk-sso is included to support Aws::SSOCredentials
209
+ Aws.autoload :SSO, File.join(__dir__, 'aws-sdk-sso.rb')
210
+ Aws.autoload :SSOOIDC, File.join(__dir__, 'aws-sdk-ssooidc.rb')
@@ -642,7 +642,7 @@ module Aws::SSO
642
642
  params: params,
643
643
  config: config)
644
644
  context[:gem_name] = 'aws-sdk-core'
645
- context[:gem_version] = '3.201.5'
645
+ context[:gem_version] = '3.202.0'
646
646
  Seahorse::Client::Request.new(handlers, context)
647
647
  end
648
648
 
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.201.5'
57
+ GEM_VERSION = '3.202.0'
58
58
 
59
59
  end
@@ -995,7 +995,7 @@ module Aws::SSOOIDC
995
995
  params: params,
996
996
  config: config)
997
997
  context[:gem_name] = 'aws-sdk-core'
998
- context[:gem_version] = '3.201.5'
998
+ context[:gem_version] = '3.202.0'
999
999
  Seahorse::Client::Request.new(handlers, context)
1000
1000
  end
1001
1001
 
@@ -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.201.5'
57
+ GEM_VERSION = '3.202.0'
58
58
 
59
59
  end
@@ -2389,7 +2389,7 @@ module Aws::STS
2389
2389
  params: params,
2390
2390
  config: config)
2391
2391
  context[:gem_name] = 'aws-sdk-core'
2392
- context[:gem_version] = '3.201.5'
2392
+ context[:gem_version] = '3.202.0'
2393
2393
  Seahorse::Client::Request.new(handlers, context)
2394
2394
  end
2395
2395
 
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.201.5'
57
+ GEM_VERSION = '3.202.0'
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.201.5
4
+ version: 3.202.0
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: 2024-08-15 00:00:00.000000000 Z
11
+ date: 2024-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath