aws-sdk-core 3.191.4 → 3.191.6

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: f39d4d6ade88a52d0ca4c55a40984f95036af905e64e45778472ead21d1a402e
4
- data.tar.gz: 6c745864d7c7f1460bb8260d6dc53c60a10f2e25628e32e44995058bdaf385d8
3
+ metadata.gz: d99a69d6db764fcfba89ca69d36bc793cc4def9639eb4be75c4727969a5ffc56
4
+ data.tar.gz: c06ff1a4261dc6c76a78f440d58daf68956e807db597166dbb53c984fb742a59
5
5
  SHA512:
6
- metadata.gz: 535ea293420d7e1dbf96b649f453144322314d2f8468b11da6e488c6ce89fbd0e1b6a1b26df35fb6051cbae6edaf2b5bd0f8bcf8b18f1088dddf9dbf90c42800
7
- data.tar.gz: 74476af33b195746b0f3e0c5f0be00a7e6ee9811344c1e96eb391b11f9fcf3a6efffe1d3df20b1cb57b22dbe346923c4cbeb5772070025052aed45d26d8533ae
6
+ metadata.gz: e639247490a5395b2c573c4c6de620cb1c5817a3e89f95f8ac49a75f4e43b2c38be7f399d4e78f4d6c370b5d0e7b83e41ad5b95c94a07b21ddb9fdf1fce13800
7
+ data.tar.gz: 0daae089d07629307742457b791f37a10260891360994aa6f652f9cb548d6fa1fa911910fa0d9cd68dd7c302ca026eaf312ab8fc0cd27f53293268d59328dcf0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,15 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.191.6 (2024-04-02)
5
+ ------------------
6
+ * Issue - Performance optimization: ensure presence and order of instance variables in `PluginOptions` (#3002).
7
+
8
+ 3.191.5 (2024-03-26)
9
+ ------------------
10
+
11
+ * Issue - Fix `EC2Metadata` and `InstanceProfileCredentials` to respect the port from a configured endpoint from code, ENV, or shared config.
12
+
4
13
  3.191.4 (2024-03-15)
5
14
  ------------------
6
15
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.191.4
1
+ 3.191.6
@@ -183,7 +183,7 @@ module Aws
183
183
 
184
184
  def open_connection
185
185
  uri = URI.parse(@endpoint)
186
- http = Net::HTTP.new(uri.hostname || @endpoint, @port || uri.port)
186
+ http = Net::HTTP.new(uri.hostname || @endpoint, uri.port || @port)
187
187
  http.open_timeout = @http_open_timeout
188
188
  http.read_timeout = @http_read_timeout
189
189
  http.set_debug_output(@http_debug_output) if @http_debug_output
@@ -262,7 +262,7 @@ module Aws
262
262
 
263
263
  def open_connection
264
264
  uri = URI.parse(@endpoint)
265
- http = Net::HTTP.new(uri.hostname || @endpoint, @port || uri.port)
265
+ http = Net::HTTP.new(uri.hostname || @endpoint, uri.port || @port)
266
266
  http.open_timeout = @http_open_timeout
267
267
  http.read_timeout = @http_read_timeout
268
268
  http.set_debug_output(@http_debug_output) if @http_debug_output
@@ -605,7 +605,7 @@ module Aws::SSO
605
605
  params: params,
606
606
  config: config)
607
607
  context[:gem_name] = 'aws-sdk-core'
608
- context[:gem_version] = '3.191.4'
608
+ context[:gem_version] = '3.191.6'
609
609
  Seahorse::Client::Request.new(handlers, context)
610
610
  end
611
611
 
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.191.4'
57
+ GEM_VERSION = '3.191.6'
58
58
 
59
59
  end
@@ -910,7 +910,7 @@ module Aws::SSOOIDC
910
910
  params: params,
911
911
  config: config)
912
912
  context[:gem_name] = 'aws-sdk-core'
913
- context[:gem_version] = '3.191.4'
913
+ context[:gem_version] = '3.191.6'
914
914
  Seahorse::Client::Request.new(handlers, context)
915
915
  end
916
916
 
@@ -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.191.4'
57
+ GEM_VERSION = '3.191.6'
58
58
 
59
59
  end
@@ -2352,7 +2352,7 @@ module Aws::STS
2352
2352
  params: params,
2353
2353
  config: config)
2354
2354
  context[:gem_name] = 'aws-sdk-core'
2355
- context[:gem_version] = '3.191.4'
2355
+ context[:gem_version] = '3.191.6'
2356
2356
  Seahorse::Client::Request.new(handlers, context)
2357
2357
  end
2358
2358
 
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.191.4'
57
+ GEM_VERSION = '3.191.6'
58
58
 
59
59
  end
@@ -111,7 +111,15 @@ module Seahorse
111
111
 
112
112
  def initialize(name, options = {})
113
113
  @name = name
114
+ # prevent unstable object shapes by ensuring
115
+ # order and presence of instance variables
116
+ @default = nil
117
+ @default_block = nil
118
+ @required = nil
119
+ @doc_type = nil
114
120
  @doc_default = nil
121
+ @docstring = nil
122
+ @rbs_type = nil
115
123
  options.each_pair do |opt_name, opt_value|
116
124
  self.send("#{opt_name}=", opt_value)
117
125
  end
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.191.4
4
+ version: 3.191.6
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-03-15 00:00:00.000000000 Z
11
+ date: 2024-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath