File rubygem-net-ssh.changes of Package rubygem-net-ssh
-------------------------------------------------------------------
Tue Jul 15 16:17:13 UTC 2014 - mrueckert@suse.com
- regenerate with new template
-------------------------------------------------------------------
Thu Jun 26 10:14:38 UTC 2014 - mrueckert@suse.com
- move to SLE 12 packaging schema
-------------------------------------------------------------------
Mon Mar 10 12:23:26 UTC 2014 - nkrinner@suse.com
- Rebuild the spec file with the latest gem2rpm
-------------------------------------------------------------------
Sat Feb 22 06:25:42 UTC 2014 - coolo@suse.com
- updated to version 2.8.0
* Handle ssh-rsa and ssh-dss certificate files [bobveznat]
* Correctly interpret /etc/ssh_config Authentication settings based on openssh /etc/ssh_config system defaults [therealjessesanford, liggitt]
* Fixed pageant support for Windows [jarredholman]
* Support %r in ProxyCommand configuration in ssh_config files as defined in OpenSSH [yugui]
* Don't use ssh-agent if :keys_only is true [SFEley]
* Fix the bug in keys with comments [bobtfish]
* Add a failing tests for options in pub keys [bobtfish]
* Assert that the return value from ssh block is returned [carlhoerberg]
* Don't close the connection it's already closed [carlhoerberg]
* Ensure the connection closes even on exception [carlhoerberg]
* Make the authentication error message more useful [deric]
* Fix "ConnectionError" typo in lib/net/ssh/proxy/socks5.rb [mirakui]
* Allow KeyManager to recover from incompatible agents [ecki, delano]
* Fix for "Authentication Method determination can pick up a class from the root namespace" [dave.sieh]
-------------------------------------------------------------------
Fri Sep 13 11:06:24 UTC 2013 - coolo@suse.com
- updated to version 2.7.0
* Fix for 'Could not parse PKey: no start line' error on private keys with passphrases (issue #101) [metametaclass]
* Automatically forward environment variables defined in OpenSSH config files [fnordfish]
* Guard against socket.gets being nil in Net::SSH::Proxy::HTTP [krishicks]
* Implemented experimental keepalive feature [noric]
-------------------------------------------------------------------
Wed Jul 31 05:45:53 UTC 2013 - coolo@suse.com
- updated to version 2.6.8
* Added support for host wildcard substitution [GabKlein]
* Added a wait to the loop in close to help fix possible blocks [Josh Kalderimis]
* Fixed test file encoding issues with Ruby 2.0 (#87) [voxik
-------------------------------------------------------------------
Sat Apr 13 14:58:07 UTC 2013 - coolo@suse.com
- updated to version 2.6.7
* Decreased default packet size to 32768 as described in RFC 4253 [Olipro]
* Added max_pkt_size and max_win_size options to Net::SSH.start [Olipro]
-------------------------------------------------------------------
Sun Mar 3 19:30:46 UTC 2013 - coolo@suse.com
- updated to version 2.6.6
* Fix for ruby 2.0 in windows [jansegre]
-------------------------------------------------------------------
Tue Feb 12 14:03:32 UTC 2013 - coolo@suse.com
- updated to version 2.6.5
-------------------------------------------------------------------
Thu Jan 24 06:40:08 UTC 2013 - coolo@suse.com
- updated to version 2.6.3
* Small doc fix and correct error class for PKey::EC key type [Andreas Wolff]
* Improve test dependencies [Kenichi Kamiya]
-------------------------------------------------------------------
Wed Nov 28 13:23:21 UTC 2012 - coolo@suse.com
- updated to version 2.6.2
-------------------------------------------------------------------
Mon Oct 29 08:17:40 UTC 2012 - coolo@suse.com
- updated to version 2.6.1
* removed dependency on jruby-pageant again, makes patch obsolete
remove-jruby-dep.diff
-------------------------------------------------------------------
Tue Sep 25 07:22:58 UTC 2012 - coolo@suse.com
- jruby-pageant is only a hack and not a gem and only required
on java-win32, so remove the dependency:
remove-jruby-dep.diff
-------------------------------------------------------------------
Sun Sep 23 19:36:00 UTC 2012 - coolo@suse.com
- updated to version 2.6.0
* Use OpenSSL::PKey.read to read arbitrary private key. [nagachika]
* Check availability of UNIXSocket and UNIXServer for Windows [Nobuhiro IMAI]
* Bump version to 2.5.3 and depend on newer jruby-pageant version for Java 1.5 compat. [arturaz]
* Implementation of the "none"-authentication method [dubspeed]
* Add class for stricter host key verification [Andy Brody]
-------------------------------------------------------------------
Wed Aug 1 05:05:48 UTC 2012 - coolo@suse.com
- updated to version 2.5.2
* Fix for Net::SSH::KnownHosts::SUPPORTED_TYPE [Marco Sandrini]
* Added missing file to manifest [Marco Sandrini]
* Implement many algorithms [Ryosuke Yamazaki]
* Key Exchange
* diffie-hellman-group14-sha1
* ecdh-sha2-nistp{256,384,521}
* Host Key
* ecdsa-sha2-nistp{256,384,521}
* Authentication
* ecdsa-sha2-nistp{256,384,521}
* HMAC
* hmac-ripemd160
* Cipher:
* aes{128,192,256}-ctr
* camellia{128,192,256}-ctr
* blowfish-ctr
* cast128-ctr
* 3des-ctr
* arcfour (has problems with weak keys, and should be used with caution)
* camellia{128,192,256}-cbc
* Support for JRuby + Pageant + Windows [arturaz]
-------------------------------------------------------------------
Tue Feb 21 11:33:34 UTC 2012 - saschpe@suse.de
- Update to version 2.3.0
-------------------------------------------------------------------
Mon Jun 14 13:53:12 UTC 2010 - mrueckert@suse.de
- additional changes from version 2.0.23
* delay CHANNEL_EOF packet until output buffer is empty
[Rich Lane]
Previously, calling #eof! after #send_data would result in the
CHANNEL_EOF packet being sent immediately, ahead of the data in
the output buffer. Now buffer becomes empty.
- additional changes from version 2.0.22
* Fix for: "Parsing the config errors out because it coerces the
"1" into an integer and then tries to split it on spaces for
multiple host checking."
(http://net-ssh.lighthouseapp.com/projects/36253/tickets/10)
[Lee Marlow]
- additional changes from version 2.0.21
* Fix for "IdentifyFile" in ~/.ssh/config does not work if no
"Host" statement is given
(http://net-ssh.lighthouseapp.com/projects/36253/tickets/9-identifyfile-in-sshconfig-does-not-work-if-no-host-statement-is-given#ticket-9-5)
[xbaldauf, Delano Mandelbaum]
* Fix for client closes a forwarded connection, but the server is
reading, net-ssh terminates with IOError socket closed
(http://net-ssh.lighthouseapp.com/projects/36253/tickets/7)
[Miklós Fazekas]
* Fix for client force closes (RST) a forwarded connection, but
server is reading, net-ssh terminates with exception
[Miklós Fazekas]
* Fix for server closes the sending side, the on_eof is not
handled. [Miklós Fazekas]
* Removed Hanna dependency in Rakefile [Delano Mandelbaum]
- additional changes from version 2.0.20
* Support "ProxyCommand none" directive [Andy Lo-A-Foe]
- additional changes from version 2.0.19
* Support plus sign in sshconfig hostname [Jason Weathered]
- additional changes from version 2.0.18
* Fix related to #recv(1) to #readpartial change in 2.0.16 [Hans
de Graaff, Delano Mandelbaum]
-------------------------------------------------------------------
Fri Jun 11 10:00:01 UTC 2010 - mrueckert@suse.de
- use rubygems_requires macro
-------------------------------------------------------------------
Mon Dec 21 16:39:15 UTC 2009 - prusnak@suse.cz
- update to version 2.0.17
-------------------------------------------------------------------
Thu Mar 26 02:52:45 CET 2009 - mrueckert@suse.de
- update to version 2.0.11
-------------------------------------------------------------------
Mon Jan 26 16:59:03 CET 2009 - mrueckert@suse.de
- update to version 2.0.8
-------------------------------------------------------------------
Sun Aug 5 18:52:15 CEST 2007 - mrueckert@suse.de
- update to version 1.1.2:
* bug #6156 (ruby -w warnings)
* bug #6667 (wrong SOCKS 5 auth version)
* bug #10818 (Exception in split_data_for_packet)
* bug #11250 (host key verification problems when an RSA key
appears in the known hosts file, but the server has both DSS
and RSA keys)
* bug #11270 (error when server uses some aes ciphers)
* bug #11355 (typo in session.rb)
* bug #11532 (Hang after MSG_CHANNEL_OPEN_FAILURE)
-------------------------------------------------------------------
Tue May 22 20:16:57 CEST 2007 - mrueckert@suse.de
- update to version 1.1.1:
* Fixed broken mkdir in host key verification.
* Fixed problems with Windows users getting "address family for
hostname not supported" errors.
* Added the missing rb-keygen utility
* Server key verification (enabled by default, disable with
:paranoid => false)
* Add support for SSH agent forwwarding
-------------------------------------------------------------------
Wed Sep 13 11:16:23 CEST 2006 - mrueckert@suse.de
- update to version 1.0.10:
* Experiment with using read instead of sysread, to try and
alleviate problems on Windows.
* Use printf instead of echo -n in the shell service, for
compatibility with more unices.
* Give a sane error message when the user name is nil and
cannot be derived from the environment.
* Add a #connection accessor to the session.
* Add initial support for server-originated global requests.
-------------------------------------------------------------------
Wed Jun 21 01:14:27 CEST 2006 - mrueckert@suse.de
- use rubygems_with_buildroot_patch instead of the versioned
buildrequires
-------------------------------------------------------------------
Mon Jun 19 22:30:56 CEST 2006 - mrueckert@suse.de
- Initial package version 1.0.9