Hello community, here is the log from the commit of package rubygem-bunny for openSUSE:Factory checked in at 2018-02-22 15:03:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-bunny (Old) and /work/SRC/openSUSE:Factory/.rubygem-bunny.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-bunny" Thu Feb 22 15:03:38 2018 rev:41 rq:578953 version:2.9.2 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-bunny/rubygem-bunny.changes 2018-01-17 21:59:11.648730864 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-bunny.new/rubygem-bunny.changes 2018-02-22 15:03:43.587238797 +0100 @@ -1,0 +2,13 @@ +Thu Feb 22 05:28:28 UTC 2018 - [email protected] + +- updated to version 2.9.2 + see installed ChangeLog.md + +------------------------------------------------------------------- +Tue Jan 16 15:21:30 UTC 2018 - [email protected] + +- Update to version 2.9.1 + + * Changelog not found. + +------------------------------------------------------------------- Old: ---- bunny-2.9.0.gem New: ---- bunny-2.9.2.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-bunny.spec ++++++ --- /var/tmp/diff_new_pack.lcikxZ/_old 2018-02-22 15:03:45.687162629 +0100 +++ /var/tmp/diff_new_pack.lcikxZ/_new 2018-02-22 15:03:45.687162629 +0100 @@ -24,16 +24,10 @@ # Name: rubygem-bunny -Version: 2.9.0 +Version: 2.9.2 Release: 0 %define mod_name bunny %define mod_full_name %{mod_name}-%{version} -# MANUAL -%if 0%{?suse_version} && 0%{?suse_version} < 1330 -%define rb_build_versions ruby22 -%define rb_default_ruby_abi ruby:2.2.0 -%endif -# /MANUAL BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: %{ruby >= 2.2} BuildRequires: %{rubygem gem2rpm} @@ -51,13 +45,12 @@ %description Easy to use, feature complete Ruby client for RabbitMQ 3.3 and later versions. +%prep %gem_unpack %patch0 -p1 find -type f -print0 | xargs -0 touch -r %{S:0} %gem_build -%prep - %build %install ++++++ bunny-2.9.0.gem -> bunny-2.9.2.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ChangeLog.md new/ChangeLog.md --- old/ChangeLog.md 2018-01-08 13:09:43.000000000 +0100 +++ new/ChangeLog.md 2018-02-22 01:59:39.000000000 +0100 @@ -1,3 +1,17 @@ +## Changes between Bunny 2.9.1 and 2.9.2 (unreleased) + +No changes yet. + + +## Changes between Bunny 2.9.0 and 2.9.1 (Jan 11th, 2018) + +### Default CA Certificate Paths are Respected Again + +GitHub issue: [#539](https://github.com/ruby-amqp/bunny/issues/539). + +Contributed by Carl Hörberg. + + ## Changes between Bunny 2.8.0 and 2.9.0 (Jan 8th, 2018) ### Ruby 2.2 Requirement diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.md new/README.md --- old/README.md 2018-01-08 13:09:43.000000000 +0100 +++ new/README.md 2018-02-22 01:59:39.000000000 +0100 @@ -63,11 +63,18 @@ Bunny `1.4.x` and earlier supports RabbitMQ 2.x and 3.x. -## Project Maturity +## Change Log Bunny is a mature library (started in early 2009) with a stable public API. +Change logs per release series: + + * [master](https://github.com/ruby-amqp/bunny/blob/master/ChangeLog.md) + * [2.9.x](https://github.com/ruby-amqp/bunny/blob/2.9.x-stable/ChangeLog.md) + * [2.8.x](https://github.com/ruby-amqp/bunny/blob/2.8.x-stable/ChangeLog.md) + + ## Installation & Bundler Dependency diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bunny.gemspec new/bunny.gemspec --- old/bunny.gemspec 2018-01-08 13:09:43.000000000 +0100 +++ new/bunny.gemspec 2018-02-22 01:59:39.000000000 +0100 @@ -24,7 +24,7 @@ s.email = ["[email protected]"] # Dependencies - s.add_dependency "amq-protocol", ">= 2.2.0" + s.add_dependency "amq-protocol", "~> 2.3.0" # Files. s.has_rdoc = true Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/bunny/transport.rb new/lib/bunny/transport.rb --- old/lib/bunny/transport.rb 2018-01-08 13:09:43.000000000 +0100 +++ new/lib/bunny/transport.rb 2018-02-22 01:59:40.000000000 +0100 @@ -341,7 +341,7 @@ end def prepare_tls_context(opts) - if (opts[:verify_ssl] || opts[:verify_peer] || opts[:verify]).nil? + if opts.values_at(:verify_ssl, :verify_peer, :verify).all?(&:nil?) opts[:verify_peer] = true end @@ -353,7 +353,8 @@ @tls_key = tls_key_from(opts) @tls_certificate_store = opts[:tls_certificate_store] - @tls_ca_certificates = tls_ca_certificates_paths_from(opts) || default_tls_certificates + @tls_ca_certificates = tls_ca_certificates_paths_from(opts) + @tls_ca_certificates = default_tls_certificates if @tls_ca_certificates.empty? @verify_peer = as_boolean(opts[:verify_ssl] || opts[:verify_peer] || opts[:verify]) @tls_context = initialize_tls_context(OpenSSL::SSL::SSLContext.new, opts) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/bunny/version.rb new/lib/bunny/version.rb --- old/lib/bunny/version.rb 2018-01-08 13:09:43.000000000 +0100 +++ new/lib/bunny/version.rb 2018-02-22 01:59:40.000000000 +0100 @@ -2,5 +2,5 @@ module Bunny # @return [String] Version of the library - VERSION = "2.9.0" + VERSION = "2.9.2" end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2018-01-08 13:09:43.000000000 +0100 +++ new/metadata 2018-02-22 01:59:39.000000000 +0100 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: bunny version: !ruby/object:Gem::Version - version: 2.9.0 + version: 2.9.2 platform: ruby authors: - Chris Duncan @@ -12,22 +12,22 @@ autorequire: bindir: bin cert_chain: [] -date: 2018-01-08 00:00:00.000000000 Z +date: 2018-02-22 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: amq-protocol requirement: !ruby/object:Gem::Requirement requirements: - - - ">=" + - - "~>" - !ruby/object:Gem::Version - version: 2.2.0 + version: 2.3.0 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - - ">=" + - - "~>" - !ruby/object:Gem::Version - version: 2.2.0 + version: 2.3.0 description: Easy to use, feature complete Ruby client for RabbitMQ 3.3 and later versions. email: @@ -232,7 +232,7 @@ version: '0' requirements: [] rubyforge_project: -rubygems_version: 2.6.13 +rubygems_version: 2.6.14 signing_key: specification_version: 4 summary: Popular easy to use Ruby client for RabbitMQ ++++++ gem2rpm.yml ++++++ --- /var/tmp/diff_new_pack.lcikxZ/_old 2018-02-22 15:03:45.843156971 +0100 +++ /var/tmp/diff_new_pack.lcikxZ/_new 2018-02-22 15:03:45.843156971 +0100 @@ -15,11 +15,6 @@ # ## used by gem2rpm # :disable_automatic_rdoc_dep: true # ## used by gem2rpm -:preamble: |- - %if 0%{?suse_version} && 0%{?suse_version} < 1330 - %define rb_build_versions ruby22 - %define rb_default_ruby_abi ruby:2.2.0 - %endif # :preamble: |- # BuildRequires: foobar # Requires: foobar
