aws-sdk-core 3.244.0 → 3.245.0

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: 9f4715863ae1d59d51f61eab4a6c5677b6c0e756ae4a9c0f8ec340e32c34b51f
4
- data.tar.gz: 8337d5cd4d99991bc4b10598f8eaf32778113d2b246a49046ae0589a49c9e957
3
+ metadata.gz: d8105f2a59bdd24d554e34034559e9636890156e1173ea06051ed40054258c31
4
+ data.tar.gz: e72397d202b94e9028a0be4f74075794528bd08219633f0455965b684a3de705
5
5
  SHA512:
6
- metadata.gz: 3348dccd9c97a903b6e716a13cd10bd0c63b1f4164cb99181ccb4c8046ea0b4347841d8794d2c461746389b01899d09c9776c1c39806f8e37ea1406b0ba9edd6
7
- data.tar.gz: aa91abd3aeebc6d66c1b9bd53ba12113b05db50df2f359f6d2ca4cd9ca5622b20a1b424342f7a60fa14167e9b074c437348fb95d6324f881b475c525eae5e5aa
6
+ metadata.gz: afd7f2d7962f814bcd410953d857c4aca08baac3d98c9e4ac3b18b28173fbcc0bd8ff7f2f80f45b77f8f0124068e1aaca6e06da8d5e3a9bda9633f558f8d7efe
7
+ data.tar.gz: 7a8e6fe9030c535de46ce4602f48ffb66c7713aa14c7ed65b73d09a384019a4043be8c1bf548c688b4798fea96d10247e2239937949178f9522dc4d3b969a231
data/CHANGELOG.md CHANGED
@@ -1,6 +1,15 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.245.0 (2026-04-17)
5
+ ------------------
6
+
7
+ * Feature - Updated Aws::STS::Client with the latest API changes.
8
+
9
+ * Feature - The STS client now supports configuring SigV4a through the auth scheme preference setting. SigV4a uses asymmetric cryptography, enabling customers using long-term IAM credentials to continue making STS API calls even when a region is isolated from the partition leader.
10
+
11
+ * Issue - Explicitly set 0600 permissions on SSO/login cache files.
12
+
4
13
  3.244.0 (2026-03-18)
5
14
  ------------------
6
15
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.244.0
1
+ 3.245.0
@@ -221,6 +221,7 @@ module Aws
221
221
  temp_file.write(Json.dump(cached_token))
222
222
  temp_file.close
223
223
  FileUtils.mv(temp_file.path, login_cache_file)
224
+ File.chmod(0o600, login_cache_file)
224
225
  ensure
225
226
  temp_file.unlink if File.exist?(temp_file.path) # Ensure temp file is cleaned up
226
227
  end
@@ -108,6 +108,7 @@ module Aws
108
108
  cached_token = token_json.dup
109
109
  cached_token['expiresAt'] = cached_token['expiresAt'].iso8601
110
110
  File.write(sso_cache_file, Json.dump(cached_token))
111
+ File.chmod(0o600, sso_cache_file)
111
112
  end
112
113
 
113
114
  def sso_cache_file
@@ -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.244.0'
582
+ context[:gem_version] = '3.245.0'
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.244.0'
59
+ GEM_VERSION = '3.245.0'
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.244.0'
701
+ context[:gem_version] = '3.245.0'
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.244.0'
59
+ GEM_VERSION = '3.245.0'
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.244.0'
1084
+ context[:gem_version] = '3.245.0'
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.244.0'
59
+ GEM_VERSION = '3.245.0'
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.244.0'
2728
+ context[:gem_version] = '3.245.0'
2729
2729
  Seahorse::Client::Request.new(handlers, context)
2730
2730
  end
2731
2731
 
@@ -315,7 +315,7 @@ module Aws::STS
315
315
 
316
316
  api.metadata = {
317
317
  "apiVersion" => "2011-06-15",
318
- "auth" => ["aws.auth#sigv4"],
318
+ "auth" => ["aws.auth#sigv4", "aws.auth#sigv4a"],
319
319
  "endpointPrefix" => "sts",
320
320
  "globalEndpoint" => "sts.amazonaws.com",
321
321
  "protocol" => "query",
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.244.0'
59
+ GEM_VERSION = '3.245.0'
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.244.0
4
+ version: 3.245.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services