aws-sdk-core 3.201.4 → 3.202.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-core/plugins/sign.rb +2 -3
- data/lib/aws-sdk-core.rb +35 -9
- data/lib/aws-sdk-sso/client.rb +1 -1
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-ssooidc/client.rb +1 -1
- data/lib/aws-sdk-ssooidc.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0acb38bd2fc237c52d1fa61e7b897aab51f599957a7a024b5f2b3120ff5ec80
|
|
4
|
+
data.tar.gz: 7a77da925684f88493efb41699f91acfa5467446e6375504caba9ccb0267ca12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee839677003e2fdb209d00fbca982855f29fb3de5a595435df091721f4454b528afaa9babd67f6e8c8c5cc202375827724ffeec24fede2aaff62c0c0aa904d71
|
|
7
|
+
data.tar.gz: 17d47c0e1f7d129f5e07e5f1de7d8b42ac5be4b5ac7ed654d696129bc7e30db792b7eb4b493adea011fd542b706bce710f95c8536c35a27cf5c5493005e25697
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,28 @@
|
|
|
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
|
+
|
|
20
|
+
3.201.5 (2024-08-15)
|
|
21
|
+
------------------
|
|
22
|
+
|
|
23
|
+
* Issue - Allow legacy/undocumented `sigv4_signer` configuration to override resolved signer.
|
|
24
|
+
* Issue - Consider sigv4a supported without crt check.
|
|
25
|
+
|
|
4
26
|
3.201.4 (2024-08-08)
|
|
5
27
|
------------------
|
|
6
28
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.202.1
|
|
@@ -13,8 +13,7 @@ module Aws
|
|
|
13
13
|
option(:sigv4_region)
|
|
14
14
|
option(:unsigned_operations, default: [])
|
|
15
15
|
|
|
16
|
-
supported_auth_types = %w[sigv4 bearer sigv4-s3express none]
|
|
17
|
-
supported_auth_types += ['sigv4a'] if Aws::Sigv4::Signer.use_crt?
|
|
16
|
+
supported_auth_types = %w[sigv4 bearer sigv4-s3express sigv4a none]
|
|
18
17
|
SUPPORTED_AUTH_TYPES = supported_auth_types.freeze
|
|
19
18
|
|
|
20
19
|
def add_handlers(handlers, cfg)
|
|
@@ -107,7 +106,7 @@ module Aws
|
|
|
107
106
|
auth_scheme['signingRegion']
|
|
108
107
|
end
|
|
109
108
|
begin
|
|
110
|
-
@signer = Aws::Sigv4::Signer.new(
|
|
109
|
+
@signer = config.sigv4_signer || Aws::Sigv4::Signer.new(
|
|
111
110
|
service: config.sigv4_name || auth_scheme['signingName'],
|
|
112
111
|
region: sigv4_overrides[:region] || config.sigv4_region || region,
|
|
113
112
|
credentials_provider: sigv4_overrides[:credentials] || config.credentials,
|
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
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
require_relative 'aws-sdk-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
require_relative 'aws-sdk-
|
|
120
|
-
require_relative 'aws-sdk-
|
|
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')
|
data/lib/aws-sdk-sso/client.rb
CHANGED
data/lib/aws-sdk-sso.rb
CHANGED
data/lib/aws-sdk-ssooidc.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
|
@@ -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.
|
|
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
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.
|
|
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-
|
|
11
|
+
date: 2024-08-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|
|
@@ -56,14 +56,14 @@ dependencies:
|
|
|
56
56
|
requirements:
|
|
57
57
|
- - "~>"
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: '1.
|
|
59
|
+
version: '1.9'
|
|
60
60
|
type: :runtime
|
|
61
61
|
prerelease: false
|
|
62
62
|
version_requirements: !ruby/object:Gem::Requirement
|
|
63
63
|
requirements:
|
|
64
64
|
- - "~>"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: '1.
|
|
66
|
+
version: '1.9'
|
|
67
67
|
- !ruby/object:Gem::Dependency
|
|
68
68
|
name: aws-eventstream
|
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|