aws-sdk-core 3.114.0 → 3.116.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 +4 -4
- data/CHANGELOG.md +26 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-core/errors.rb +4 -0
- data/lib/aws-sdk-core/pageable_response.rb +7 -1
- data/lib/aws-sdk-core/pager.rb +3 -0
- data/lib/aws-sdk-core/shared_config.rb +19 -1
- data/lib/aws-sdk-core/sso_credentials.rb +1 -2
- data/lib/aws-sdk-core/stubbing/protocols/json.rb +1 -1
- data/lib/aws-sdk-core/xml/builder.rb +1 -1
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-sso/client.rb +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +318 -296
- data/lib/aws-sdk-sts/types.rb +167 -159
- data/lib/seahorse/client/h2/connection.rb +11 -6
- metadata +3 -4
@@ -80,13 +80,18 @@ module Seahorse
|
|
80
80
|
_nonblocking_connect(tcp, addr)
|
81
81
|
debug_output('opened')
|
82
82
|
|
83
|
-
|
84
|
-
|
85
|
-
|
83
|
+
if endpoint.scheme == 'https'
|
84
|
+
@socket = OpenSSL::SSL::SSLSocket.new(tcp, _tls_context)
|
85
|
+
@socket.sync_close = true
|
86
|
+
@socket.hostname = endpoint.host
|
87
|
+
|
88
|
+
debug_output("starting TLS for #{endpoint.host}:#{endpoint.port} ...")
|
89
|
+
@socket.connect
|
90
|
+
debug_output('TLS established')
|
91
|
+
else
|
92
|
+
@socket = tcp
|
93
|
+
end
|
86
94
|
|
87
|
-
debug_output("starting TLS for #{endpoint.host}:#{endpoint.port} ...")
|
88
|
-
@socket.connect
|
89
|
-
debug_output('TLS established')
|
90
95
|
_register_h2_callbacks
|
91
96
|
@status = :active
|
92
97
|
elsif @status == :closed
|
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.
|
4
|
+
version: 3.116.0
|
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: 2021-
|
11
|
+
date: 2021-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|
@@ -307,8 +307,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
307
307
|
- !ruby/object:Gem::Version
|
308
308
|
version: '0'
|
309
309
|
requirements: []
|
310
|
-
|
311
|
-
rubygems_version: 2.7.6.2
|
310
|
+
rubygems_version: 3.1.6
|
312
311
|
signing_key:
|
313
312
|
specification_version: 4
|
314
313
|
summary: AWS SDK for Ruby - Core
|