[DRE-commits] [ruby-net-ssh] 02/06: Merge tag 'upstream/4.1.0'

Unit 193 unit193-guest at moszumanska.debian.org
Wed Jul 19 07:15:08 UTC 2017


This is an automated email from the git hooks/post-receive script.

unit193-guest pushed a commit to branch master
in repository ruby-net-ssh.

commit eb479b66957c8451d2f763e9525f305879d4af25
Merge: c3ffb5f b446c88
Author: Unit 193 <unit193 at ubuntu.com>
Date:   Tue Jul 4 03:47:21 2017 -0400

    Merge tag 'upstream/4.1.0'
    
    Upstream version 4.1.0

 .gitignore                                         |    6 +
 .rubocop.yml                                       |    5 +
 .rubocop_todo.yml                                  | 1129 ++++++++++++++
 .travis.yml                                        |   57 +-
 CHANGES.txt                                        |   85 +-
 Gemfile                                            |   17 +
 Gemfile.norbnacl                                   |   10 +
 Gemfile.norbnacl.lock                              |   41 +
 ISSUE_TEMPLATE.md                                  |   30 +
 README.rdoc                                        |   53 +-
 Rakefile                                           |   83 +-
 appveyor.yml                                       |   52 +
 checksums.yaml.gz.sig                              |  Bin 256 -> 0 bytes
 data.tar.gz.sig                                    |  Bin 256 -> 0 bytes
 lib/net/ssh.rb                                     |   59 +-
 lib/net/ssh/authentication/agent.rb                |  261 +++-
 lib/net/ssh/authentication/agent/java_pageant.rb   |   85 --
 lib/net/ssh/authentication/agent/socket.rb         |  178 ---
 lib/net/ssh/authentication/certificate.rb          |  169 +++
 lib/net/ssh/authentication/ed25519.rb              |  160 ++
 lib/net/ssh/authentication/ed25519_loader.rb       |   31 +
 lib/net/ssh/authentication/key_manager.rb          |   28 +-
 lib/net/ssh/authentication/methods/abstract.rb     |    4 +
 .../authentication/methods/keyboard_interactive.rb |   20 +-
 lib/net/ssh/authentication/methods/password.rb     |   17 +-
 lib/net/ssh/authentication/pageant.rb              |  153 +-
 lib/net/ssh/authentication/session.rb              |    3 +-
 lib/net/ssh/buffer.rb                              |   72 +-
 lib/net/ssh/buffered_io.rb                         |   29 +-
 lib/net/ssh/config.rb                              |  228 +--
 lib/net/ssh/connection/channel.rb                  |   16 +-
 lib/net/ssh/connection/event_loop.rb               |  114 ++
 lib/net/ssh/connection/keepalive.rb                |    4 +-
 lib/net/ssh/connection/session.rb                  |  145 +-
 lib/net/ssh/errors.rb                              |   12 +-
 lib/net/ssh/key_factory.rb                         |   92 +-
 lib/net/ssh/known_hosts.rb                         |   15 +-
 lib/net/ssh/prompt.rb                              |  125 +-
 lib/net/ssh/proxy/http.rb                          |   25 +-
 lib/net/ssh/proxy/https.rb                         |   49 +
 lib/net/ssh/proxy/jump.rb                          |   53 +
 lib/net/ssh/ruby_compat.rb                         |   26 +-
 lib/net/ssh/test.rb                                |   10 +-
 lib/net/ssh/test/channel.rb                        |    7 +
 lib/net/ssh/test/extensions.rb                     |   17 +
 lib/net/ssh/test/kex.rb                            |    8 +-
 lib/net/ssh/test/packet.rb                         |   20 +-
 lib/net/ssh/test/script.rb                         |   18 +-
 lib/net/ssh/transport/algorithms.rb                |  162 +-
 lib/net/ssh/transport/cipher_factory.rb            |   44 +-
 lib/net/ssh/transport/ctr.rb                       |   16 +-
 .../transport/kex/diffie_hellman_group1_sha1.rb    |   29 +-
 .../kex/diffie_hellman_group_exchange_sha1.rb      |    8 +-
 lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb    |    2 +-
 lib/net/ssh/transport/key_expander.rb              |    1 +
 lib/net/ssh/transport/openssl.rb                   |   14 +-
 lib/net/ssh/transport/packet_stream.rb             |   14 +-
 lib/net/ssh/transport/session.rb                   |    4 +-
 lib/net/ssh/transport/state.rb                     |    2 +-
 lib/net/ssh/version.rb                             |    6 +-
 metadata.gz.sig                                    |  Bin 256 -> 0 bytes
 net-ssh-public_cert.pem                            |   37 +-
 net-ssh.gemspec                                    |  238 +--
 setup.rb                                           | 1585 --------------------
 support/arcfour_check.rb                           |    2 +-
 support/ssh_tunnel_bug.rb                          |    2 +-
 test/authentication/methods/common.rb              |   12 +-
 test/authentication/methods/test_abstract.rb       |    6 +-
 test/authentication/methods/test_hostbased.rb      |   12 +-
 .../methods/test_keyboard_interactive.rb           |   29 +-
 test/authentication/methods/test_none.rb           |    2 +-
 test/authentication/methods/test_password.rb       |   12 +-
 test/authentication/methods/test_publickey.rb      |    6 +-
 test/authentication/test_agent.rb                  |  261 +++-
 test/authentication/test_certificate.rb            |  104 ++
 test/authentication/test_ed25519.rb                |   85 ++
 test/authentication/test_key_manager.rb            |   89 +-
 test/authentication/test_session.rb                |    2 +-
 test/common.rb                                     |   46 +-
 test/configs/conf.d/subset2                        |    2 +
 test/configs/conf.d/subset3                        |    1 +
 test/configs/include                               |    4 +
 test/configs/proxy_jump                            |    5 +
 test/configs/subset1                               |    2 +
 test/connection/test_channel.rb                    |   22 +-
 test/connection/test_session.rb                    |   56 +-
 test/integration/README.md                         |   26 +
 test/integration/README.txt                        |   17 -
 test/integration/common.rb                         |   43 +-
 test/integration/playbook.yml                      |   56 +-
 test/integration/test_agent.rb                     |   60 +
 test/integration/test_cert_user_auth.rb            |   30 +
 test/integration/test_channel.rb                   |  108 ++
 test/integration/test_ed25519_pkeys.rb             |   91 ++
 test/integration/test_encoding.rb                  |   23 +
 test/integration/test_exec.rb                      |   22 +
 test/integration/test_forward.rb                   |  132 +-
 test/integration/test_http_proxy.rb                |   83 +
 test/integration/test_id_rsa_keys.rb               |   33 +-
 test/integration/test_password.rb                  |   50 +
 test/integration/test_proxy.rb                     |   51 +-
 test/manual/test_pageant.rb                        |   14 +-
 test/start/test_connection.rb                      |    4 +-
 test/start/test_options.rb                         |   59 +-
 test/start/test_transport.rb                       |    8 +-
 test/start/test_user_nil.rb                        |    2 +-
 test/test/test_test.rb                             |   76 +
 test/test_all.rb                                   |    4 +-
 test/test_buffer.rb                                |   55 +-
 test/test_buffered_io.rb                           |    2 +-
 test/test_config.rb                                |   63 +-
 test/test_key_factory.rb                           |   50 +-
 test/test_known_hosts.rb                           |   10 +-
 test/test_proxy_jump.rb                            |   51 +
 test/transport/hmac/test_md5.rb                    |    2 +-
 test/transport/hmac/test_none.rb                   |    8 +-
 test/transport/hmac/test_ripemd160.rb              |    2 +-
 test/transport/hmac/test_sha1.rb                   |    2 +-
 test/transport/hmac/test_sha2_256.rb               |    2 +-
 test/transport/hmac/test_sha2_512.rb               |    2 +-
 .../kex/test_diffie_hellman_group1_sha1.rb         |   20 +-
 .../kex/test_diffie_hellman_group_exchange_sha1.rb |   23 +-
 test/transport/kex/test_ecdh_sha2_nistp256.rb      |   18 +-
 test/transport/kex/test_ecdh_sha2_nistp384.rb      |    2 +-
 test/transport/test_algorithms.rb                  |  155 +-
 test/transport/test_cipher_factory.rb              |  136 +-
 test/transport/test_hmac.rb                        |    4 +-
 test/transport/test_identity_cipher.rb             |    2 +-
 test/transport/test_packet_stream.rb               |  608 +-------
 test/transport/test_server_version.rb              |    2 +-
 test/transport/test_session.rb                     |   52 +-
 test/transport/test_state.rb                       |   34 +-
 test/verifiers/test_secure.rb                      |    2 +-
 test/win_integration/FreeSSHDService.ini           |   62 +
 test/win_integration/FreeSSHDService32.ini         |   62 +
 test/win_integration/common.rb                     |    7 +
 test/win_integration/test_freesshd.rb              |   11 +
 test/win_integration/test_pageant.rb               |   44 +
 138 files changed, 5336 insertions(+), 3894 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-net-ssh.git



More information about the Pkg-ruby-extras-commits mailing list