aws-sdk-core 3.254.0 → 3.254.1

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: 814e5d80bd91bef5620f5fb327e1535174bc824689114779bbf22cde244208f5
4
- data.tar.gz: 7f7e60b9a82f047fabf24724ca43f2b4dfb89cb9db997eb4bff029eb85ade6af
3
+ metadata.gz: 82755730b22f42e3b50c5e82f694e4a0e8e89d884bb234f685d1ad4646b6b285
4
+ data.tar.gz: 37c2b4fb1c21fa5455022ce3153a213ee7c7975ecd1bb84f9e8a45e8e6e3f6b1
5
5
  SHA512:
6
- metadata.gz: 8018e97554ce825fb5d45b3a232e4789371a2b5ff9feb165c075eebab373f046570e71c121a0d636cb012fb443537296ff78bd0c9e19d381dbfc88aca59a07f8
7
- data.tar.gz: ef5897fddb1702010247296c90ba6d334883ee514dcaa9cd773c928b2b4ca7b28fe909a067af27a9d28f55a5fe55676ae3762b3ab6b9e41f04e08d23edf43834
6
+ metadata.gz: 8b1dd8ed35f0f4c0f9efa24e76b1f0bf8fe53bb539c59be7be3d8eea86fd0693f2ce4f3593c24362378fee4dd2c91e7e205a82d1244831bfe42ddd663d9268ed
7
+ data.tar.gz: b0327c4237251b3ff2d6cff195be721d3289a72b7ffc5a8ac27975d5c0d79c75abeab9596165c06f08cd1f5514874e79f1c0efb453a2562661a8fd02685fd4bc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.254.1 (2026-08-06)
5
+ ------------------
6
+ * Issue - Fix a double space appearing in the frameworks section of the User-Agent header.
7
+
4
8
  3.254.0 (2026-07-09)
5
9
  ------------------
6
10
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.254.0
1
+ 3.254.1
@@ -211,7 +211,7 @@ variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
211
211
 
212
212
  frameworks[match[:name]] = match[:version]
213
213
  end
214
- frameworks.map { |n, v| "lib/#{n}##{v}" }.join(' ')
214
+ frameworks.map { |n, v| "lib/#{n}##{v}" }.join(' ') unless frameworks.empty?
215
215
  end
216
216
 
217
217
  def metric_metadata
@@ -983,7 +983,7 @@ module Aws::Signin
983
983
  tracer: tracer
984
984
  )
985
985
  context[:gem_name] = 'aws-sdk-core'
986
- context[:gem_version] = '3.254.0'
986
+ context[:gem_version] = '3.254.1'
987
987
  Seahorse::Client::Request.new(handlers, context)
988
988
  end
989
989
 
@@ -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.254.0'
59
+ GEM_VERSION = '3.254.1'
60
60
 
61
61
  end
62
62
 
@@ -696,7 +696,7 @@ module Aws::SSO
696
696
  tracer: tracer
697
697
  )
698
698
  context[:gem_name] = 'aws-sdk-core'
699
- context[:gem_version] = '3.254.0'
699
+ context[:gem_version] = '3.254.1'
700
700
  Seahorse::Client::Request.new(handlers, context)
701
701
  end
702
702
 
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.254.0'
59
+ GEM_VERSION = '3.254.1'
60
60
 
61
61
  end
62
62
 
@@ -1079,7 +1079,7 @@ module Aws::SSOOIDC
1079
1079
  tracer: tracer
1080
1080
  )
1081
1081
  context[:gem_name] = 'aws-sdk-core'
1082
- context[:gem_version] = '3.254.0'
1082
+ context[:gem_version] = '3.254.1'
1083
1083
  Seahorse::Client::Request.new(handlers, context)
1084
1084
  end
1085
1085
 
@@ -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.254.0'
59
+ GEM_VERSION = '3.254.1'
60
60
 
61
61
  end
62
62
 
@@ -2723,7 +2723,7 @@ module Aws::STS
2723
2723
  tracer: tracer
2724
2724
  )
2725
2725
  context[:gem_name] = 'aws-sdk-core'
2726
- context[:gem_version] = '3.254.0'
2726
+ context[:gem_version] = '3.254.1'
2727
2727
  Seahorse::Client::Request.new(handlers, context)
2728
2728
  end
2729
2729
 
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.254.0'
59
+ GEM_VERSION = '3.254.1'
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.254.0
4
+ version: 3.254.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services