aws-sdk-core 3.246.0 → 3.247.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: f922871acf444deaef9037c130a6f9f5b85c42ea8244728aa863cdc00d529105
4
- data.tar.gz: 23557f7949f3a6df2c7b50322d91fc5a4a4362e79c685553e2cb57ce04d93e19
3
+ metadata.gz: b4227c0966f22b7ccc926232dcce45fa11c1c7f6f2e7f61d2312682e8b921c9f
4
+ data.tar.gz: 6b6afdf05cc5a7ef787414390b1442028b531c64b7b343820f2b8dc36ae05da6
5
5
  SHA512:
6
- metadata.gz: 0574045e0ec195f54aa84ce917e3d1e64cca6063f6114d10b3daf15e7aebd8734de3a79c0d3d6d6676c0810a136d0c6c662293a9935bf769875a6408213565f9
7
- data.tar.gz: d526ae465f9ddc6f954526bf75459143def62a1c87f7551d0979650ff7dc10b12a00f666acc5da63a23f7f4e22d588891b56079ad9c202eb97281876f6dd1937
6
+ metadata.gz: 1dc883bae396d03e93b149092f0b1022aab8fd4a3119b7a4150c5358b1926cf689741140757de292781d7fb1bcf929dd3292695ae2d9ee7c32c75feb48cf2f94
7
+ data.tar.gz: 7cc2bb25c6cf308de4ec19f36e289501f3d319f2a1f1f30a24139613d132aa1e97e4d66c71ccb5a2da8555f4cff56e9bf97035cf90ecf6c60a0a8cbd3562d54e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.247.0 (2026-05-13)
5
+ ------------------
6
+ * Feature - Add YJIT & ZJIT tracking to user agent.
7
+ * Issue - Fix error messaging in SSO OIDC.
8
+
4
9
  3.246.0 (2026-04-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.246.0
1
+ 3.247.0
@@ -68,7 +68,8 @@ module Aws
68
68
  if code == 'RequestEntityTooLarge'
69
69
  'Request body must be less than 1 MB'
70
70
  else
71
- json['message'] || json['Message'] || ''
71
+ # SSO OIDC returns error message in error_description, following OAuth 2.0 spec.
72
+ json['message'] || json['Message'] || json['error_description'] || ''
72
73
  end
73
74
  end
74
75
 
@@ -171,7 +171,16 @@ variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
171
171
 
172
172
  # Used to be RUBY_ENGINE/RUBY_VERSION
173
173
  def language_metadata
174
- "lang/#{RUBY_ENGINE}##{RUBY_ENGINE_VERSION} md/#{RUBY_VERSION}"
174
+ metadata = "lang/#{RUBY_ENGINE}##{RUBY_ENGINE_VERSION} md/#{RUBY_VERSION}"
175
+ return metadata unless RUBY_ENGINE == 'ruby'
176
+
177
+ %i[YJIT ZJIT].each do |jit|
178
+ next unless RubyVM.const_defined?(jit)
179
+
180
+ mode = RubyVM.const_get(jit)
181
+ metadata += " md/#{jit.to_s.downcase}" if mode.respond_to?(:enabled?) && mode.enabled?
182
+ end
183
+ metadata
175
184
  end
176
185
 
177
186
  def env_metadata
@@ -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.246.0'
582
+ context[:gem_version] = '3.247.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.246.0'
59
+ GEM_VERSION = '3.247.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.246.0'
701
+ context[:gem_version] = '3.247.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.246.0'
59
+ GEM_VERSION = '3.247.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.246.0'
1084
+ context[:gem_version] = '3.247.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.246.0'
59
+ GEM_VERSION = '3.247.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.246.0'
2728
+ context[:gem_version] = '3.247.0'
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.246.0'
59
+ GEM_VERSION = '3.247.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.246.0
4
+ version: 3.247.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services