Hello community, here is the log from the commit of package rubygem-sshkit for openSUSE:Factory checked in at 2017-04-17 10:27:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-sshkit (Old) and /work/SRC/openSUSE:Factory/.rubygem-sshkit.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-sshkit" Mon Apr 17 10:27:09 2017 rev:20 rq:487594 version:1.13.1 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-sshkit/rubygem-sshkit.changes 2017-04-11 09:33:21.241172950 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-sshkit.new/rubygem-sshkit.changes 2017-04-17 10:27:11.830686521 +0200 @@ -1,0 +2,16 @@ +Sat Apr 1 04:37:39 UTC 2017 - [email protected] + +- updated to version 1.13.1 + see installed CHANGELOG.md + + ## [1.13.1][] (2017-03-31) + + ### Breaking changes + + * None + + ### Bug fixes + + * [#397](https://github.com/capistrano/sshkt/pull/397): Fix NoMethodError assign_defaults with net-ssh older than 4.0.0 - [@shirosaki](https://github.com/shirosaki) + +------------------------------------------------------------------- Old: ---- sshkit-1.13.0.gem New: ---- sshkit-1.13.1.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-sshkit.spec ++++++ --- /var/tmp/diff_new_pack.g4oJtk/_old 2017-04-17 10:27:12.826545491 +0200 +++ /var/tmp/diff_new_pack.g4oJtk/_new 2017-04-17 10:27:12.826545491 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-sshkit -Version: 1.13.0 +Version: 1.13.1 Release: 0 %define mod_name sshkit %define mod_full_name %{mod_name}-%{version} ++++++ sshkit-1.13.0.gem -> sshkit-1.13.1.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2017-03-25 01:31:24.000000000 +0100 +++ new/CHANGELOG.md 2017-03-31 16:31:41.000000000 +0200 @@ -7,6 +7,16 @@ * Your contribution here! +## [1.13.1][] (2017-03-31) + +### Breaking changes + + * None + +### Bug fixes + + * [#397](https://github.com/capistrano/sshkt/pull/397): Fix NoMethodError assign_defaults with net-ssh older than 4.0.0 - [@shirosaki](https://github.com/shirosaki) + ## [1.13.0][] (2017-03-24) ### Breaking changes @@ -687,7 +697,9 @@ First release. -[Unreleased]: https://github.com/capistrano/sshkit/compare/v1.12.0...HEAD +[Unreleased]: https://github.com/capistrano/sshkit/compare/v1.13.1...HEAD +[1.13.1]: https://github.com/capistrano/sshkit/compare/v1.13.0...v1.13.1 +[1.13.0]: https://github.com/capistrano/sshkit/compare/v1.12.0...v1.13.0 [1.12.0]: https://github.com/capistrano/sshkit/compare/v1.11.5...v1.12.0 [1.11.5]: https://github.com/capistrano/sshkit/compare/v1.11.4...v1.11.5 [1.11.4]: https://github.com/capistrano/sshkit/compare/v1.11.3...v1.11.4 Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sshkit/backends/netssh.rb new/lib/sshkit/backends/netssh.rb --- old/lib/sshkit/backends/netssh.rb 2017-03-25 01:31:24.000000000 +0100 +++ new/lib/sshkit/backends/netssh.rb 2017-03-31 16:31:41.000000000 +0200 @@ -47,7 +47,16 @@ # Set default options early for ConnectionPool cache key def assign_defaults - Net::SSH.assign_defaults(@default_options) + if Net::SSH.respond_to?(:assign_defaults) + Net::SSH.assign_defaults(@default_options) + else + # net-ssh < 4.0.0 doesn't have assign_defaults + unless @default_options.key?(:logger) + require 'logger' + @default_options[:logger] = ::Logger.new(STDERR) + @default_options[:logger].level = ::Logger::FATAL + end + end @default_options end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sshkit/version.rb new/lib/sshkit/version.rb --- old/lib/sshkit/version.rb 2017-03-25 01:31:24.000000000 +0100 +++ new/lib/sshkit/version.rb 2017-03-31 16:31:41.000000000 +0200 @@ -1,3 +1,3 @@ module SSHKit - VERSION = "1.13.0".freeze + VERSION = "1.13.1".freeze end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2017-03-25 01:31:24.000000000 +0100 +++ new/metadata 2017-03-31 16:31:41.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: sshkit version: !ruby/object:Gem::Version - version: 1.13.0 + version: 1.13.1 platform: ruby authors: - Lee Hambley @@ -9,7 +9,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2017-03-25 00:00:00.000000000 Z +date: 2017-03-31 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: net-ssh
