Next | Query returned 30 messages, browsing 21 to 30 | previous

History of commit frequency

CVS Commit History:


   2013-06-16 19:12:52 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby-net-ssh to 2.6.7.

=== 2.6.7 / 11 Apr 2013

* 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]
   2013-02-11 03:06:29 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-net-ssh to 2.6.5.

=== 2.6.5 / 06 Feb 2013

* Fixed path in gemspec [thanks priteau]

=== 2.6.4 / 06 Feb 2013

* Added license info to gemspec [jordimassaguerpla]
* Added public cert. All gem releases are now signed.

=== 2.6.3 / 10 Jan 2013

* Small doc fix and correct error class for PKey::EC key type [Andreas Wolff]
* Improve test dependencies [Kenichi Kamiya]
   2012-12-17 14:11:30 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-net-ssh to 2.6.2.

=== 2.6.0 / 19 Sep 2012

* 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]
   2012-06-02 03:01:29 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-net-ssh to 2.5.2.

=== 2.5.2 / 25 May 2012

* Fix for Net::SSH::KnownHosts::SUPPORTED_TYPE [Marco Sandrini]

=== 2.5.1 / 24 May 2012

* Added missing file to manifest [Marco Sandrini]

=== 2.5.0 / 24 May 2012

* 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

=== 2.4.0 / 17 May 2012

* Support for JRuby + Pageant + Windows [arturaz]
   2012-03-17 18:01:16 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-net-ssh to 2.3.0.

=== 2.3.0 / 11 Jan 2012

* Support for hmac-sha2 and diffie-hellman-group-exchange-sha256 [Ryosuke Yamazaki]

=== 2.2.2 / 04 Jan 2012

* Fixed: Connection hangs on ServerVersion.new(socket, logger) [muffl0n]
* Avoid dying when unsupported auth mechanisms are defined [pcn]
   2011-08-25 17:32:05 by Takahiro Kambe | Files touched by this commit (2)
Log message:
Update ruby-net-ssh to 2.2.1.

=== 2.2.1 / 24 Aug 2011

* Do not prompt any passphrases before trying all identities from
  agent. [musybite]
  (see: http://net-ssh.lighthouseapp.com/projects/36253-net-ssh/tickets/30)
   2011-05-15 21:31:55 by Guillaume Lasmayous | Files touched by this commit (2)
Log message:
Update security/ruby-net-ssh to version 2.1.4.

Upstream changes:

2.1.4 / 3 Apr 2011

    * Add ConnectionTimeout exception class. [Joel Watson]

        See: https://github.com/net-ssh/net-ssh-multi/pull/1

2.1.3 / 2 Mar 2011

    * Call to transport.closed should be transport.close [Woon Jung]

2.1.2 / 1 Mar 2011

    * Fix for Net::SSH Continues to attempt authentication when notified it is
not allowed [Eric Hodel]
(see: http://net-ssh.lighthouseapp.com/projects/36253-net-ssh/tickets/26)
    * Fix for transport won't be closed if authentication fails [Patrick Marchi]

2.1 / 19 Jan 2011

    * Support "IdentitiesOnly" directive (LH-24) [Musy Bite, Edmund \ 
Haselwanter]
    * Speeding up the Loggable module (LH-23) [robbebob]

2.0.24 / 14 Jan 2011

    * Fix for process code to correctly wait until remote_id is set before
sending any output, including eof. [Daniel Pittman, Markus Roberts]
    * Fix circular require warning in Ruby 1.9.2 [Gavin Brock]
   2010-09-10 09:44:40 by Takahiro Kambe | Files touched by this commit (3)
Log message:
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Update HOMEPAGE.
* Remove default value of GEM_BUILD.

=== 2.0.23 / 03 Jun 2010

* 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.

=== 2.0.22 / 20 Apr 2010

* 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]

=== 2.0.21 / 20 Mar 2010

* 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]

=== 2.0.20 / 10 Feb 2010

* Support "ProxyCommand none" directive [Andy Lo-A-Foe]

=== 2.0.19 / 16 Jan 2010

* Support plus sign in sshconfig hostname [Jason Weathered]

=== 2.0.18 / 15 Jan 2010

* Fix related to #recv(1) to #readpartial change in 2.0.16 [Hans de Graaff, \ 
Delano Mandelbaum]

=== 2.0.17 / 14 Dec 2009

* Don't load net/ssh/authentication/pageant on Windows with Ruby 1.9 [Travis \ 
Reeder, Delano Mandelbaum]
   2009-12-02 15:26:29 by Filip Hajny | Files touched by this commit (3)
Log message:
Updated ruby-net-ssh to 2.0.16.

New major version, too many changes, see home page.
   2009-06-14 20:13:41 by Joerg Sonnenberger | Files touched by this commit (154)
Log message:
Remove @dirrm entries from PLISTs

Next | Query returned 30 messages, browsing 21 to 30 | previous