Skip to content

Commit 3d7d2f5

Browse files
author
taca
committed
Update ruby-sshkit to 1.11.3.
## [1.11.3][] (2016-09-16) * Fix known_hosts caching to match on the entire hostlist [PR #364](capistrano/sshkit#364) @byroot ## [1.11.2][] (2016-07-29) ### Bug fixes * Fixed a crash occurring when `Host@keys` was set to a non-Enumerable. @xavierholt [PR #360](capistrano/sshkit#360) ## [1.11.1][] (2016-06-17) ### Bug fixes * Fixed a regression in 1.11.0 that would cause `ArgumentError: invalid option(s): known_hosts` in some older versions of net-ssh. @byroot [#357](capistrano/sshkit#357) ## [1.11.0][] (2016-06-14) ### Bug fixes * Fixed colorized output alignment in Logger::Pretty. @xavierholt [PR #349](capistrano/sshkit#349) * Fixed a bug that prevented nested `with` calls [#43](capistrano/sshkit#43) ### Other changes * Known hosts lookup optimization is now enabled by default. @byroot ## 1.10.0 (2016-04-22) * You can now opt-in to caching of SSH's known_hosts file for a speed boost when deploying to a large fleet of servers. Refer to the [README](https://github.com/capistrano/sshkit/tree/v1.10.0#known-hosts-caching) for details. We plan to turn this on by default in a future version of SSHKit. [PR #330](capistrano/sshkit#330) @byroot * SSHKit now explicitly closes its pooled SSH connections when Ruby exits; this fixes `zlib(finalizer): the stream was freed prematurely` warnings [PR #343](capistrano/sshkit#343) @mattbrictson * Allow command map entries (`SSHKit::CommandMap#[]`) to be Procs [PR #310](capistrano/sshkit#310) @mikz ## 1.9.0 **Refer to the 1.9.0.rc1 release notes for a full list of new features, fixes, and potentially breaking changes since SSHKit 1.8.1.** There are no changes since 1.9.0.rc1. ## 1.9.0.rc1 ### Potentially breaking changes * The SSHKit DSL is no longer automatically included when you `require` it. **This means you must now explicitly `include SSHKit::DSL`.** See [PR #219](capistrano/sshkit#219) for details. @beatrichartz * `SSHKit::Backend::Printer#test` now always returns true [PR #312](capistrano/sshkit#312) @mikz ### New features * `SSHKit::Formatter::Abstract` now accepts an optional Hash of options [PR #308](capistrano/sshkit#308) @mattbrictson * Add `SSHKit::Backend.current` so that Capistrano plugin authors can refactor helper methods and still have easy access to the currently-executing Backend without having to use global variables. * Add `SSHKit.config.default_runner` options that allows to override default command runner. This option also accepts a name of the custom runner class. * The ConnectionPool has been rewritten in this release to be more efficient and have a cleaner internal API. You can still completely disable the pool by setting `SSHKit::Backend::Netssh.pool.idle_timeout = 0`. @mattbrictson @byroot [PR #328](capistrano/sshkit#328) ### Bug fixes * make sure working directory for commands is properly cleared after `within` blocks [PR #307](capistrano/sshkit#307) @steved * display more accurate string for commands with spaces being output in `Formatter::Pretty` [PR #304](capistrano/sshkit#304) @steved [PR #319](capistrano/sshkit#319) @mattbrictson * Fix a race condition experienced in JRuby that could cause multi-server deploys to fail. [PR #322](capistrano/sshkit#322) @mattbrictson
1 parent 6e3eb29 commit 3d7d2f5

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

security/ruby-sshkit/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# $NetBSD: Makefile,v 1.4 2015/12/13 17:18:07 taca Exp $
1+
# $NetBSD: Makefile,v 1.5 2016/10/17 15:45:26 taca Exp $
22

3-
DISTNAME= sshkit-1.8.1
3+
DISTNAME= sshkit-1.11.3
44
CATEGORIES= security
55

66
MAINTAINER= [email protected]

