aws-sdk-s3control 1.43.0 → 1.44.0
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 +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +4 -2
- data/lib/aws-sdk-s3control/plugins/dualstack.rb +4 -2
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d88530f39288e09d88b63b381f0fd87dffcdc8c4bc0b33f58baae8ec5a252d39
|
|
4
|
+
data.tar.gz: 119e3e453e4ddb5b6481b26c4fc2c00d42f6388c555c80a0e9d74ec03307568b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1a409a208d7eb4a653f8eec759346139d42cc19efbec946ef336f42ce664c0b6cab69c22a6934b64ac30792f67b93290820268f72da6ab73275bc89372f5e67
|
|
7
|
+
data.tar.gz: afa3458e89c82e3128bcfd25b31241abc7b15894a668d1b0a67f993851d063b7ad2599f8bdc11f94497b464f4620e10ef63c02ae95a08ef036dc648e4acc3ac0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.44.0 (2021-11-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
* Issue - Fix a bug where the dualstack plugin was dropping URI paths.
|
|
10
|
+
|
|
4
11
|
1.43.0 (2021-11-22)
|
|
5
12
|
------------------
|
|
6
13
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.44.0
|
|
@@ -125,7 +125,9 @@ module Aws::S3Control
|
|
|
125
125
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
126
126
|
# are very aggressive. Construct and pass an instance of
|
|
127
127
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
128
|
-
# enable retries and extended timeouts.
|
|
128
|
+
# enable retries and extended timeouts. Instance profile credential
|
|
129
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
130
|
+
# to true.
|
|
129
131
|
#
|
|
130
132
|
# @option options [required, String] :region
|
|
131
133
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -4661,7 +4663,7 @@ module Aws::S3Control
|
|
|
4661
4663
|
params: params,
|
|
4662
4664
|
config: config)
|
|
4663
4665
|
context[:gem_name] = 'aws-sdk-s3control'
|
|
4664
|
-
context[:gem_version] = '1.
|
|
4666
|
+
context[:gem_version] = '1.44.0'
|
|
4665
4667
|
Seahorse::Client::Request.new(handlers, context)
|
|
4666
4668
|
end
|
|
4667
4669
|
|
|
@@ -34,7 +34,7 @@ module Aws
|
|
|
34
34
|
# if it's a regional endpoint and not an ARN, then construct the
|
|
35
35
|
# endpoint. regional endpoint plugin uses the dualstack config
|
|
36
36
|
if context.config.regional_endpoint && !context.metadata[:s3_arn]
|
|
37
|
-
|
|
37
|
+
new_endpoint = Aws::Partitions::EndpointProvider.resolve(
|
|
38
38
|
context.config.region,
|
|
39
39
|
's3-control',
|
|
40
40
|
'regional',
|
|
@@ -43,7 +43,9 @@ module Aws
|
|
|
43
43
|
fips: context.config.use_fips_endpoint
|
|
44
44
|
}
|
|
45
45
|
)
|
|
46
|
-
|
|
46
|
+
endpoint = URI.parse(context.http_request.endpoint.to_s)
|
|
47
|
+
endpoint.host = URI.parse(new_endpoint).host
|
|
48
|
+
context.http_request.endpoint = endpoint
|
|
47
49
|
end
|
|
48
50
|
@handler.call(context)
|
|
49
51
|
end
|
data/lib/aws-sdk-s3control.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-s3control
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.44.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: 2021-11-
|
|
11
|
+
date: 2021-11-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|