Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rubygem-rubyzip for openSUSE:Factory
checked in at 2021-07-13 22:37:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rubyzip (Old)
and /work/SRC/openSUSE:Factory/.rubygem-rubyzip.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rubyzip"
Tue Jul 13 22:37:00 2021 rev:19 rq:905666 version:2.3.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-rubyzip/rubygem-rubyzip.changes
2020-03-17 13:09:59.097791578 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-rubyzip.new.2625/rubygem-rubyzip.changes
2021-07-13 22:37:14.650220841 +0200
@@ -1,0 +2,9 @@
+Sun Jul 11 11:01:52 UTC 2021 - Manuel Schnitzer <[email protected]>
+
+- updated to version 2.3.2
+
+ * A "dummy" release to warn about breaking changes coming in version 3.0.
+ This updated version uses the Gem `post_install_message` instead of
+ printing to `STDERR`.
+
+-------------------------------------------------------------------
Old:
----
rubyzip-2.3.0.gem
New:
----
rubyzip-2.3.2.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-rubyzip.spec ++++++
--- /var/tmp/diff_new_pack.v9bGuq/_old 2021-07-13 22:37:15.086217329 +0200
+++ /var/tmp/diff_new_pack.v9bGuq/_new 2021-07-13 22:37:15.090217298 +0200
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-rubyzip
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,26 +16,28 @@
#
-%define mod_name rubyzip
-%define mod_full_name %{mod_name}-%{version}
#
# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
# All sections marked as MANUAL, license headers, summaries and descriptions
# can be maintained in that file. Please consult this file before editing any
# of those fields
#
+
Name: rubygem-rubyzip
-Version: 2.3.0
+Version: 2.3.2
Release: 0
-Summary: Ruby module for reading and writing zip files
-License: BSD-2-Clause
-Group: Development/Languages/Ruby
-URL: https://github.com/rubyzip/rubyzip
-Source: https://rubygems.org/gems/%{mod_full_name}.gem
-Source1: gem2rpm.yml
+%define mod_name rubyzip
+%define mod_full_name %{mod_name}-%{version}
+BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: %{ruby >= 2.4}
BuildRequires: %{rubygem gem2rpm}
BuildRequires: ruby-macros >= 5
+URL: http://github.com/rubyzip/rubyzip
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
+Source1: gem2rpm.yml
+Summary: Ruby module for reading and writing zip files
+License: BSD-2-Clause
+Group: Development/Languages/Ruby
%description
rubyzip is a ruby module for reading and writing zip files.
++++++ rubyzip-2.3.0.gem -> rubyzip-2.3.2.gem ++++++
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/zip/version.rb new/lib/zip/version.rb
--- old/lib/zip/version.rb 2020-03-14 13:02:01.000000000 +0100
+++ new/lib/zip/version.rb 2021-07-05 21:14:58.000000000 +0200
@@ -1,3 +1,3 @@
module Zip
- VERSION = '2.3.0'
+ VERSION = '2.3.2'
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2020-03-14 13:02:01.000000000 +0100
+++ new/metadata 2021-07-05 21:14:58.000000000 +0200
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: rubyzip
version: !ruby/object:Gem::Version
- version: 2.3.0
+ version: 2.3.2
platform: ruby
authors:
- Alexander Simonov
autorequire:
bindir: bin
cert_chain: []
-date: 2020-03-14 00:00:00.000000000 Z
+date: 2021-07-05 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: coveralls
@@ -146,11 +146,27 @@
- BSD 2-Clause
metadata:
bug_tracker_uri: https://github.com/rubyzip/rubyzip/issues
- changelog_uri: https://github.com/rubyzip/rubyzip/blob/v2.3.0/Changelog.md
- documentation_uri: https://www.rubydoc.info/gems/rubyzip/2.3.0
- source_code_uri: https://github.com/rubyzip/rubyzip/tree/v2.3.0
+ changelog_uri: https://github.com/rubyzip/rubyzip/blob/v2.3.2/Changelog.md
+ documentation_uri: https://www.rubydoc.info/gems/rubyzip/2.3.2
+ source_code_uri: https://github.com/rubyzip/rubyzip/tree/v2.3.2
wiki_uri: https://github.com/rubyzip/rubyzip/wiki
-post_install_message:
+post_install_message: |
+ RubyZip 3.0 is coming!
+ **********************
+
+ The public API of some Rubyzip classes has been modernized to use named
+ parameters for optional arguments. Please check your usage of the
+ following classes:
+ * `Zip::File`
+ * `Zip::Entry`
+ * `Zip::InputStream`
+ * `Zip::OutputStream`
+
+ Please ensure that your Gemfiles and .gemspecs are suitably restrictive
+ to avoid an unexpected breakage when 3.0 is released (e.g. ~> 2.3.0).
+ See https://github.com/rubyzip/rubyzip for details. The Changelog also
+ lists other enhancements and bugfixes that have been implemented since
+ version 2.3.0.
rdoc_options: []
require_paths:
- lib
@@ -165,7 +181,7 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubygems_version: 3.0.3
+rubygems_version: 3.1.4
signing_key:
specification_version: 4
summary: rubyzip is a ruby module for reading and writing zip files