security/ruby-sshkit/PLIST

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@comment $NetBSD: PLIST,v 1.4 2015/12/13 17:18:07 taca Exp $
1+
@comment $NetBSD: PLIST,v 1.5 2016/10/17 15:45:26 taca Exp $
22
${GEM_HOME}/cache/${GEM_NAME}.gem
33
${GEM_LIBDIR}/.gitignore
44
${GEM_LIBDIR}/.travis.yml
@@ -22,8 +22,11 @@ ${GEM_LIBDIR}/lib/sshkit.rb
2222
${GEM_LIBDIR}/lib/sshkit/all.rb
2323
${GEM_LIBDIR}/lib/sshkit/backends/abstract.rb
2424
${GEM_LIBDIR}/lib/sshkit/backends/connection_pool.rb
25+
${GEM_LIBDIR}/lib/sshkit/backends/connection_pool/cache.rb
26+
${GEM_LIBDIR}/lib/sshkit/backends/connection_pool/nil_cache.rb
2527
${GEM_LIBDIR}/lib/sshkit/backends/local.rb
2628
${GEM_LIBDIR}/lib/sshkit/backends/netssh.rb
29+
${GEM_LIBDIR}/lib/sshkit/backends/netssh/known_hosts.rb
2730
${GEM_LIBDIR}/lib/sshkit/backends/printer.rb
2831
${GEM_LIBDIR}/lib/sshkit/backends/skipper.rb
2932
${GEM_LIBDIR}/lib/sshkit/color.rb
@@ -55,13 +58,15 @@ ${GEM_LIBDIR}/test/functional/backends/test_local.rb
5558
${GEM_LIBDIR}/test/functional/backends/test_netssh.rb
5659
${GEM_LIBDIR}/test/functional/test_ssh_server_comes_up_for_functional_tests.rb
5760
${GEM_LIBDIR}/test/helper.rb
61+
${GEM_LIBDIR}/test/known_hosts/github
62+
${GEM_LIBDIR}/test/known_hosts/github_hash
63+
${GEM_LIBDIR}/test/known_hosts/github_ip
5864
${GEM_LIBDIR}/test/support/vagrant_wrapper.rb
5965
${GEM_LIBDIR}/test/unit/backends/test_abstract.rb
6066
${GEM_LIBDIR}/test/unit/backends/test_connection_pool.rb
6167
${GEM_LIBDIR}/test/unit/backends/test_local.rb
6268
${GEM_LIBDIR}/test/unit/backends/test_netssh.rb
6369
${GEM_LIBDIR}/test/unit/backends/test_printer.rb
64-
${GEM_LIBDIR}/test/unit/core_ext/test_string.rb
6570
${GEM_LIBDIR}/test/unit/formatters/test_custom.rb
6671
${GEM_LIBDIR}/test/unit/formatters/test_dot.rb
6772
${GEM_LIBDIR}/test/unit/formatters/test_pretty.rb
@@ -72,6 +77,7 @@ ${GEM_LIBDIR}/test/unit/test_command_map.rb
7277
${GEM_LIBDIR}/test/unit/test_configuration.rb
7378
${GEM_LIBDIR}/test/unit/test_coordinator.rb
7479
${GEM_LIBDIR}/test/unit/test_deprecation_logger.rb
80+
${GEM_LIBDIR}/test/unit/test_dsl.rb
7581
${GEM_LIBDIR}/test/unit/test_host.rb
7682
${GEM_LIBDIR}/test/unit/test_logger.rb
7783
${GEM_LIBDIR}/test/unit/test_mapping_interaction_handler.rb

security/ruby-sshkit/distinfo

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
$NetBSD: distinfo,v 1.5 2015/12/13 17:18:07 taca Exp $
1+
$NetBSD: distinfo,v 1.6 2016/10/17 15:45:26 taca Exp $
22

3-
SHA1 (sshkit-1.8.1.gem) = 7df8c9f0340257beb2b24ba04a8dbb5f281dae42
4-
RMD160 (sshkit-1.8.1.gem) = b7fc4cebb4370d36d7b6c233db1dcd68bf72c12a
5-
SHA512 (sshkit-1.8.1.gem) = 59fcc3f24d6ca6c7acf8f753959aee993dbbcd452477f3124d5444f7e19a9885efde9d5ea5803ffc366b9f6638a4d93472cc51b343a6d7a39a708528def6e9e9
6-
Size (sshkit-1.8.1.gem) = 139264 bytes
3+
SHA1 (sshkit-1.11.3.gem) = f0b9f3c522836dbbe5b51fe0823dde5246cb98d9
4+
RMD160 (sshkit-1.11.3.gem) = b43782edfadb0d10effe65b437f95ac10fb000d9
5+
SHA512 (sshkit-1.11.3.gem) = 037793b24159761fcd44a40e958edcefe0d362e4859d535b65031d800673c2a683fec617be87d13d70698e122720700ce6d0ffd2980aec5d951e303b37894d65
6+
Size (sshkit-1.11.3.gem) = 144896 bytes

0 commit comments

Comments
 (0)