Hello community,

here is the log from the commit of package rubygem-airbrussh for 
openSUSE:Factory checked in at 2016-10-10 16:22:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-08-25 09:55:52.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-airbrussh.new/rubygem-airbrussh.changes 
2016-10-10 16:22:19.000000000 +0200
@@ -1,0 +2,13 @@
+Sat Sep 10 04:28:41 UTC 2016 - co...@suse.com
+
+- updated to version 1.1.1
+ see installed CHANGELOG.md
+
+  ## [1.1.1][] (2016-09-09)
+  
+  * When a Capistrano deploy fails and the error log is dumped to the console,
+    Airbrussh no longer truncates the error output. This ensures that important
+    troubleshooting information is not lost.
+    [#91](https://github.com/mattbrictson/airbrussh/issues/91)
+
+-------------------------------------------------------------------

Old:
----
  airbrussh-1.1.0.gem

New:
----
  airbrussh-1.1.1.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-airbrussh.spec ++++++
--- /var/tmp/diff_new_pack.CZQuwn/_old  2016-10-10 16:22:20.000000000 +0200
+++ /var/tmp/diff_new_pack.CZQuwn/_new  2016-10-10 16:22:20.000000000 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-airbrussh
-Version:        1.1.0
+Version:        1.1.1
 Release:        0
 %define mod_name airbrussh
 %define mod_full_name %{mod_name}-%{version}

++++++ airbrussh-1.1.0.gem -> airbrussh-1.1.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2016-07-27 01:43:49.000000000 +0200
+++ new/CHANGELOG.md    2016-09-09 18:00:59.000000000 +0200
@@ -6,6 +6,13 @@
 
 * Your contribution here!
 
+## [1.1.1][] (2016-09-09)
+
+* When a Capistrano deploy fails and the error log is dumped to the console,
+  Airbrussh no longer truncates the error output. This ensures that important
+  troubleshooting information is not lost.
+  [#91](https://github.com/mattbrictson/airbrussh/issues/91)
+
 ## [1.1.0][] (2016-07-26)
 
 * Use default color for info messages.
@@ -115,7 +122,8 @@
 * Initial release
 
 [Semver]: http://semver.org
-[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.1.0...HEAD
+[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.1.1...HEAD
+[1.1.1]: https://github.com/mattbrictson/airbrussh/compare/v1.1.0...v1.1.1
 [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
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2016-07-27 01:43:49.000000000 +0200
+++ new/Gemfile 2016-09-09 18:00:59.000000000 +0200
@@ -36,3 +36,6 @@
 
 # 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"
+
+# tins 1.7.0+ is not compatible with Ruby 1.9, so pin at older version.
+gem "tins", "~> 1.6.0" if RUBY_VERSION == "1.9.3"
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/airbrussh/capistrano/tasks.rb 
new/lib/airbrussh/capistrano/tasks.rb
--- old/lib/airbrussh/capistrano/tasks.rb       2016-07-27 01:43:49.000000000 
+0200
+++ new/lib/airbrussh/capistrano/tasks.rb       2016-09-09 18:00:59.000000000 
+0200
@@ -71,7 +71,12 @@
       end
 
       def err_console
-        @err_console ||= Airbrussh::Console.new(stderr)
+        @err_console ||= begin
+          # Ensure we do not truncate the error output
+          err_config = config.dup
+          err_config.truncate = false
+          Airbrussh::Console.new(stderr, err_config)
+        end
       end
 
       def error_line(line="\n")
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-07-27 01:43:49.000000000 +0200
+++ new/lib/airbrussh/version.rb        2016-09-09 18:00:59.000000000 +0200
@@ -1,4 +1,4 @@
 # frozen_string_literal: true
 module Airbrussh
-  VERSION = "1.1.0".freeze
+  VERSION = "1.1.1".freeze
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2016-07-27 01:43:49.000000000 +0200
+++ new/metadata        2016-09-09 18:00:59.000000000 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: airbrussh
 version: !ruby/object:Gem::Version
-  version: 1.1.0
+  version: 1.1.1
 platform: ruby
 authors:
 - Matt Brictson
 autorequire: 
 bindir: exe
 cert_chain: []
-date: 2016-07-26 00:00:00.000000000 Z
+date: 2016-09-09 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: sshkit


Reply via email to