Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-puma-4 for openSUSE:Factory checked in at 2022-02-24 18:20:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-puma-4 (Old) and /work/SRC/openSUSE:Factory/.rubygem-puma-4.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-puma-4" Thu Feb 24 18:20:18 2022 rev:4 rq:956119 version:4.3.11 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-puma-4/rubygem-puma-4.changes 2022-02-07 23:38:50.198138085 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-puma-4.new.1958/rubygem-puma-4.changes 2022-02-24 18:23:33.974656711 +0100 @@ -1,0 +2,12 @@ +Tue Feb 15 07:34:38 UTC 2022 - Stephan Kulow <[email protected]> + +updated to version 4.3.11 + see installed History.md + + ## 4.3.11 / 2022-02-11 + + * Security + * Always close the response body (GHSA-rmj8-8hhh-gv5h) + + +------------------------------------------------------------------- Old: ---- puma-4.3.10.gem New: ---- puma-4.3.11.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-puma-4.spec ++++++ --- /var/tmp/diff_new_pack.dtThdA/_old 2022-02-24 18:23:34.410656597 +0100 +++ /var/tmp/diff_new_pack.dtThdA/_new 2022-02-24 18:23:34.414656596 +0100 @@ -24,7 +24,7 @@ # Name: rubygem-puma-4 -Version: 4.3.10 +Version: 4.3.11 Release: 0 %define mod_name puma %define mod_full_name %{mod_name}-%{version} ++++++ puma-4.3.10.gem -> puma-4.3.11.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/History.md new/History.md --- old/History.md 2021-10-13 01:12:41.000000000 +0200 +++ new/History.md 1980-01-01 01:00:00.000000000 +0100 @@ -1,3 +1,8 @@ +## 4.3.11 / 2022-02-11 + +* Security + * Always close the response body (GHSA-rmj8-8hhh-gv5h) + ## 4.3.10 / 2021-10-12 * Bugfixes Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ 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 2021-10-13 01:12:41.000000000 +0200 +++ new/lib/puma/const.rb 1980-01-01 01:00:00.000000000 +0100 @@ -100,7 +100,7 @@ # too taxing on performance. module Const - PUMA_VERSION = VERSION = "4.3.10".freeze + PUMA_VERSION = VERSION = "4.3.11".freeze CODE_NAME = "Mysterious Traveller".freeze PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/puma/server.rb new/lib/puma/server.rb --- old/lib/puma/server.rb 2021-10-13 01:12:41.000000000 +0200 +++ new/lib/puma/server.rb 1980-01-01 01:00:00.000000000 +0100 @@ -873,11 +873,14 @@ end ensure - uncork_socket client + begin + uncork_socket client - body.close - req.tempfile.unlink if req.tempfile - res_body.close if res_body.respond_to? :close + body.close + req.tempfile.unlink if req.tempfile + ensure + res_body.close if res_body.respond_to? :close + end after_reply.each { |o| o.call } end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2021-10-13 01:12:41.000000000 +0200 +++ new/metadata 1980-01-01 01:00:00.000000000 +0100 @@ -1,24 +1,24 @@ --- !ruby/object:Gem::Specification name: puma version: !ruby/object:Gem::Version - version: 4.3.10 + version: 4.3.11 platform: ruby authors: - Evan Phoenix autorequire: bindir: bin cert_chain: [] -date: 2021-10-12 00:00:00.000000000 Z +date: 1980-01-01 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency + name: nio4r requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '2.0' - name: nio4r - prerelease: false type: :runtime + prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" @@ -136,7 +136,7 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubygems_version: 3.1.6 +rubygems_version: 3.2.26 signing_key: specification_version: 4 summary: Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for
