aws-sdk-core 3.239.1 → 3.239.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: 52fc087e7e5059e9d4a0b205cd1bf50cb4521484870bf7b8755203f50e9ea646
4
- data.tar.gz: 07bba301eca5303e3f17182b205c2cdf92c524a0167c232db9692fdbd3d6560b
3
+ metadata.gz: 9f1e1429692b82c74af4f73ca4302ef10daa7cb7819a46a5571efe119d5219d3
4
+ data.tar.gz: cd44f64eaba5dac2b0cc8057c292098b4512db12b34250397bbaa723a142aa72
5
5
  SHA512:
6
- metadata.gz: bcb6d45ffb3a801094815216e6c7e801942e0630a26c82f9e6993ba67dd8b18471884be594a24cdf6b96bedb57761dd189d262e07adc47bf356083871eaee525
7
- data.tar.gz: e3e88eb601c9b58d9e92d7cc19ea36b2f9eeccb663d961aecc8d52de91302ac0e18d1db58019bd032a306e1287ff121ac4354c6e481215753f079f88a42cd88e
6
+ metadata.gz: b183ab5519ff8d1df36c32dff3abe1aab2759ba4979a8ed9c1fef8d9d5feac08489c632e2313248ad4cbef327b66a9b226e7b7d0a930ff01cf1ba194f47fdaea
7
+ data.tar.gz: 6d64c46bd620408e61d9aac06772001816bf3bf8e674c63e3da8dfb19f167b89169fd333626650930ac7b63b0d797569ccbaffc1a936945c86b219f65cf22923
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.239.2 (2025-11-25)
5
+ ------------------
6
+
7
+ * Issue - Fix `login_credentials` in credentials chain when config is enabled.
8
+
4
9
  3.239.1 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.239.1
1
+ 3.239.2
@@ -173,7 +173,8 @@ module Aws
173
173
  return unless Aws.shared_config.config_enabled?
174
174
 
175
175
  profile_name = determine_profile_name(options)
176
- Aws.shared_config.login_credentials_from_config(profile: profile_name, region: options[:config].region)
176
+ region = options[:config].region if options[:config]
177
+ Aws.shared_config.login_credentials_from_config(profile: profile_name, region: region)
177
178
  rescue Errors::NoSuchProfileError
178
179
  nil
179
180
  end
@@ -579,7 +579,7 @@ module Aws::Signin
579
579
  tracer: tracer
580
580
  )
581
581
  context[:gem_name] = 'aws-sdk-core'
582
- context[:gem_version] = '3.239.1'
582
+ context[:gem_version] = '3.239.2'
583
583
  Seahorse::Client::Request.new(handlers, context)
584
584
  end
585
585
 
@@ -56,7 +56,7 @@ module Aws::Signin
56
56
  autoload :EndpointProvider, 'aws-sdk-signin/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-signin/endpoints'
58
58
 
59
- GEM_VERSION = '3.239.1'
59
+ GEM_VERSION = '3.239.2'
60
60
 
61
61
  end
62
62
 
@@ -698,7 +698,7 @@ module Aws::SSO
698
698
  tracer: tracer
699
699
  )
700
700
  context[:gem_name] = 'aws-sdk-core'
701
- context[:gem_version] = '3.239.1'
701
+ context[:gem_version] = '3.239.2'
702
702
  Seahorse::Client::Request.new(handlers, context)
703
703
  end
704
704
 
data/lib/aws-sdk-sso.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::SSO
56
56
  autoload :EndpointProvider, 'aws-sdk-sso/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sso/endpoints'
58
58
 
59
- GEM_VERSION = '3.239.1'
59
+ GEM_VERSION = '3.239.2'
60
60
 
61
61
  end
62
62
 
@@ -1081,7 +1081,7 @@ module Aws::SSOOIDC
1081
1081
  tracer: tracer
1082
1082
  )
1083
1083
  context[:gem_name] = 'aws-sdk-core'
1084
- context[:gem_version] = '3.239.1'
1084
+ context[:gem_version] = '3.239.2'
1085
1085
  Seahorse::Client::Request.new(handlers, context)
1086
1086
  end
1087
1087
 
@@ -56,7 +56,7 @@ module Aws::SSOOIDC
56
56
  autoload :EndpointProvider, 'aws-sdk-ssooidc/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-ssooidc/endpoints'
58
58
 
59
- GEM_VERSION = '3.239.1'
59
+ GEM_VERSION = '3.239.2'
60
60
 
61
61
  end
62
62
 
@@ -2725,7 +2725,7 @@ module Aws::STS
2725
2725
  tracer: tracer
2726
2726
  )
2727
2727
  context[:gem_name] = 'aws-sdk-core'
2728
- context[:gem_version] = '3.239.1'
2728
+ context[:gem_version] = '3.239.2'
2729
2729
  Seahorse::Client::Request.new(handlers, context)
2730
2730
  end
2731
2731
 
data/lib/aws-sdk-sts.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::STS
56
56
  autoload :EndpointProvider, 'aws-sdk-sts/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sts/endpoints'
58
58
 
59
- GEM_VERSION = '3.239.1'
59
+ GEM_VERSION = '3.239.2'
60
60
 
61
61
  end
62
62
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.239.1
4
+ version: 3.239.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services