File rubygem-sshkit.changes of Package rubygem-sshkit
-------------------------------------------------------------------
Sun May 18 09:04:45 UTC 2014 - coolo@suse.com
- updated to version 1.4.0
* Removed `invoke` alias for [`SSHKit::Backend::Printer.execute`](https://github.com/capistrano/sshkit/blob/master/lib/sshkit/backends/printer.rb#L20). This is to prevent collisions with
methods in capistrano with similar names, and to provide a cleaner API. See [capistrano issue 912](https://github.com/capistrano/capistrano/issues/912) and [issue 107](https://github.com/capistrano/sshkit/issues/107) for more details.
* Connection pooling now uses a thread local to store connection pool, giving each thread its own connection pool. Thank you @mcbriston see [#101](https://github.com/capistrano/sshkit/pull/101) for more.
* Command map indifferent towards strings and symbols thanks to @thomasfedb see [#91](https://github.com/capistrano/sshkit/pull/91)
* Moved vagrant wrapper to `support` directory, added ability to run tests with vagrant using ssh. @miry see [#64](https://github.com/capistrano/sshkit/pull/64)
* Removed unnecessary require `require_relative '../sshkit'` in `lib/sshkit/dsl.rb` prevents warnings thanks @brabic.
* Doc fixes thanks @seanhandley @vojto
-------------------------------------------------------------------
Fri Dec 20 12:02:56 UTC 2013 - coolo@suse.com
- updated to version 1.3.0
* Connection pooling. SSH connections are reused across multiple invocations
of `on()`, which can result in significant performance gains. See:
https://github.com/capistrano/sshkit/pull/70. Matt @mbrictson Brictson.
* Fixes to the Formatter::Dot and to the formatter class name resolver. @hab287:w
* Added the license to the Gemspec. @anatol.
* Fix :limit handling for the `in: :groups` run mode. Phil @phs Smith
* Doc fixes @seanhandley, @sergey-alekseev.
-------------------------------------------------------------------
Sat Nov 23 09:22:44 UTC 2013 - coolo@suse.com
- updated to version 1.2.0
* Support picking up a project local SSH config file, if a SSH config file
exists at ./.ssh/config it will be merged with the ~/.ssh/config. This is
ideal for defining project-local proxies/gateways, etc. Thanks to Alex
@0rca Vzorov.
* Tests and general improvements to the Printer backends (mostly used
internally). Thanks to Michael @miry Nikitochkin.
* Update the net-scp dependency version. Thanks again to Michael @miry
Nikitochkin.
* Improved command map. This feature allows mapped variables to be pushed
and unshifted onto the mapping so that the Capistrano extensions for
rbenv and bundler, etc can work together. For discussion about the reasoning
see https://github.com/capistrano/capistrano/issues/639 and
https://github.com/capistrano/sshkit/pull/45. A big thanks to Kir @kirs
Shatrov.
* `test()` and `capture()` now behave as expected inside a `run_locally` block
meaning that they now run on your local machine, rather than erring out. Thanks
to Kentaro @kentaroi Imai.
* The `:wait` option is now successfully passed to the runner now. Previously the
`:wait` option was ignored. Thanks to Jordan @jhollinger Hollinger for catching
the mistake in our test coverage.
* Fixes and general improvements to the `download()` method which until now was
quite naïve. Thanks to @chqr.
-------------------------------------------------------------------
Sun Oct 20 12:05:40 UTC 2013 - coolo@suse.com
- updated to version 1.1.0
* The output now reads "Command exited with status _", rather than "command
failed", or "command succeded", the semantics are the same, but people
were confused by "failure", when things were running correctly.
* Small fix to the printer backend for tests, casting command to a string
explicitly.
* The gem now supports a run_locally, although it's nothing to do with SSH,
it makes a nice API. There are examples in the EXAMPLES.md.
-------------------------------------------------------------------
Fri Oct 11 06:59:08 UTC 2013 - coolo@suse.com
- initial package