Skip to content

Commit

Permalink
Update ruby-sshkit to 1.8.1.
Browse files Browse the repository at this point in the history
## 1.8.1

  * Change license to MIT, thanks to all the patient contributors who gave
    their permissions.

## 1.8.0

  * add SSHKit::Backend::ConnectionPool#close_connections
    [PR #285](capistrano/sshkit#285)
    @akm
  * Clean up rubocop lint warnings
    [PR #275](capistrano/sshkit#275)
    @cshaffer
    * Prepend unused parameter names with an underscore
    * Prefer “safe assignment in condition”
    * Disambiguate regexp literals with parens
    * Prefer `sprintf` over `String#%`
    * No longer shadow `caller_line` variable in `DeprecationLogger`
    * Rescue `StandardError` instead of `Exception`
    * Remove useless `private` access modifier in `TestAbstract`
    * Disambiguate block operator with parens
    * Disambiguate between grouped expression and method params
    * Remove assertion in `TestHost#test_assert_hosts_compare_equal` that compares something with itself
  * Export environment variables and execute command in a subshell.
    [PR #273](capistrano/sshkit#273)
    @kuon
  * Introduce `log_command_start`, `log_command_data`, `log_command_exit` methods on `Formatter`
    [PR #257](capistrano/sshkit#257)
    @robd
    * Deprecate `@stdout` and `@stderr` accessors on `Command`
  * Add support for deprecation logging options.
    [README](README.md#deprecation-warnings),
    [PR #258](capistrano/sshkit#258)
    @robd
  * Quote environment variable values.
    [PR #250](capistrano/sshkit#250)
    @Sinjo - Chris Sinjakli
  * Simplified formatter hierarchy.
    [PR #248](capistrano/sshkit#248)
    @robd
    * `SimpleText` formatter now extends `Pretty`, rather than duplicating.
  * Hide ANSI color escape sequences when outputting to a file.
    [README](README.md#output-colors),
    [Issue #245](capistrano/sshkit#245),
    [PR #246](capistrano/sshkit#246)
    @robd
    * Now only color the output if it is associated with a tty,
      or the `SSHKIT_COLOR` environment variable is set.
  * Removed broken support for assigning an `IO` to the `output` config option.
    [Issue #243](capistrano/sshkit#243),
    [PR #244](capistrano/sshkit#244)
    @robd
    * Use `SSHKit.config.output = SSHKit::Formatter::SimpleText.new($stdin)` instead
  * Added support for `:interaction_handler` option on commands.
    [PR #234](capistrano/sshkit#234),
    [PR #242](capistrano/sshkit#242)
    @robd
  * Removed partially supported `TRACE` log level.
    [2aa7890](capistrano/sshkit@2aa7890)
    @robd
  * Add support for the `:strip` option to the `capture` method and strip by default on the `Local` backend.
    [PR #239](capistrano/sshkit#239),
    [PR #249](capistrano/sshkit#249)
    @robd
    * The `Local` backend now strips by default to be consistent with the `Netssh` one.
    * This reverses change [7d15a9a](capistrano/sshkit@7d15a9a) to the `Local` capture API to remove stripping by default.
    * If you require the raw, unstripped output, pass the `strip: false` option: `capture(:ls, strip: false)`
  * Simplified backend hierarchy.
    [PR #235](capistrano/sshkit#235),
    [PR #237](capistrano/sshkit#237)
    @robd
    * Moved duplicate implementations of `make`, `rake`, `test`, `capture`, `background` on to `Abstract` backend.
    * Backend implementations now only need to implement `execute_command`, `upload!` and `download!`
    * Removed `Printer` from backend hierarchy for `Local` and `Netssh` backends (they now just extend `Abstract`)
    * Removed unused `Net::SSH:LogLevelShim`
  * Removed dependency on the `colorize` gem. SSHKit now implements its own ANSI color logic, with no external dependencies. Note that SSHKit now only supports the `:bold` or plain modes. Other modes will be gracefully ignored. [#263](capistrano/sshkit#263)
  * New API for setting the formatter: `use_format`. This differs from `format=` in that it accepts options or arguments that will be passed to the formatter's constructor. The `format=` syntax will be deprecated in a future release. [#295](capistrano/sshkit#295)
  * SSHKit now immediately raises a `NameError` if you try to set a formatter that does not exist. [#295](capistrano/sshkit#295)
  • Loading branch information
taca committed Dec 13, 2015
1 parent de8df53 commit e938525
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
5 changes: 2 additions & 3 deletions security/ruby-sshkit/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.3 2015/03/13 15:49:17 taca Exp $
# $NetBSD: Makefile,v 1.4 2015/12/13 17:18:07 taca Exp $

DISTNAME= sshkit-1.7.1
DISTNAME= sshkit-1.8.1
CATEGORIES= security

MAINTAINER= [email protected]
Expand All @@ -10,7 +10,6 @@ LICENSE= mit

DEPENDS+= ${RUBY_PKGPREFIX}-net-ssh>=2.8.0:../../security/ruby-net-ssh
DEPENDS+= ${RUBY_PKGPREFIX}-net-scp>=1.1.2:../../security/ruby-net-scp
DEPENDS+= ${RUBY_PKGPREFIX}-colorize>=0.7.0:../../misc/ruby-colorize

.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"
13 changes: 9 additions & 4 deletions security/ruby-sshkit/PLIST
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
@comment $NetBSD: PLIST,v 1.3 2015/03/13 15:49:17 taca Exp $
@comment $NetBSD: PLIST,v 1.4 2015/12/13 17:18:07 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.gitignore
${GEM_LIBDIR}/.travis.yml
${GEM_LIBDIR}/.yardopts
${GEM_LIBDIR}/BREAKING_API_WISHLIST.md
${GEM_LIBDIR}/CHANGELOG.md
${GEM_LIBDIR}/CONTRIBUTING.md
${GEM_LIBDIR}/EXAMPLES.md
Expand Down Expand Up @@ -30,6 +31,7 @@ ${GEM_LIBDIR}/lib/sshkit/command.rb
${GEM_LIBDIR}/lib/sshkit/command_map.rb
${GEM_LIBDIR}/lib/sshkit/configuration.rb
${GEM_LIBDIR}/lib/sshkit/coordinator.rb
${GEM_LIBDIR}/lib/sshkit/deprecation_logger.rb
${GEM_LIBDIR}/lib/sshkit/dsl.rb
${GEM_LIBDIR}/lib/sshkit/exception.rb
${GEM_LIBDIR}/lib/sshkit/formatters/abstract.rb
Expand All @@ -40,34 +42,37 @@ ${GEM_LIBDIR}/lib/sshkit/formatters/simple_text.rb
${GEM_LIBDIR}/lib/sshkit/host.rb
${GEM_LIBDIR}/lib/sshkit/log_message.rb
${GEM_LIBDIR}/lib/sshkit/logger.rb
${GEM_LIBDIR}/lib/sshkit/mapping_interaction_handler.rb
${GEM_LIBDIR}/lib/sshkit/runners/abstract.rb
${GEM_LIBDIR}/lib/sshkit/runners/group.rb
${GEM_LIBDIR}/lib/sshkit/runners/null.rb
${GEM_LIBDIR}/lib/sshkit/runners/parallel.rb
${GEM_LIBDIR}/lib/sshkit/runners/sequential.rb
${GEM_LIBDIR}/lib/sshkit/utils/capture_output_methods.rb
${GEM_LIBDIR}/lib/sshkit/version.rb
${GEM_LIBDIR}/sshkit.gemspec
${GEM_LIBDIR}/test/boxes.json
${GEM_LIBDIR}/test/functional/backends/test_local.rb
${GEM_LIBDIR}/test/functional/backends/test_netssh.rb
${GEM_LIBDIR}/test/functional/test_coordinator.rb
${GEM_LIBDIR}/test/functional/test_ssh_server_comes_up_for_functional_tests.rb
${GEM_LIBDIR}/test/helper.rb
${GEM_LIBDIR}/test/support/vagrant_wrapper.rb
${GEM_LIBDIR}/test/unit/backends/test_abstract.rb
${GEM_LIBDIR}/test/unit/backends/test_connection_pool.rb
${GEM_LIBDIR}/test/unit/backends/test_local.rb
${GEM_LIBDIR}/test/unit/backends/test_netssh.rb
${GEM_LIBDIR}/test/unit/backends/test_printer.rb
${GEM_LIBDIR}/test/unit/core_ext/test_string.rb
${GEM_LIBDIR}/test/unit/formatters/test_custom.rb
${GEM_LIBDIR}/test/unit/formatters/test_dot.rb
${GEM_LIBDIR}/test/unit/formatters/test_pretty.rb
${GEM_LIBDIR}/test/unit/formatters/test_simple_text.rb
${GEM_LIBDIR}/test/unit/test_color.rb
${GEM_LIBDIR}/test/unit/test_command.rb
${GEM_LIBDIR}/test/unit/test_command_map.rb
${GEM_LIBDIR}/test/unit/test_configuration.rb
${GEM_LIBDIR}/test/unit/test_coordinator.rb
${GEM_LIBDIR}/test/unit/test_deprecation_logger.rb
${GEM_LIBDIR}/test/unit/test_host.rb
${GEM_LIBDIR}/test/unit/test_logger.rb
${GEM_LIBDIR}/test/unit/test_mapping_interaction_handler.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
@pkgdir lib/ruby/gems/2.0.0/build_info
10 changes: 5 additions & 5 deletions security/ruby-sshkit/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.4 2015/11/04 01:18:08 agc Exp $
$NetBSD: distinfo,v 1.5 2015/12/13 17:18:07 taca Exp $

SHA1 (sshkit-1.7.1.gem) = d7c22efe9f297f8caccd08ac1c6d479dce3b087c
RMD160 (sshkit-1.7.1.gem) = a94f8e5addd005c38fdb6630ee1e8f981cea0865
SHA512 (sshkit-1.7.1.gem) = 55d1ac6d4f76112b9159ae2a6bc425fa54738943ffa28b94300012c8af2d69c7b060dd00adb3789940cd29f52a384edc1cfdf9a26189e0307f2662c1b7a7e1f4
Size (sshkit-1.7.1.gem) = 136192 bytes
SHA1 (sshkit-1.8.1.gem) = 7df8c9f0340257beb2b24ba04a8dbb5f281dae42
RMD160 (sshkit-1.8.1.gem) = b7fc4cebb4370d36d7b6c233db1dcd68bf72c12a
SHA512 (sshkit-1.8.1.gem) = 59fcc3f24d6ca6c7acf8f753959aee993dbbcd452477f3124d5444f7e19a9885efde9d5ea5803ffc366b9f6638a4d93472cc51b343a6d7a39a708528def6e9e9
Size (sshkit-1.8.1.gem) = 139264 bytes

0 comments on commit e938525

Please sign in to comment.