aws-sdk-core 3.121.3 → 3.121.5
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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-core/plugins/signature_v4.rb +13 -23
- data/lib/aws-sdk-sso/client.rb +1 -1
- data/lib/aws-sdk-sso.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: 0b5bb4cda445702b95455d7dbc44a112e3c16a1126a28e85fea333ec5c77c172
|
|
4
|
+
data.tar.gz: 1846a0a908996c79f4ff83c927c5050b220621dce5b5a1b1711326ce2241fbef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0504f7da8b17697b4e5113726a1e210a3f5b68e3f939db3aee0cf44cb14bdf611714180e406d679ea46fdce971c931e53ac874f4ecb40cd7b1031b077b88ae0
|
|
7
|
+
data.tar.gz: 9d5d48918e4b6cfdb29ca34d0f2513554b3bf02e4789151f9a43545b2f7fa40870dbe446fc8e906333d0fac95197da8cd015f1d508db4b36093462461bfab210
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
3.121.5 (2021-10-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Issue - bump minimum version of `aws-partitions` (#2603).
|
|
8
|
+
|
|
9
|
+
3.121.4 (2021-10-28)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Issue - This version has been yanked. (#2603).
|
|
13
|
+
|
|
14
|
+
* Issue - use the `EndpointProvider` to lookup signing region and name.
|
|
15
|
+
|
|
4
16
|
3.121.3 (2021-10-20)
|
|
5
17
|
------------------
|
|
6
18
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.121.
|
|
1
|
+
3.121.5
|
|
@@ -12,32 +12,22 @@ module Aws
|
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
option(:sigv4_name) do |cfg|
|
|
15
|
-
|
|
15
|
+
signingName = if cfg.region
|
|
16
|
+
Aws::Partitions::EndpointProvider.signing_service(
|
|
17
|
+
cfg.region, cfg.api.metadata['endpointPrefix']
|
|
18
|
+
)
|
|
19
|
+
end
|
|
20
|
+
signingName || cfg.api.metadata['signingName'] || cfg.api.metadata['endpointPrefix']
|
|
16
21
|
end
|
|
17
22
|
|
|
18
23
|
option(:sigv4_region) do |cfg|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
# client for a region like "us-west-2", we will
|
|
27
|
-
# always use "route53.amazonaws.com". This endpoint
|
|
28
|
-
# is actually global to the entire partition,
|
|
29
|
-
# and must be signed as "us-east-1".
|
|
30
|
-
#
|
|
31
|
-
# * When the region is configured, but it is configured
|
|
32
|
-
# to a non region, such as "aws-global". This is similar
|
|
33
|
-
# to the previous case. We use the Aws::Partitions::EndpointProvider
|
|
34
|
-
# to resolve to the actual signing region.
|
|
35
|
-
#
|
|
36
|
-
prefix = cfg.api.metadata['endpointPrefix']
|
|
37
|
-
if prefix && cfg.endpoint.to_s.match(/#{prefix}\.amazonaws\.com/)
|
|
38
|
-
'us-east-1'
|
|
39
|
-
elsif cfg.region
|
|
40
|
-
Aws::Partitions::EndpointProvider.signing_region(cfg.region, prefix)
|
|
24
|
+
if cfg.region
|
|
25
|
+
if cfg.respond_to?(:sts_regional_endpoints)
|
|
26
|
+
sts_regional = cfg.sts_regional_endpoints
|
|
27
|
+
end
|
|
28
|
+
Aws::Partitions::EndpointProvider.signing_region(
|
|
29
|
+
cfg.region, cfg.api.metadata['endpointPrefix'], sts_regional
|
|
30
|
+
)
|
|
41
31
|
end
|
|
42
32
|
end
|
|
43
33
|
|
data/lib/aws-sdk-sso/client.rb
CHANGED
data/lib/aws-sdk-sso.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
|
@@ -2303,7 +2303,7 @@ module Aws::STS
|
|
|
2303
2303
|
params: params,
|
|
2304
2304
|
config: config)
|
|
2305
2305
|
context[:gem_name] = 'aws-sdk-core'
|
|
2306
|
-
context[:gem_version] = '3.121.
|
|
2306
|
+
context[:gem_version] = '3.121.5'
|
|
2307
2307
|
Seahorse::Client::Request.new(handlers, context)
|
|
2308
2308
|
end
|
|
2309
2309
|
|
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.121.
|
|
4
|
+
version: 3.121.5
|
|
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: 2021-10-
|
|
11
|
+
date: 2021-10-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|
|
@@ -33,7 +33,7 @@ dependencies:
|
|
|
33
33
|
version: '1'
|
|
34
34
|
- - ">="
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
|
-
version: 1.
|
|
36
|
+
version: 1.520.1
|
|
37
37
|
type: :runtime
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
version: '1'
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 1.
|
|
46
|
+
version: 1.520.1
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: aws-sigv4
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|