aws-sdk-core 3.195.0 → 3.196.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: 07ca704aa5e596fda347d9dbb417feffe910acc20f185a6d8ada67b9f3befe07
4
- data.tar.gz: 52ddd836d9c20f50ad240339748acdb74e9e2c1fd89ac24206ede3a7c411928c
3
+ metadata.gz: b77f2eeb94a52526e385b422b59703e582c75af70402ab009b66d542694259c8
4
+ data.tar.gz: e97d33313f38d3b6dd565a02b3c1ccdc34d5960cd076ace3449fe50f7f75f2b6
5
5
  SHA512:
6
- metadata.gz: de5d0578d67375d1dd0e42fab0d99e1e17278274c00bb8c745c76e30e5dbf85f44a98f82be5209075735b9889180fbdbc970e46aea42a8b8efe95a5c539a6dd7
7
- data.tar.gz: 3f34aff014b7de1e8fe7127e102beec7eecfdc2f69f41fc11ba02e0cff1ebd34a9f8220c4a45d2ed96dc5e29122b8c6e75237528ed3a132da37730a05436211d
6
+ metadata.gz: 2efdc811c495c91558cf5144599eff67f2e828a94d90d4fd31d49575a9bff4456e7f237aa79853cdb6f8fba016b9011cc8f6d8677596c85a9e6179f606431961
7
+ data.tar.gz: e933ae0dc9b2d77e0455a1af5f5c635833b394ec2f70f90133af52993992134b56481952124d5a2448182a6c180c4cb1483114667ea5d2437891e22a739e3f44
data/CHANGELOG.md CHANGED
@@ -1,6 +1,20 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.196.1 (2024-05-14)
5
+ ------------------
6
+
7
+ * Issue - Fix `ConnectionPool` for `.empty!` and `.clear!` since it prevented adding a new key from being added to the pool (#3020).
8
+
9
+ 3.196.0 (2024-05-13)
10
+ ------------------
11
+
12
+ * Feature - Updated Aws::STS::Client with the latest API changes.
13
+
14
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
15
+
16
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
17
+
4
18
  3.195.0 (2024-05-10)
5
19
  ------------------
6
20
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.195.0
1
+ 3.196.1
@@ -14,8 +14,9 @@ module Aws
14
14
  doc_type: 'String',
15
15
  docstring: <<-DOCS) do |cfg|
16
16
  A unique and opaque application ID that is appended to the
17
- User-Agent header as app/<sdk_ua_app_id>. It should have a
18
- maximum length of 50.
17
+ User-Agent header as app/sdk_ua_app_id. It should have a
18
+ maximum length of 50. This variable is sourced from environment
19
+ variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
19
20
  DOCS
20
21
  app_id = ENV['AWS_SDK_UA_APP_ID']
21
22
  app_id ||= Aws.shared_config.sdk_ua_app_id(profile: cfg.profile)
@@ -301,8 +301,9 @@ module Aws::SSO
301
301
  #
302
302
  # @option options [String] :sdk_ua_app_id
303
303
  # A unique and opaque application ID that is appended to the
304
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
305
- # maximum length of 50.
304
+ # User-Agent header as app/sdk_ua_app_id. It should have a
305
+ # maximum length of 50. This variable is sourced from environment
306
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
306
307
  #
307
308
  # @option options [String] :secret_access_key
308
309
  #
@@ -629,7 +630,7 @@ module Aws::SSO
629
630
  params: params,
630
631
  config: config)
631
632
  context[:gem_name] = 'aws-sdk-core'
632
- context[:gem_version] = '3.195.0'
633
+ context[:gem_version] = '3.196.1'
633
634
  Seahorse::Client::Request.new(handlers, context)
634
635
  end
635
636
 
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.195.0'
57
+ GEM_VERSION = '3.196.1'
58
58
 
59
59
  end
@@ -301,8 +301,9 @@ module Aws::SSOOIDC
301
301
  #
302
302
  # @option options [String] :sdk_ua_app_id
303
303
  # A unique and opaque application ID that is appended to the
304
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
305
- # maximum length of 50.
304
+ # User-Agent header as app/sdk_ua_app_id. It should have a
305
+ # maximum length of 50. This variable is sourced from environment
306
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
306
307
  #
307
308
  # @option options [String] :secret_access_key
308
309
  #
@@ -982,7 +983,7 @@ module Aws::SSOOIDC
982
983
  params: params,
983
984
  config: config)
984
985
  context[:gem_name] = 'aws-sdk-core'
985
- context[:gem_version] = '3.195.0'
986
+ context[:gem_version] = '3.196.1'
986
987
  Seahorse::Client::Request.new(handlers, context)
987
988
  end
988
989
 
@@ -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.195.0'
57
+ GEM_VERSION = '3.196.1'
58
58
 
59
59
  end
@@ -303,8 +303,9 @@ module Aws::STS
303
303
  #
304
304
  # @option options [String] :sdk_ua_app_id
305
305
  # A unique and opaque application ID that is appended to the
306
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
307
- # maximum length of 50.
306
+ # User-Agent header as app/sdk_ua_app_id. It should have a
307
+ # maximum length of 50. This variable is sourced from environment
308
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
308
309
  #
309
310
  # @option options [String] :secret_access_key
310
311
  #
@@ -2376,7 +2377,7 @@ module Aws::STS
2376
2377
  params: params,
2377
2378
  config: config)
2378
2379
  context[:gem_name] = 'aws-sdk-core'
2379
- context[:gem_version] = '3.195.0'
2380
+ context[:gem_version] = '3.196.1'
2380
2381
  Seahorse::Client::Request.new(handlers, context)
2381
2382
  end
2382
2383
 
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.195.0'
57
+ GEM_VERSION = '3.196.1'
58
58
 
59
59
  end
@@ -138,9 +138,7 @@ module Seahorse
138
138
  # @return [nil]
139
139
  def empty!
140
140
  @pool_mutex.synchronize do
141
- @pool.each_pair do |endpoint,sessions|
142
- sessions.each(&:finish)
143
- end
141
+ @pool.values.flatten.map(&:finish)
144
142
  @pool.clear
145
143
  end
146
144
  nil
@@ -308,7 +306,7 @@ module Seahorse
308
306
  # @note **Must** be called behind a `@pool_mutex` synchronize block.
309
307
  def _clean
310
308
  now = Aws::Util.monotonic_milliseconds
311
- @pool.each_pair do |endpoint,sessions|
309
+ @pool.values.each do |sessions|
312
310
  sessions.delete_if do |session|
313
311
  if session.last_used.nil? or now - session.last_used > http_idle_timeout * 1000
314
312
  session.finish
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.195.0
4
+ version: 3.196.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-05-10 00:00:00.000000000 Z
11
+ date: 2024-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath