aws-sdk-s3control 1.43.0 → 1.44.0

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: 87652068908ee179c73f75cd1b51c54d47af2d6bd939b1d2df45c9d1b0b29b94
4
- data.tar.gz: 272033beb0df35f8f5eff22e13b9fd779b0503e515ffb6c53aae06de1c935d8f
3
+ metadata.gz: d88530f39288e09d88b63b381f0fd87dffcdc8c4bc0b33f58baae8ec5a252d39
4
+ data.tar.gz: 119e3e453e4ddb5b6481b26c4fc2c00d42f6388c555c80a0e9d74ec03307568b
5
5
  SHA512:
6
- metadata.gz: d6f1c5e7115a4ad1d2831aae3685e1540cff6f6c9269fe5780f8ad927cc1faacffea320a1a2c7371a6b08e87bb1365104fd5102831547ba36e3a39cc19b61d8e
7
- data.tar.gz: d1ee19d88714be6323c6a5c53cf854223e200ee04dc4537493081e86eb7f6f422e61ef9bcf7bf3cbe6cde7285207e175353931c5a9b663739e2d73e2369bf825
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.43.0
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.43.0'
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
- endpoint = Aws::Partitions::EndpointProvider.resolve(
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
- context.http_request.endpoint = URI.parse(endpoint)
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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-s3control/customizations'
48
48
  # @!group service
49
49
  module Aws::S3Control
50
50
 
51
- GEM_VERSION = '1.43.0'
51
+ GEM_VERSION = '1.44.0'
52
52
 
53
53
  end
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.43.0
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-22 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4