Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-i18n for openSUSE:Factory 
checked in at 2021-01-21 21:55:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-i18n (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-i18n.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-i18n"

Thu Jan 21 21:55:03 2021 rev:29 rq:864571 version:1.8.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-i18n/rubygem-i18n.changes        
2020-08-18 14:03:30.114325833 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-i18n.new.28504/rubygem-i18n.changes     
2021-01-21 21:55:04.961786753 +0100
@@ -1,0 +2,7 @@
+Wed Jan 20 07:35:40 UTC 2021 - Manuel Schnitzer <mschnit...@suse.com>
+
+- updated to version 1.8.7
+
+  * Fixed a regression with fallback logic: see issues #547, #546 and #542.
+
+-------------------------------------------------------------------

Old:
----
  i18n-1.8.5.gem

New:
----
  i18n-1.8.7.gem

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

Other differences:
------------------
++++++ rubygem-i18n.spec ++++++
--- /var/tmp/diff_new_pack.EjOe2A/_old  2021-01-21 21:55:05.493786954 +0100
+++ /var/tmp/diff_new_pack.EjOe2A/_new  2021-01-21 21:55:05.493786954 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-i18n
 #
-# 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 i18n
-%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-i18n
-Version:        1.8.5
+Version:        1.8.7
 Release:        0
-Summary:        New wave Internationalization support for Ruby
-License:        MIT
-Group:          Development/Languages/Ruby
-URL:            https://github.com/ruby-i18n/i18n
-Source:         https://rubygems.org/gems/%{mod_full_name}.gem
-Source1:        gem2rpm.yml
+%define mod_name i18n
+%define mod_full_name %{mod_name}-%{version}
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  %{ruby >= 2.3.0}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  ruby-macros >= 5
+URL:            https://github.com/ruby-i18n/i18n
+Source:         https://rubygems.org/gems/%{mod_full_name}.gem
+Source1:        gem2rpm.yml
+Summary:        New wave Internationalization support for Ruby
+License:        MIT
+Group:          Development/Languages/Ruby
 
 %description
 New wave Internationalization support for Ruby.

++++++ i18n-1.8.5.gem -> i18n-1.8.7.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/i18n/version.rb new/lib/i18n/version.rb
--- old/lib/i18n/version.rb     2020-07-24 01:18:22.000000000 +0200
+++ new/lib/i18n/version.rb     2021-01-04 11:02:07.000000000 +0100
@@ -1,5 +1,5 @@
 # frozen_string_literal: true
 
 module I18n
-  VERSION = "1.8.5"
+  VERSION = "1.8.7"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/i18n.rb new/lib/i18n.rb
--- old/lib/i18n.rb     2020-07-24 01:18:22.000000000 +0200
+++ new/lib/i18n.rb     2021-01-04 11:02:07.000000000 +0100
@@ -192,7 +192,7 @@
     #  I18n.t(:salutation, { :gender => 'w', :name => 'Smith' })
     #  I18n.t(:salutation, any_hash)
     #
-    def translate(key = nil, *, throw: false, raise: false, locale: nil, 
**options) # TODO deprecate :raise
+    def translate(key = nil, throw: false, raise: false, locale: nil, 
**options) # TODO deprecate :raise
       locale ||= config.locale
       raise Disabled.new('t') if locale == false
       enforce_available_locales!(locale)
@@ -217,8 +217,8 @@
 
     # Wrapper for <tt>translate</tt> that adds <tt>:raise => true</tt>. With
     # this option, if no translation is found, it will raise 
<tt>I18n::MissingTranslationData</tt>
-    def translate!(key, options = EMPTY_HASH)
-      translate(key, **options.merge(:raise => true))
+    def translate!(key, **options)
+      translate(key, **options, raise: true)
     end
     alias :t! :translate!
 
@@ -281,7 +281,7 @@
     #     I18n.transliterate("J??rgen") # => "Juergen"
     #     I18n.transliterate("J??rgen", :locale => :en) # => "Jurgen"
     #     I18n.transliterate("J??rgen", :locale => :de) # => "Juergen"
-    def transliterate(key, *, throw: false, raise: false, locale: nil, 
replacement: nil, **options)
+    def transliterate(key, throw: false, raise: false, locale: nil, 
replacement: nil, **options)
       locale ||= config.locale
       raise Disabled.new('transliterate') if locale == false
       enforce_available_locales!(locale)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2020-07-24 01:18:22.000000000 +0200
+++ new/metadata        2021-01-04 11:02:07.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: i18n
 version: !ruby/object:Gem::Version
-  version: 1.8.5
+  version: 1.8.7
 platform: ruby
 authors:
 - Sven Fuchs
@@ -13,7 +13,7 @@
 autorequire:
 bindir: bin
 cert_chain: []
-date: 2020-07-23 00:00:00.000000000 Z
+date: 2021-01-04 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: concurrent-ruby
@@ -86,10 +86,10 @@
 licenses:
 - MIT
 metadata:
-  bug_tracker_uri: https://github.com/svenfuchs/i18n/issues
-  changelog_uri: https://github.com/svenfuchs/i18n/releases
+  bug_tracker_uri: https://github.com/ruby-i18n/i18n/issues
+  changelog_uri: https://github.com/ruby-i18n/i18n/releases
   documentation_uri: https://guides.rubyonrails.org/i18n.html
-  source_code_uri: https://github.com/svenfuchs/i18n
+  source_code_uri: https://github.com/ruby-i18n/i18n
 post_install_message: |2+
 
   HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
@@ -121,7 +121,7 @@
     - !ruby/object:Gem::Version
       version: 1.3.5
 requirements: []
-rubygems_version: 3.0.3
+rubygems_version: 3.2.3
 signing_key:
 specification_version: 4
 summary: New wave Internationalization support for Ruby

Reply via email to