net-ssh 4.2.0.rc1 → 4.2.0.rc2
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGES.txt +5 -0
- data/lib/net/ssh.rb +0 -3
- data/lib/net/ssh/version.rb +1 -1
- metadata +3 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 022c42eac39f19fb3b52c5b62815cf9fe95e2a7e
|
|
4
|
+
data.tar.gz: 2873d1c087439beee802b14091d63e1da477554b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91803d9986a151fd1c258d0782bbb941da52d9c404843a8e48a530ed94e63bc57625301c2e1f4928143bead1be3111682de23ba0e0d340da0d86e37828033d95
|
|
7
|
+
data.tar.gz: 8ea81391d19c237125b4b6562031b2b222b36e94fb2bf377af8ab399947bac4b8654e637e619276d5c7e27affbe7139d4f6e0f167c58e5594676428fa4f14747
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGES.txt
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
=== 4.2.0.rc2
|
|
2
|
+
|
|
3
|
+
* Fix double close bug on auth failure (or ruby 2.2 or earlier) [#538]
|
|
4
|
+
|
|
1
5
|
=== 4.2.0.rc1
|
|
2
6
|
|
|
7
|
+
* Improved logging with proxy command [Dmitriy Ivliev, #530]
|
|
3
8
|
* Close transport on proxy error [adamruzicka, #526]
|
|
4
9
|
* Support multiple identity files [Kimura Masayuki, #528]
|
|
5
10
|
* Move `none` cipher to end of cipher list [Brian Cain, #525]
|
data/lib/net/ssh.rb
CHANGED
|
@@ -253,9 +253,6 @@ module Net
|
|
|
253
253
|
transport.close
|
|
254
254
|
raise AuthenticationFailed, "Authentication failed for user #{user}@#{host}"
|
|
255
255
|
end
|
|
256
|
-
rescue => e
|
|
257
|
-
transport.close unless transport.nil?
|
|
258
|
-
raise e
|
|
259
256
|
end
|
|
260
257
|
|
|
261
258
|
# Returns a hash of the configuration options for the given host, as read
|
data/lib/net/ssh/version.rb
CHANGED
|
@@ -55,7 +55,7 @@ module Net; module SSH
|
|
|
55
55
|
|
|
56
56
|
# The prerelease component of this version of the Net::SSH library
|
|
57
57
|
# nil allowed
|
|
58
|
-
PRE = "
|
|
58
|
+
PRE = "rc2"
|
|
59
59
|
|
|
60
60
|
# The current version of the Net::SSH library as a Version instance
|
|
61
61
|
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: net-ssh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.2.0.
|
|
4
|
+
version: 4.2.0.rc2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamis Buck
|
|
@@ -32,7 +32,7 @@ cert_chain:
|
|
|
32
32
|
L4d54WIy4HkZCqQXoTSiK5HZMIdXkPk3F1bZdJ8Dy1sMRru0rUkkM5mW7TQ75mfW
|
|
33
33
|
Zp0QrZyNZhtitrXFbZneGRrIA/8G2Krft5Ly/A==
|
|
34
34
|
-----END CERTIFICATE-----
|
|
35
|
-
date: 2017-07-
|
|
35
|
+
date: 2017-07-19 00:00:00.000000000 Z
|
|
36
36
|
dependencies:
|
|
37
37
|
- !ruby/object:Gem::Dependency
|
|
38
38
|
name: rbnacl-libsodium
|
|
@@ -286,7 +286,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
286
286
|
version: 1.3.1
|
|
287
287
|
requirements: []
|
|
288
288
|
rubyforge_project:
|
|
289
|
-
rubygems_version: 2.6
|
|
289
|
+
rubygems_version: 2.4.6
|
|
290
290
|
signing_key:
|
|
291
291
|
specification_version: 4
|
|
292
292
|
summary: 'Net::SSH: a pure-Ruby implementation of the SSH2 client protocol.'
|
metadata.gz.sig
CHANGED
|
Binary file
|