aws-sdk-core 3.201.0 → 3.201.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66b895cbab1c128ae492f8b02d379edf6856cd38a6eadf985b97a798f4cf4252
4
- data.tar.gz: dadbea139b8d5e9f72dc66492478f80e17d501c2b1a6f8acb482a0c8b036ace6
3
+ metadata.gz: 0cced353e3a401bc05f3b8c5bc6175ecb5ea916a1d5c7bc4e172eec5c6021dd1
4
+ data.tar.gz: eb40ea2b0a789f38ec9118a74416fdf0a13aec3c8fe1c6fbbce7c107893e2a5d
5
5
  SHA512:
6
- metadata.gz: 7f60df6c8bc98191884bfd56ce021b337c2f08e4b87b235afb4a8ea39de9e15f6ff036a9a442cf6b4fb40635a5b03a0bbe082310e498474f251c7e5119cc3d28
7
- data.tar.gz: 6ba5a5f1afb8f00cb676a5b61b59a7ca3ccc0922fa92f5548c126151d4d9446a745ea275a88d01ba275fa00583f0cde7fcd276847c513e4e72b26dbb15f2cfc0
6
+ metadata.gz: 7dba87fc96142f251dae476748deed876a944c935a7a925db33dd0400d8518823224e92ed5f785a6b098f06cb06a8fc45e41b2f608b82dacd687717787191f55
7
+ data.tar.gz: 2e7da3ef2c1dc2c99f9fc002c673e909d6befe24c98061a76bbc0bec85c8274156b34da34e0832260c1b2d55e3db92f307206f80180162058f0896a91a2c7f8e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.201.2 (2024-07-18)
5
+ ------------------
6
+
7
+ * Issue - Allow modeled types to be used for Union inputs.
8
+ * Issue - Ensure that nested sensitive members and sensitive members of lists and maps are filtered.
9
+
10
+ 3.201.1 (2024-07-05)
11
+ ------------------
12
+
13
+ * Issue - Fix `Aws::ProcessCredentials` warning in cases where shared config is used.
14
+
4
15
  3.201.0 (2024-07-02)
5
16
  ------------------
6
17
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.201.0
1
+ 3.201.2
@@ -84,7 +84,7 @@ module Aws
84
84
  def static_profile_process_credentials(options)
85
85
  if Aws.shared_config.config_enabled? && options[:config] && options[:config].profile
86
86
  process_provider = Aws.shared_config.credential_process(profile: options[:config].profile)
87
- ProcessCredentials.new(process_provider) if process_provider
87
+ ProcessCredentials.new([process_provider]) if process_provider
88
88
  end
89
89
  rescue Errors::NoSuchProfileError
90
90
  nil
@@ -117,9 +117,9 @@ module Aws
117
117
 
118
118
  def process_credentials(options)
119
119
  profile_name = determine_profile_name(options)
120
- if Aws.shared_config.config_enabled? &&
121
- (process_provider = Aws.shared_config.credential_process(profile: profile_name))
122
- ProcessCredentials.new(process_provider)
120
+ if Aws.shared_config.config_enabled?
121
+ process_provider = Aws.shared_config.credential_process(profile: profile_name)
122
+ ProcessCredentials.new([process_provider]) if process_provider
123
123
  end
124
124
  rescue Errors::NoSuchProfileError
125
125
  nil
@@ -55,14 +55,14 @@ module Aws
55
55
  filtered[key] = if @enabled && filters.include?(key)
56
56
  '[FILTERED]'
57
57
  else
58
- filter(value, type)
58
+ filter(value, value.class)
59
59
  end
60
60
  end
61
61
  filtered
62
62
  end
63
63
 
64
64
  def filter_array(values, type)
65
- values.map { |value| filter(value, type) }
65
+ values.map { |value| filter(value, value.class) }
66
66
  end
67
67
 
68
68
  end
@@ -71,7 +71,7 @@ module Aws
71
71
  end
72
72
 
73
73
  if @validate_required && shape.union
74
- set_values = @input ? values.length : values.to_h.length
74
+ set_values = values.to_h.length
75
75
  if set_values > 1
76
76
  errors << "multiple values provided to union at #{context} - must contain exactly one of the supported types: #{shape.member_names.join(', ')}"
77
77
  elsif set_values == 0
@@ -339,7 +339,7 @@ module Aws
339
339
  if @parsed_config
340
340
  credential_process ||= @parsed_config.fetch(profile, {})['credential_process']
341
341
  end
342
- ProcessCredentials.new(credential_process) if credential_process
342
+ ProcessCredentials.new([credential_process]) if credential_process
343
343
  end
344
344
 
345
345
  def credentials_from_shared(profile, _opts)
@@ -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.0'
645
+ context[:gem_version] = '3.201.2'
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.0'
57
+ GEM_VERSION = '3.201.2'
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.0'
998
+ context[:gem_version] = '3.201.2'
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.0'
57
+ GEM_VERSION = '3.201.2'
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.0'
2392
+ context[:gem_version] = '3.201.2'
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.0'
57
+ GEM_VERSION = '3.201.2'
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.0
4
+ version: 3.201.2
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-02 00:00:00.000000000 Z
11
+ date: 2024-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath