aws-sdk-core 3.202.1 → 3.202.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: a0acb38bd2fc237c52d1fa61e7b897aab51f599957a7a024b5f2b3120ff5ec80
4
- data.tar.gz: 7a77da925684f88493efb41699f91acfa5467446e6375504caba9ccb0267ca12
3
+ metadata.gz: 0072b215b84fdf20732969f2e6c471ba8b5b9a27de261addc0518fe650d31eec
4
+ data.tar.gz: 01e7506da1222047c1e852fa375b84f104a16476057de6448ad79582d5096345
5
5
  SHA512:
6
- metadata.gz: ee839677003e2fdb209d00fbca982855f29fb3de5a595435df091721f4454b528afaa9babd67f6e8c8c5cc202375827724ffeec24fede2aaff62c0c0aa904d71
7
- data.tar.gz: 17d47c0e1f7d129f5e07e5f1de7d8b42ac5be4b5ac7ed654d696129bc7e30db792b7eb4b493adea011fd542b706bce710f95c8536c35a27cf5c5493005e25697
6
+ metadata.gz: 4306a917a294c832eb03c3c26257b11d5e20a50224808ade0d71e3856f27c02c0e2e0ea0b9aab2c97718035938de0fd058b2abefb96dae00f07c2d3b1a44eb3c
7
+ data.tar.gz: 7fed48d60a2e1ae6dcf968af4c4291153417ef22b0b3e8aa69fae68d3b89b88ad43fb5f2d2a453295eb28b45376cb2602bfd3d688d8d7bbde3aa12b5c5e038d5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.202.2 (2024-08-30)
5
+ ------------------
6
+
7
+ * Issue - revert auto-loading of bundled gems.
8
+
4
9
  3.202.1 (2024-08-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.202.1
1
+ 3.202.2
data/lib/aws-sdk-core.rb CHANGED
@@ -109,30 +109,15 @@ require_relative 'aws-sdk-core/plugins/signature_v4'
109
109
  # defaults
110
110
  require_relative 'aws-defaults'
111
111
 
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'
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'
136
121
 
137
122
  module Aws
138
123
 
@@ -220,14 +205,3 @@ module Aws
220
205
 
221
206
  end
222
207
  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.202.1'
645
+ context[:gem_version] = '3.202.2'
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.202.1'
57
+ GEM_VERSION = '3.202.2'
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.202.1'
998
+ context[:gem_version] = '3.202.2'
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.202.1'
57
+ GEM_VERSION = '3.202.2'
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.202.1'
2392
+ context[:gem_version] = '3.202.2'
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.202.1'
57
+ GEM_VERSION = '3.202.2'
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.202.1
4
+ version: 3.202.2
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-29 00:00:00.000000000 Z
11
+ date: 2024-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath