Hello community,

here is the log from the commit of package rubygem-puma for openSUSE:Factory 
checked in at 2015-02-14 13:56:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-puma (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-puma.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-puma"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-puma/rubygem-puma.changes        
2015-02-10 20:21:54.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-puma.new/rubygem-puma.changes   
2015-02-14 13:56:16.000000000 +0100
@@ -1,0 +2,5 @@
+Fri Feb 13 05:30:22 UTC 2015 - [email protected]
+
+- updated to version 2.11.1
+
+-------------------------------------------------------------------

Old:
----
  puma-2.11.0.gem

New:
----
  puma-2.11.1.gem

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

Other differences:
------------------
++++++ rubygem-puma.spec ++++++
--- /var/tmp/diff_new_pack.dg411s/_old  2015-02-14 13:56:17.000000000 +0100
+++ /var/tmp/diff_new_pack.dg411s/_new  2015-02-14 13:56:17.000000000 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-puma
-Version:        2.11.0
+Version:        2.11.1
 Release:        0
 %define mod_name puma
 %define mod_full_name %{mod_name}-%{version}

++++++ puma-2.11.0.gem -> puma-2.11.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.txt new/History.txt
--- old/History.txt     2015-01-20 19:51:31.000000000 +0100
+++ new/History.txt     2015-02-12 00:50:14.000000000 +0100
@@ -1,3 +1,13 @@
+=== 2.11.1 / 2015-02-11
+
+* 2 bug fixes:
+  * Avoid crash in strange restart conditions
+  * Inject the GEM_HOME that bundler into puma-wild's env. Fixes #653
+
+* 2 PRs merged:
+  * Merge pull request #644 from bpaquet/master
+  * Merge pull request #646 from mkonecny/master
+
 === 2.11.0 / 2015-01-20
 
 * 9 bug fixes:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2015-01-20 19:51:31.000000000 +0100
+++ new/README.md       2015-02-12 00:50:14.000000000 +0100
@@ -1,6 +1,6 @@
 # Puma: A Ruby Web Server Built For Concurrency
 
-[![Build 
Status](https://secure.travis-ci.org/puma/puma.png)](http://travis-ci.org/puma/puma)
 [![Dependency 
Status](https://gemnasium.com/puma/puma.png)](https://gemnasium.com/puma/puma) 
<a href="https://codeclimate.com/github/puma/puma";><img 
src="https://codeclimate.com/github/puma/puma.png"; /></a>
+[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/puma/puma?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
 [![Build 
Status](https://secure.travis-ci.org/puma/puma.png)](http://travis-ci.org/puma/puma)
 [![Dependency 
Status](https://gemnasium.com/puma/puma.png)](https://gemnasium.com/puma/puma) 
<a href="https://codeclimate.com/github/puma/puma";><img 
src="https://codeclimate.com/github/puma/puma.png"; /></a>
 
 ## Description
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/puma/cli.rb new/lib/puma/cli.rb
--- old/lib/puma/cli.rb 2015-01-20 19:51:31.000000000 +0100
+++ new/lib/puma/cli.rb 2015-02-12 00:50:14.000000000 +0100
@@ -473,8 +473,13 @@
 
         if puma_lib_dir
           log "* Pruning Bundler environment"
+
+          home = ENV['GEM_HOME']
+
           Bundler.with_clean_env do
 
+            ENV['GEM_HOME'] = home
+
             wild = File.expand_path(File.join(puma_lib_dir, 
"../bin/puma-wild"))
 
             wild_loadpath = dirs.join(":")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/puma/cluster.rb new/lib/puma/cluster.rb
--- old/lib/puma/cluster.rb     2015-01-20 19:51:31.000000000 +0100
+++ new/lib/puma/cluster.rb     2015-02-12 00:50:14.000000000 +0100
@@ -307,7 +307,7 @@
           if threads.first.respond_to? :backtrace
             log "! WARNING: Detected #{after.size-before.size} Thread(s) 
started in app boot:"
             threads.each do |t|
-              log "! #{t.inspect} - #{t.backtrace.first}"
+              log "! #{t.inspect} - #{t.backtrace ? t.backtrace.first : ''}"
             end
           else
             log "! WARNING: Detected #{after.size-before.size} Thread(s) 
started in app boot"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/puma/const.rb new/lib/puma/const.rb
--- old/lib/puma/const.rb       2015-01-20 19:51:31.000000000 +0100
+++ new/lib/puma/const.rb       2015-02-12 00:50:14.000000000 +0100
@@ -28,7 +28,7 @@
   # too taxing on performance.
   module Const
 
-    PUMA_VERSION = VERSION = "2.11.0".freeze
+    PUMA_VERSION = VERSION = "2.11.1".freeze
     CODE_NAME = "Intrepid Squirrel".freeze
 
     FAST_TRACK_KA_TIMEOUT = 0.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2015-01-20 19:51:31.000000000 +0100
+++ new/metadata        2015-02-12 00:50:14.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: puma
 version: !ruby/object:Gem::Version
-  version: 2.11.0
+  version: 2.11.1
 platform: ruby
 authors:
 - Evan Phoenix
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-01-20 00:00:00.000000000 Z
+date: 2015-02-11 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rack

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to