aws-sdk-core 3.201.2 → 3.201.3

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: 0cced353e3a401bc05f3b8c5bc6175ecb5ea916a1d5c7bc4e172eec5c6021dd1
4
- data.tar.gz: eb40ea2b0a789f38ec9118a74416fdf0a13aec3c8fe1c6fbbce7c107893e2a5d
3
+ metadata.gz: 3242d42e3e0e5e2edc14b5952789ec1dcf2a1a815c2e3378b8c317279cfb4cde
4
+ data.tar.gz: ccf76742ca38e548949a69a6d75ad7040e605247b378a597ec6d00336df816f2
5
5
  SHA512:
6
- metadata.gz: 7dba87fc96142f251dae476748deed876a944c935a7a925db33dd0400d8518823224e92ed5f785a6b098f06cb06a8fc45e41b2f608b82dacd687717787191f55
7
- data.tar.gz: 2e7da3ef2c1dc2c99f9fc002c673e909d6befe24c98061a76bbc0bec85c8274156b34da34e0832260c1b2d55e3db92f307206f80180162058f0896a91a2c7f8e
6
+ metadata.gz: 012726aaef8a0b88c05c1f2168096c9d0f69385f618a1eaba177d949fcf715488d8a7b3475f5eb157f7c0d1a81a7c936851d96f4b25af5a6c1ca329ff98c17ad
7
+ data.tar.gz: ab95eaef0edc1d0f0a4c04ffa1a1c401b1caff844e56c000df70a8333af8953f82d89828ad52886a5915842c85528399909c895201f666df04a9f015ca8648e9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.201.3 (2024-07-23)
5
+ ------------------
6
+
7
+ * Issue - Add `disableNormalizePath` when resolving auth_scheme for S3.
8
+
4
9
  3.201.2 (2024-07-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.201.2
1
+ 3.201.3
@@ -42,6 +42,13 @@ module Aws
42
42
  def merge_signing_defaults(auth_scheme, config)
43
43
  if %w[sigv4 sigv4a sigv4-s3express].include?(auth_scheme['name'])
44
44
  auth_scheme['signingName'] ||= sigv4_name(config)
45
+
46
+ # back fill disableNormalizePath for S3 until it gets correctly set in the rules
47
+ if auth_scheme['signingName'] == 's3' &&
48
+ !auth_scheme.include?('disableNormalizePath') &&
49
+ auth_scheme.include?('disableDoubleEncoding')
50
+ auth_scheme['disableNormalizePath'] = auth_scheme['disableDoubleEncoding']
51
+ end
45
52
  if auth_scheme['name'] == 'sigv4a'
46
53
  # config option supersedes endpoint properties
47
54
  auth_scheme['signingRegionSet'] =
@@ -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.201.2'
645
+ context[:gem_version] = '3.201.3'
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.201.2'
57
+ GEM_VERSION = '3.201.3'
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.201.2'
998
+ context[:gem_version] = '3.201.3'
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.201.2'
57
+ GEM_VERSION = '3.201.3'
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.201.2'
2392
+ context[:gem_version] = '3.201.3'
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.201.2'
57
+ GEM_VERSION = '3.201.3'
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.201.2
4
+ version: 3.201.3
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-07-18 00:00:00.000000000 Z
11
+ date: 2024-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath