update net-ssh 4 -> 5, remove rbnacl, rbnacl-libsodium (not needed)
This commit is contained in:
parent
414af1213e
commit
2af2140cee
5
Gemfile
5
Gemfile
|
|
@ -404,13 +404,12 @@ gem 'vmstat', '~> 2.3.0'
|
||||||
gem 'sys-filesystem', '~> 1.1.6'
|
gem 'sys-filesystem', '~> 1.1.6'
|
||||||
|
|
||||||
# SSH host key support
|
# SSH host key support
|
||||||
gem 'net-ssh', '~> 4.2.0'
|
gem 'net-ssh', '~> 5.0'
|
||||||
gem 'sshkey', '~> 1.9.0'
|
gem 'sshkey', '~> 1.9.0'
|
||||||
|
|
||||||
# Required for ED25519 SSH host key support
|
# Required for ED25519 SSH host key support
|
||||||
group :ed25519 do
|
group :ed25519 do
|
||||||
gem 'rbnacl-libsodium'
|
gem 'ed25519', '~> 1.2'
|
||||||
gem 'rbnacl', '~> 4.0'
|
|
||||||
gem 'bcrypt_pbkdf', '~> 1.0'
|
gem 'bcrypt_pbkdf', '~> 1.0'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
12
Gemfile.lock
12
Gemfile.lock
|
|
@ -177,6 +177,7 @@ GEM
|
||||||
json-jwt (~> 1.6)
|
json-jwt (~> 1.6)
|
||||||
dropzonejs-rails (0.7.2)
|
dropzonejs-rails (0.7.2)
|
||||||
rails (> 3.1)
|
rails (> 3.1)
|
||||||
|
ed25519 (1.2.4)
|
||||||
email_reply_trimmer (0.1.6)
|
email_reply_trimmer (0.1.6)
|
||||||
email_spec (2.2.0)
|
email_spec (2.2.0)
|
||||||
htmlentities (~> 4.3.3)
|
htmlentities (~> 4.3.3)
|
||||||
|
|
@ -506,7 +507,7 @@ GEM
|
||||||
mustermann (~> 1.0.0)
|
mustermann (~> 1.0.0)
|
||||||
mysql2 (0.4.10)
|
mysql2 (0.4.10)
|
||||||
net-ldap (0.16.0)
|
net-ldap (0.16.0)
|
||||||
net-ssh (4.2.0)
|
net-ssh (5.0.1)
|
||||||
netrc (0.11.0)
|
netrc (0.11.0)
|
||||||
nokogiri (1.8.2)
|
nokogiri (1.8.2)
|
||||||
mini_portile2 (~> 2.3.0)
|
mini_portile2 (~> 2.3.0)
|
||||||
|
|
@ -692,10 +693,6 @@ GEM
|
||||||
ffi (>= 0.5.0, < 2)
|
ffi (>= 0.5.0, < 2)
|
||||||
rblineprof (0.3.6)
|
rblineprof (0.3.6)
|
||||||
debugger-ruby_core_source (~> 1.3)
|
debugger-ruby_core_source (~> 1.3)
|
||||||
rbnacl (4.0.2)
|
|
||||||
ffi
|
|
||||||
rbnacl-libsodium (1.0.11)
|
|
||||||
rbnacl (>= 3.0.1)
|
|
||||||
rdoc (6.0.4)
|
rdoc (6.0.4)
|
||||||
re2 (1.1.1)
|
re2 (1.1.1)
|
||||||
recaptcha (3.0.0)
|
recaptcha (3.0.0)
|
||||||
|
|
@ -1012,6 +1009,7 @@ DEPENDENCIES
|
||||||
doorkeeper (~> 4.3)
|
doorkeeper (~> 4.3)
|
||||||
doorkeeper-openid_connect (~> 1.3)
|
doorkeeper-openid_connect (~> 1.3)
|
||||||
dropzonejs-rails (~> 0.7.1)
|
dropzonejs-rails (~> 0.7.1)
|
||||||
|
ed25519 (~> 1.2)
|
||||||
email_reply_trimmer (~> 0.1)
|
email_reply_trimmer (~> 0.1)
|
||||||
email_spec (~> 2.2.0)
|
email_spec (~> 2.2.0)
|
||||||
factory_bot_rails (~> 4.8.2)
|
factory_bot_rails (~> 4.8.2)
|
||||||
|
|
@ -1082,7 +1080,7 @@ DEPENDENCIES
|
||||||
mousetrap-rails (~> 1.4.6)
|
mousetrap-rails (~> 1.4.6)
|
||||||
mysql2 (~> 0.4.10)
|
mysql2 (~> 0.4.10)
|
||||||
net-ldap
|
net-ldap
|
||||||
net-ssh (~> 4.2.0)
|
net-ssh (~> 5.0)
|
||||||
nokogiri (~> 1.8.2)
|
nokogiri (~> 1.8.2)
|
||||||
oauth2 (~> 1.4)
|
oauth2 (~> 1.4)
|
||||||
octokit (~> 4.9)
|
octokit (~> 4.9)
|
||||||
|
|
@ -1124,8 +1122,6 @@ DEPENDENCIES
|
||||||
rainbow (~> 2.2)
|
rainbow (~> 2.2)
|
||||||
raindrops (~> 0.18)
|
raindrops (~> 0.18)
|
||||||
rblineprof (~> 0.3.6)
|
rblineprof (~> 0.3.6)
|
||||||
rbnacl (~> 4.0)
|
|
||||||
rbnacl-libsodium
|
|
||||||
rdoc (~> 6.0)
|
rdoc (~> 6.0)
|
||||||
re2 (~> 1.1.1)
|
re2 (~> 1.1.1)
|
||||||
recaptcha (~> 3.0)
|
recaptcha (~> 3.0)
|
||||||
|
|
|
||||||
|
|
@ -179,6 +179,7 @@ GEM
|
||||||
json-jwt (~> 1.6)
|
json-jwt (~> 1.6)
|
||||||
dropzonejs-rails (0.7.4)
|
dropzonejs-rails (0.7.4)
|
||||||
rails (> 3.1)
|
rails (> 3.1)
|
||||||
|
ed25519 (1.2.4)
|
||||||
email_reply_trimmer (0.1.10)
|
email_reply_trimmer (0.1.10)
|
||||||
email_spec (2.2.0)
|
email_spec (2.2.0)
|
||||||
htmlentities (~> 4.3.3)
|
htmlentities (~> 4.3.3)
|
||||||
|
|
@ -505,7 +506,7 @@ GEM
|
||||||
mustermann (~> 1.0.0)
|
mustermann (~> 1.0.0)
|
||||||
mysql2 (0.4.10)
|
mysql2 (0.4.10)
|
||||||
net-ldap (0.16.1)
|
net-ldap (0.16.1)
|
||||||
net-ssh (4.2.0)
|
net-ssh (5.0.1)
|
||||||
netrc (0.11.0)
|
netrc (0.11.0)
|
||||||
nio4r (2.3.1)
|
nio4r (2.3.1)
|
||||||
nokogiri (1.8.2)
|
nokogiri (1.8.2)
|
||||||
|
|
@ -696,10 +697,6 @@ GEM
|
||||||
ffi (>= 0.5.0, < 2)
|
ffi (>= 0.5.0, < 2)
|
||||||
rblineprof (0.3.7)
|
rblineprof (0.3.7)
|
||||||
debugger-ruby_core_source (~> 1.3)
|
debugger-ruby_core_source (~> 1.3)
|
||||||
rbnacl (4.0.2)
|
|
||||||
ffi
|
|
||||||
rbnacl-libsodium (1.0.16)
|
|
||||||
rbnacl (>= 3.0.1)
|
|
||||||
rdoc (6.0.4)
|
rdoc (6.0.4)
|
||||||
re2 (1.1.1)
|
re2 (1.1.1)
|
||||||
recaptcha (3.4.0)
|
recaptcha (3.4.0)
|
||||||
|
|
@ -1017,6 +1014,7 @@ DEPENDENCIES
|
||||||
doorkeeper (~> 4.3)
|
doorkeeper (~> 4.3)
|
||||||
doorkeeper-openid_connect (~> 1.3)
|
doorkeeper-openid_connect (~> 1.3)
|
||||||
dropzonejs-rails (~> 0.7.1)
|
dropzonejs-rails (~> 0.7.1)
|
||||||
|
ed25519 (~> 1.2)
|
||||||
email_reply_trimmer (~> 0.1)
|
email_reply_trimmer (~> 0.1)
|
||||||
email_spec (~> 2.2.0)
|
email_spec (~> 2.2.0)
|
||||||
factory_bot_rails (~> 4.8.2)
|
factory_bot_rails (~> 4.8.2)
|
||||||
|
|
@ -1087,7 +1085,7 @@ DEPENDENCIES
|
||||||
mousetrap-rails (~> 1.4.6)
|
mousetrap-rails (~> 1.4.6)
|
||||||
mysql2 (~> 0.4.10)
|
mysql2 (~> 0.4.10)
|
||||||
net-ldap
|
net-ldap
|
||||||
net-ssh (~> 4.2.0)
|
net-ssh (~> 5.0)
|
||||||
nokogiri (~> 1.8.2)
|
nokogiri (~> 1.8.2)
|
||||||
oauth2 (~> 1.4)
|
oauth2 (~> 1.4)
|
||||||
octokit (~> 4.9)
|
octokit (~> 4.9)
|
||||||
|
|
@ -1130,8 +1128,6 @@ DEPENDENCIES
|
||||||
rainbow (~> 2.2)
|
rainbow (~> 2.2)
|
||||||
raindrops (~> 0.18)
|
raindrops (~> 0.18)
|
||||||
rblineprof (~> 0.3.6)
|
rblineprof (~> 0.3.6)
|
||||||
rbnacl (~> 4.0)
|
|
||||||
rbnacl-libsodium
|
|
||||||
rdoc (~> 6.0)
|
rdoc (~> 6.0)
|
||||||
re2 (~> 1.1.1)
|
re2 (~> 1.1.1)
|
||||||
recaptcha (~> 3.0)
|
recaptcha (~> 3.0)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue