Hello community, here is the log from the commit of package rubygem-airbrussh for openSUSE:Factory checked in at 2016-08-25 09:55:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-airbrussh (Old) and /work/SRC/openSUSE:Factory/.rubygem-airbrussh.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-airbrussh" Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-airbrussh/rubygem-airbrussh.changes 2016-06-11 00:01:07.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-airbrussh.new/rubygem-airbrussh.changes 2016-08-25 09:55:52.000000000 +0200 @@ -1,0 +2,15 @@ +Wed Jul 27 04:28:32 UTC 2016 - [email protected] + +- updated to version 1.1.0 + see installed CHANGELOG.md + + ## [1.1.0][] (2016-07-26) + + * Use default color for info messages. + When using the `gray` color on some implementation of the `solarized` + theme the text is not visible. The `solarized` theme is popular and + bugs have been reported about missed error messages, so this patch + switches these messages to the default color. + (see [#84](https://github.com/mattbrictson/airbrussh/issues/84)) + +------------------------------------------------------------------- Old: ---- airbrussh-1.0.2.gem New: ---- airbrussh-1.1.0.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-airbrussh.spec ++++++ --- /var/tmp/diff_new_pack.pgoSnC/_old 2016-08-25 09:55:53.000000000 +0200 +++ /var/tmp/diff_new_pack.pgoSnC/_new 2016-08-25 09:55:53.000000000 +0200 @@ -24,14 +24,14 @@ # Name: rubygem-airbrussh -Version: 1.0.2 +Version: 1.1.0 Release: 0 %define mod_name airbrussh %define mod_full_name %{mod_name}-%{version} BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: ruby-macros >= 5 -BuildRequires: %{ruby} BuildRequires: %{rubygem gem2rpm} +BuildRequires: %{ruby} +BuildRequires: ruby-macros >= 5 Url: https://github.com/mattbrictson/airbrussh Source: http://rubygems.org/gems/%{mod_full_name}.gem Source1: gem2rpm.yml ++++++ airbrussh-1.0.2.gem -> airbrussh-1.1.0.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2016-05-13 19:24:21.000000000 +0200 +++ new/CHANGELOG.md 2016-07-27 01:43:49.000000000 +0200 @@ -6,6 +6,15 @@ * Your contribution here! +## [1.1.0][] (2016-07-26) + +* Use default color for info messages. + When using the `gray` color on some implementation of the `solarized` + theme the text is not visible. The `solarized` theme is popular and + bugs have been reported about missed error messages, so this patch + switches these messages to the default color. + (see [#84](https://github.com/mattbrictson/airbrussh/issues/84)) + ## [1.0.2][] (2016-05-13) * Fix a crash that can happen in certain multi-server deployments when @@ -106,7 +115,8 @@ * Initial release [Semver]: http://semver.org -[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.0.2...HEAD +[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.1.0...HEAD +[1.1.0]: https://github.com/mattbrictson/airbrussh/compare/v1.0.2...v1.1.0 [1.0.2]: https://github.com/mattbrictson/airbrussh/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/mattbrictson/airbrussh/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/mattbrictson/airbrussh/compare/v1.0.0.beta1...v1.0.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Gemfile new/Gemfile --- old/Gemfile 2016-05-13 19:24:21.000000000 +0200 +++ new/Gemfile 2016-07-27 01:43:49.000000000 +0200 @@ -31,5 +31,8 @@ gem "sshkit", requirement end +# json 2.0+ is not compatible with Ruby 1.9, so pin at older version. +gem "json", "~> 1.8" if RUBY_VERSION == "1.9.3" + # net-ssh 3.0+ is not compatible with Ruby 1.9, so pin at older version. gem "net-ssh", "~> 2.8" if RUBY_VERSION == "1.9.3" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/airbrussh.gemspec new/airbrussh.gemspec --- old/airbrussh.gemspec 2016-05-13 19:24:21.000000000 +0200 +++ new/airbrussh.gemspec 2016-07-27 01:43:49.000000000 +0200 @@ -29,5 +29,5 @@ spec.add_development_dependency "minitest" spec.add_development_dependency "minitest-reporters" spec.add_development_dependency "mocha" - spec.add_development_dependency "rubocop", ">= 0.37.0" + spec.add_development_dependency "rubocop", "~> 0.41.2" end Files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/airbrussh/command_formatter.rb new/lib/airbrussh/command_formatter.rb --- old/lib/airbrussh/command_formatter.rb 2016-05-13 19:24:21.000000000 +0200 +++ new/lib/airbrussh/command_formatter.rb 2016-07-27 01:43:49.000000000 +0200 @@ -52,7 +52,7 @@ else green(success_message) end - message << " #{gray(runtime)}" + message << " #{runtime}" end private diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/airbrussh/console_formatter.rb new/lib/airbrussh/console_formatter.rb --- old/lib/airbrussh/console_formatter.rb 2016-05-13 19:24:21.000000000 +0200 +++ new/lib/airbrussh/console_formatter.rb 2016-07-27 01:43:49.000000000 +0200 @@ -69,7 +69,7 @@ def write_log_message(log_message) return if debug?(log_message) print_task_if_changed - print_indented_line(gray(log_message.to_s)) + print_indented_line(log_message.to_s) end # For SSHKit versions up to and including 1.7.1, the stdout and stderr diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/airbrussh/version.rb new/lib/airbrussh/version.rb --- old/lib/airbrussh/version.rb 2016-05-13 19:24:21.000000000 +0200 +++ new/lib/airbrussh/version.rb 2016-07-27 01:43:49.000000000 +0200 @@ -1,4 +1,4 @@ # frozen_string_literal: true module Airbrussh - VERSION = "1.0.2".freeze + VERSION = "1.1.0".freeze end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2016-05-13 19:24:21.000000000 +0200 +++ new/metadata 2016-07-27 01:43:49.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: airbrussh version: !ruby/object:Gem::Version - version: 1.0.2 + version: 1.1.0 platform: ruby authors: - Matt Brictson autorequire: bindir: exe cert_chain: [] -date: 2016-05-13 00:00:00.000000000 Z +date: 2016-07-26 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: sshkit @@ -118,16 +118,16 @@ name: rubocop requirement: !ruby/object:Gem::Requirement requirements: - - - ">=" + - - "~>" - !ruby/object:Gem::Version - version: 0.37.0 + version: 0.41.2 type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - - ">=" + - - "~>" - !ruby/object:Gem::Version - version: 0.37.0 + version: 0.41.2 description: A replacement log formatter for SSHKit that makes Capistrano output much easier on the eyes. Just add Airbrussh to your Capfile and enjoy concise, useful log output that is easy to read. @@ -190,7 +190,7 @@ version: '0' requirements: [] rubyforge_project: -rubygems_version: 2.6.4 +rubygems_version: 2.6.6 signing_key: specification_version: 4 summary: Airbrussh pretties up your SSHKit and Capistrano output
