Hello community,

here is the log from the commit of package rubygem-activemodel-5_0 for 
openSUSE:Factory checked in at 2017-07-10 11:06:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-activemodel-5_0 (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-activemodel-5_0.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-activemodel-5_0"

Mon Jul 10 11:06:39 2017 rev:6 rq:505374 version:5.0.4

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-activemodel-5_0/rubygem-activemodel-5_0.changes
  2017-06-08 14:59:32.496334925 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activemodel-5_0.new/rubygem-activemodel-5_0.changes
     2017-07-10 11:06:42.210064259 +0200
@@ -1,0 +2,16 @@
+Tue Jun 20 06:43:36 UTC 2017 - [email protected]
+
+- updated to version 5.0.4
+ see installed CHANGELOG.md
+
+  ## Rails 5.0.4 (June 19, 2017) ##
+  
+  *   Fix regression in numericality validator when comparing Decimal and 
Float input 
+      values with more scale than the schema.
+  
+      *Bradley Priest*
+  
+  
+  ## Rails 5.0.3 (May 12, 2017) ##
+
+-------------------------------------------------------------------

Old:
----
  activemodel-5.0.3.gem

New:
----
  activemodel-5.0.4.gem

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

Other differences:
------------------
++++++ rubygem-activemodel-5_0.spec ++++++
--- /var/tmp/diff_new_pack.eHTw4y/_old  2017-07-10 11:06:43.029948475 +0200
+++ /var/tmp/diff_new_pack.eHTw4y/_new  2017-07-10 11:06:43.029948475 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-activemodel-5_0
-Version:        5.0.3
+Version:        5.0.4
 Release:        0
 %define mod_name activemodel
 %define mod_full_name %{mod_name}-%{version}

++++++ activemodel-5.0.3.gem -> activemodel-5.0.4.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2017-05-12 22:03:27.000000000 +0200
+++ new/CHANGELOG.md    2017-06-19 23:57:05.000000000 +0200
@@ -1,3 +1,13 @@
+## Rails 5.0.4 (June 19, 2017) ##
+
+*   Fix regression in numericality validator when comparing Decimal and Float 
input 
+    values with more scale than the schema.
+
+    *Bradley Priest*
+
+
+## Rails 5.0.3 (May 12, 2017) ##
+
 *   The original string assigned to a model attribute is no longer incorrectly
     frozen.
 
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_model/gem_version.rb 
new/lib/active_model/gem_version.rb
--- old/lib/active_model/gem_version.rb 2017-05-12 22:03:27.000000000 +0200
+++ new/lib/active_model/gem_version.rb 2017-06-19 23:57:05.000000000 +0200
@@ -7,7 +7,7 @@
   module VERSION
     MAJOR = 5
     MINOR = 0
-    TINY  = 3
+    TINY  = 4
     PRE   = nil
 
     STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_model/validations/numericality.rb 
new/lib/active_model/validations/numericality.rb
--- old/lib/active_model/validations/numericality.rb    2017-05-12 
22:03:27.000000000 +0200
+++ new/lib/active_model/validations/numericality.rb    2017-06-19 
23:57:05.000000000 +0200
@@ -39,7 +39,9 @@
           return
         end
 
-        unless raw_value.is_a?(Numeric)
+        if raw_value.is_a?(Numeric)
+          value = raw_value
+        else
           value = parse_raw_value_as_a_number(raw_value)
         end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2017-05-12 22:03:27.000000000 +0200
+++ new/metadata        2017-06-19 23:57:05.000000000 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activemodel
 version: !ruby/object:Gem::Version
-  version: 5.0.3
+  version: 5.0.4
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2017-05-12 00:00:00.000000000 Z
+date: 2017-06-19 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 5.0.3
+        version: 5.0.4
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 5.0.3
+        version: 5.0.4
 description: A toolkit for building modeling frameworks like Active Record. 
Rich support
   for attributes, callbacks, validations, serialization, internationalization, 
and
   testing.
@@ -113,9 +113,8 @@
       version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.10
+rubygems_version: 2.6.12
 signing_key: 
 specification_version: 4
 summary: A toolkit for building modeling frameworks (part of Rails).
 test_files: []
-has_rdoc: 


Reply via email to