aws-sdk-core 3.201.5 → 3.202.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: 4c56ef3ae86efb90f1b4aa05e586125837d299507a328f91da2e3ee8cb21a526
4
- data.tar.gz: 320c4f2b04bfee3a2dc133c9efe918ca386c36037339d0a734e8fdf8ed8e419f
3
+ metadata.gz: a0acb38bd2fc237c52d1fa61e7b897aab51f599957a7a024b5f2b3120ff5ec80
4
+ data.tar.gz: 7a77da925684f88493efb41699f91acfa5467446e6375504caba9ccb0267ca12
5
5
  SHA512:
6
- metadata.gz: 88d9eafad3840eb07638dc6aa556611056554f493b56c6027d3afbd2b181cc7ea9ab7e8beaf3f9f30eb7adc13257524a00cc59c6ec8ae91e966fe92162404151
7
- data.tar.gz: b4732037f71e7b0bd2b536a6f39a6bba83939d274c3e4231b37aa15afdb12b3a736d89422eed917c26972c038e5ac4c7f23d591ba6498d80151cdf764f47e8ce
6
+ metadata.gz: ee839677003e2fdb209d00fbca982855f29fb3de5a595435df091721f4454b528afaa9babd67f6e8c8c5cc202375827724ffeec24fede2aaff62c0c0aa904d71
7
+ data.tar.gz: 17d47c0e1f7d129f5e07e5f1de7d8b42ac5be4b5ac7ed654d696129bc7e30db792b7eb4b493adea011fd542b706bce710f95c8536c35a27cf5c5493005e25697
data/CHANGELOG.md CHANGED
@@ -1,6 +1,22 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.202.1 (2024-08-29)
5
+ ------------------
6
+
7
+ * Issue - require default plugins when loading aws-sdk-core.
8
+
9
+ 3.202.0 (2024-08-27)
10
+ ------------------
11
+
12
+ * Feature - Updated Aws::STS::Client with the latest API changes.
13
+
14
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
15
+
16
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
17
+
18
+ * Issue - Reduce initial memory usage by auto-loading bundled gems (STS, SSO, SSOOIDC).
19
+
4
20
  3.201.5 (2024-08-15)
5
21
  ------------------
6
22
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.201.5
1
+ 3.202.1
data/lib/aws-sdk-core.rb CHANGED
@@ -109,15 +109,30 @@ 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
+ # require default plugins
113
+ require_relative 'seahorse/client/plugins/content_length'
114
+ require_relative 'aws-sdk-core/plugins/credentials_configuration'
115
+ require_relative 'aws-sdk-core/plugins/logging'
116
+ require_relative 'aws-sdk-core/plugins/param_converter'
117
+ require_relative 'aws-sdk-core/plugins/param_validator'
118
+ require_relative 'aws-sdk-core/plugins/user_agent'
119
+ require_relative 'aws-sdk-core/plugins/helpful_socket_errors'
120
+ require_relative 'aws-sdk-core/plugins/retry_errors'
121
+ require_relative 'aws-sdk-core/plugins/global_configuration'
122
+ require_relative 'aws-sdk-core/plugins/regional_endpoint'
123
+ require_relative 'aws-sdk-core/plugins/endpoint_discovery'
124
+ require_relative 'aws-sdk-core/plugins/endpoint_pattern'
125
+ require_relative 'aws-sdk-core/plugins/response_paging'
126
+ require_relative 'aws-sdk-core/plugins/stub_responses'
127
+ require_relative 'aws-sdk-core/plugins/idempotency_token'
128
+ require_relative 'aws-sdk-core/plugins/invocation_id'
129
+ require_relative 'aws-sdk-core/plugins/transfer_encoding'
130
+ require_relative 'aws-sdk-core/plugins/http_checksum'
131
+ require_relative 'aws-sdk-core/plugins/checksum_algorithm'
132
+ require_relative 'aws-sdk-core/plugins/request_compression'
133
+ require_relative 'aws-sdk-core/plugins/defaults_mode'
134
+ require_relative 'aws-sdk-core/plugins/recursion_detection'
135
+ require_relative 'aws-sdk-core/plugins/sign'
121
136
 
122
137
  module Aws
123
138
 
@@ -205,3 +220,14 @@ module Aws
205
220
 
206
221
  end
207
222
  end
223
+
224
+ # Autoload bundled service gems used in credential providers
225
+ # need to ensure that the files are the local files from aws-sdk-core
226
+ # and not the installed, legacy/dummy service gems.
227
+
228
+ # aws-sdk-sts is included to support Aws::AssumeRoleCredentials
229
+ Aws.autoload :STS, File.join(__dir__, 'aws-sdk-sts.rb')
230
+
231
+ # aws-sdk-sso is included to support Aws::SSOCredentials
232
+ Aws.autoload :SSO, File.join(__dir__, 'aws-sdk-sso.rb')
233
+ 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.1'
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.1'
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.1'
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.1'
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.1'
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.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.201.5
4
+ version: 3.202.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: 2024-08-15 00:00:00.000000000 Z
11
+ date: 2024-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath