aws-sdk-core 3.201.0 → 3.201.1

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: 66b895cbab1c128ae492f8b02d379edf6856cd38a6eadf985b97a798f4cf4252
4
- data.tar.gz: dadbea139b8d5e9f72dc66492478f80e17d501c2b1a6f8acb482a0c8b036ace6
3
+ metadata.gz: c629d6661bdb47f143fa7d3ed665382bfe70dbbdc7a81f13e3160a3fbb363436
4
+ data.tar.gz: 7b44256ddc9ac136756cf7f69bb98e8053780dc77be4ccf30c0bf07e2ce8f20d
5
5
  SHA512:
6
- metadata.gz: 7f60df6c8bc98191884bfd56ce021b337c2f08e4b87b235afb4a8ea39de9e15f6ff036a9a442cf6b4fb40635a5b03a0bbe082310e498474f251c7e5119cc3d28
7
- data.tar.gz: 6ba5a5f1afb8f00cb676a5b61b59a7ca3ccc0922fa92f5548c126151d4d9446a745ea275a88d01ba275fa00583f0cde7fcd276847c513e4e72b26dbb15f2cfc0
6
+ metadata.gz: 1bc74fbcc83b9d8d04b8da4b55c822f08fbddfc2ef0b856f300056ee8b073f9c474839cd58ff1b4cfa02655c474dbe9a3dc41b692e4716f4db959ae0d3d84fcc
7
+ data.tar.gz: 9b494a8c988caa82f286341be742c86a35238bdf9f6bca76623ed668e06f531396ea4fda0c3958bf47b2526f32fb2f64d0e4d2a9890d12f56828696812a1bbfc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.201.1 (2024-07-05)
5
+ ------------------
6
+
7
+ * Issue - Fix `Aws::ProcessCredentials` warning in cases where shared config is used.
8
+
4
9
  3.201.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.201.0
1
+ 3.201.1
@@ -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
@@ -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.1'
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.1'
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.1'
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.1'
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.1'
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.1'
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.1
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-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath