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-12-23 17:53:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-i18n (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-i18n.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-i18n"

Thu Dec 23 17:53:27 2021 rev:33 rq:942022 version:1.8.11

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-i18n/rubygem-i18n.changes        
2021-04-23 17:50:15.178755731 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-i18n.new.2520/rubygem-i18n.changes      
2021-12-23 17:53:34.203712445 +0100
@@ -1,0 +2,10 @@
+Tue Dec 21 00:32:26 UTC 2021 - Marcus Rueckert <mrueck...@suse.de>
+
+- update to 1.8.11
+  - Fix typo in documentation by @rkh in #565
+  - Improve available locale check in Simple backend by
+    @codealchemy in #566
+  - Fix typo in Simple backend JSON test by @codealchemy in #572
+  - Fix a build error when using Psych 4.0 by @koic in #569
+
+-------------------------------------------------------------------

Old:
----
  i18n-1.8.10.gem

New:
----
  i18n-1.8.11.gem

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

Other differences:
------------------
++++++ rubygem-i18n.spec ++++++
--- /var/tmp/diff_new_pack.4aUx9e/_old  2021-12-23 17:53:34.655712725 +0100
+++ /var/tmp/diff_new_pack.4aUx9e/_new  2021-12-23 17:53:34.659712727 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-i18n
-Version:        1.8.10
+Version:        1.8.11
 Release:        0
 %define mod_name i18n
 %define mod_full_name %{mod_name}-%{version}

++++++ gem2rpm.yml ++++++
--- /var/tmp/diff_new_pack.4aUx9e/_old  2021-12-23 17:53:34.687712745 +0100
+++ /var/tmp/diff_new_pack.4aUx9e/_new  2021-12-23 17:53:34.691712747 +0100
@@ -69,5 +69,11 @@
 #       bar
 #     :post: |-
 #       /bin/echo foo
-#
+
+:preamble: |-
+    %if 0%{?suse_version} && 0%{?suse_version} < 1330
+    %define rb_build_versions ruby25 ruby26
+    %define rb_build_ruby_abis ruby:2.5.0 ruby:2.6.0
+    %endif
+
 

++++++ i18n-1.8.10.gem -> i18n-1.8.11.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/backend/base.rb new/lib/i18n/backend/base.rb
--- old/lib/i18n/backend/base.rb        2021-03-31 00:36:53.000000000 +0200
+++ new/lib/i18n/backend/base.rb        2021-11-02 23:30:14.000000000 +0100
@@ -240,7 +240,11 @@
         # toplevel keys.
         def load_yml(filename)
           begin
-            YAML.load_file(filename)
+            if YAML.respond_to?(:unsafe_load_file) # Psych 4.0 way
+              YAML.unsafe_load_file(filename)
+            else
+              YAML.load_file(filename)
+            end
           rescue TypeError, ScriptError, StandardError => e
             raise InvalidLocaleData.new(filename, e.inspect)
           end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/i18n/backend/simple.rb 
new/lib/i18n/backend/simple.rb
--- old/lib/i18n/backend/simple.rb      2021-03-31 00:36:53.000000000 +0200
+++ new/lib/i18n/backend/simple.rb      2021-11-02 23:30:14.000000000 +0100
@@ -35,8 +35,7 @@
         def store_translations(locale, data, options = EMPTY_HASH)
           if I18n.enforce_available_locales &&
             I18n.available_locales_initialized? &&
-            !I18n.available_locales.include?(locale.to_sym) &&
-            !I18n.available_locales.include?(locale.to_s)
+            !I18n.locale_available?(locale)
             return data
           end
           locale = locale.to_sym
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/i18n/locale/fallbacks.rb 
new/lib/i18n/locale/fallbacks.rb
--- old/lib/i18n/locale/fallbacks.rb    2021-03-31 00:36:53.000000000 +0200
+++ new/lib/i18n/locale/fallbacks.rb    2021-11-02 23:30:14.000000000 +0100
@@ -46,7 +46,7 @@
 #   fallbacks[:"ar-PS"] # => [:"ar-PS", :ar, :"he-IL", :he, :"en-US", :en]
 #   fallbacks[:"ar-EG"] # => [:"ar-EG", :ar, :"en-US", :en]
 #
-#   # people speaking Sami as spoken in Finnland also speak Swedish and 
Finnish as spoken in Finnland
+#   # people speaking Sami as spoken in Finland also speak Swedish and Finnish 
as spoken in Finland
 #   fallbacks.map(:sms => [:"se-FI", :"fi-FI"])
 #   fallbacks[:sms] # => [:sms, :"se-FI", :se, :"fi-FI", :fi, :"en-US", :en]
 
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     2021-03-31 00:36:53.000000000 +0200
+++ new/lib/i18n/version.rb     2021-11-02 23:30:14.000000000 +0100
@@ -1,5 +1,5 @@
 # frozen_string_literal: true
 
 module I18n
-  VERSION = "1.8.10"
+  VERSION = "1.8.11"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2021-03-31 00:36:53.000000000 +0200
+++ new/metadata        2021-11-02 23:30:14.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: i18n
 version: !ruby/object:Gem::Version
-  version: 1.8.10
+  version: 1.8.11
 platform: ruby
 authors:
 - Sven Fuchs
@@ -13,7 +13,7 @@
 autorequire:
 bindir: bin
 cert_chain: []
-date: 2021-03-30 00:00:00.000000000 Z
+date: 2021-11-02 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   requirement: !ruby/object:Gem::Requirement

Reply via email to