net-ssh 5.0.0 → 5.0.1
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 -1
- data/README.rdoc +1 -1
- data/lib/net/ssh/authentication/session.rb +1 -0
- data/lib/net/ssh/version.rb +1 -1
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3db41d065249857491598919a85f6a4375b83902d64d717f3b4144baa5067e40
|
|
4
|
+
data.tar.gz: 4d83fc87989c6bad8b10bd179eac7da9bdd2e0303211455508df3546a3f47247
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99e6914983b69eb9a986b0ebcaa9840aa4a17ebdcf384e15c0bb1fbfe2573748b5604c6da349dfc89030c86ee77a2057e7a44da2fef95596a6bf907edc479319
|
|
7
|
+
data.tar.gz: 482d14a02aa932bc0b32a756ed661ed408426015b8900e472632407102a36436ab943a8e86072cb6ece9f0abd492e2045d46dbc5149be7d7a94ca70562ebc10a
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGES.txt
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
=== 5.0.1
|
|
2
|
+
|
|
3
|
+
* default_keys were not loaded even if no keys or key_data options specified [#607]
|
|
4
|
+
|
|
1
5
|
=== 5.0.0
|
|
2
6
|
|
|
3
7
|
* Breaking change: ed25519 now requires ed25519 gem instead of RbNaCl gem [#563]
|
|
4
8
|
* Verify_host_key options rename (true, false, :very, :secure depreacted new equivalents are :never, :accept_new_or_local_tunnel :accept_new :always) [Jared Beck, #595]
|
|
5
9
|
|
|
6
|
-
=== 5.0.0.rc2
|
|
10
|
+
=== 5.0.0.rc2
|
|
7
11
|
|
|
8
12
|
* Add .dll extensions to dlopen on cygwin [#603]
|
|
9
13
|
* Fix host certificate validation [#601]
|
data/README.rdoc
CHANGED
|
@@ -112,7 +112,7 @@ For ed25519 public key auth support your bundle file should contain ```ed25519``
|
|
|
112
112
|
|
|
113
113
|
* Ruby 1.8.x is supported up until the net-ssh 2.5.1 release.
|
|
114
114
|
* Ruby 1.9.x is supported up until the net-ssh 2.9.x release.
|
|
115
|
-
*
|
|
115
|
+
* See {net-ssh.gemspec}[https://github.com/net-ssh/net-ssh/blob/master/net-ssh.gemspec] for current versions ruby requirements
|
|
116
116
|
|
|
117
117
|
== RUNNING TESTS
|
|
118
118
|
|
|
@@ -64,6 +64,7 @@ module Net
|
|
|
64
64
|
key_manager = KeyManager.new(logger, options)
|
|
65
65
|
keys.each { |key| key_manager.add(key) } unless keys.empty?
|
|
66
66
|
key_data.each { |key2| key_manager.add_key_data(key2) } unless key_data.empty?
|
|
67
|
+
default_keys.each { |key| key_manager.add(key) } unless options.key?(:keys) || options.key?(:key_data)
|
|
67
68
|
|
|
68
69
|
attempted = []
|
|
69
70
|
|
data/lib/net/ssh/version.rb
CHANGED
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: 5.0.
|
|
4
|
+
version: 5.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamis Buck
|
|
@@ -32,7 +32,7 @@ cert_chain:
|
|
|
32
32
|
ZFwoIuXKeDmTTpryd/vI7sdLXDuV6MbWOLGh6gXn9RDDXG1EqEXW0bjovATBMpdH
|
|
33
33
|
9OGohJvAFzcvhDTWPwT6w3PG5B80pqb9j1hEAg==
|
|
34
34
|
-----END CERTIFICATE-----
|
|
35
|
-
date: 2018-06-
|
|
35
|
+
date: 2018-06-03 00:00:00.000000000 Z
|
|
36
36
|
dependencies:
|
|
37
37
|
- !ruby/object:Gem::Dependency
|
|
38
38
|
name: bcrypt_pbkdf
|
metadata.gz.sig
CHANGED
|
Binary file
|