Hello community,

here is the log from the commit of package rubygem-activemodel-5_1 for 
openSUSE:Factory checked in at 2019-04-01 12:36:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-activemodel-5_1 (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-activemodel-5_1.new.25356 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-activemodel-5_1"

Mon Apr  1 12:36:11 2019 rev:7 rq:689684 version:5.1.7

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-activemodel-5_1/rubygem-activemodel-5_1.changes
  2019-03-27 16:18:31.967565657 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activemodel-5_1.new.25356/rubygem-activemodel-5_1.changes
       2019-04-01 12:36:15.177853056 +0200
@@ -1,0 +2,10 @@
+Fri Mar 29 05:52:56 UTC 2019 - Stephan Kulow <co...@suse.com>
+
+- updated to version 5.1.7
+ see installed CHANGELOG.md
+
+  ## Rails 5.1.7 (March 27, 2019) ##
+  
+  *   No changes.
+
+-------------------------------------------------------------------

Old:
----
  activemodel-5.1.6.2.gem

New:
----
  activemodel-5.1.7.gem

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

Other differences:
------------------
++++++ rubygem-activemodel-5_1.spec ++++++
--- /var/tmp/diff_new_pack.5gODw9/_old  2019-04-01 12:36:16.009853463 +0200
+++ /var/tmp/diff_new_pack.5gODw9/_new  2019-04-01 12:36:16.013853465 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-activemodel-5_1
-Version:        5.1.6.2
+Version:        5.1.7
 Release:        0
 %define mod_name activemodel
 %define mod_full_name %{mod_name}-%{version}

++++++ activemodel-5.1.6.2.gem -> activemodel-5.1.7.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2019-03-13 17:45:23.000000000 +0100
+++ new/CHANGELOG.md    2019-03-28 03:46:03.000000000 +0100
@@ -1,3 +1,8 @@
+## Rails 5.1.7 (March 27, 2019) ##
+
+*   No changes.
+
+
 ## Rails 5.1.6.2 (March 11, 2019) ##
 
 *   No changes.
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 2019-03-13 17:45:23.000000000 +0100
+++ new/lib/active_model/gem_version.rb 2019-03-28 03:46:03.000000000 +0100
@@ -7,8 +7,8 @@
   module VERSION
     MAJOR = 5
     MINOR = 1
-    TINY  = 6
-    PRE   = "2"
+    TINY  = 7
+    PRE   = nil
 
     STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_model/type/helpers/time_value.rb 
new/lib/active_model/type/helpers/time_value.rb
--- old/lib/active_model/type/helpers/time_value.rb     2019-03-13 
17:45:23.000000000 +0100
+++ new/lib/active_model/type/helpers/time_value.rb     2019-03-28 
03:46:03.000000000 +0100
@@ -1,3 +1,4 @@
+require "active_support/core_ext/string/zones"
 require "active_support/core_ext/time/zones"
 
 module ActiveModel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_model/type/time.rb 
new/lib/active_model/type/time.rb
--- old/lib/active_model/type/time.rb   2019-03-13 17:45:23.000000000 +0100
+++ new/lib/active_model/type/time.rb   2019-03-28 03:46:03.000000000 +0100
@@ -16,6 +16,8 @@
         case value
         when ::String
           value = "2000-01-01 #{value}"
+          time_hash = ::Date._parse(value)
+          return if time_hash[:hour].nil?
         when ::Time
           value = value.change(year: 2000, day: 1, month: 1)
         end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_model/type/value.rb 
new/lib/active_model/type/value.rb
--- old/lib/active_model/type/value.rb  2019-03-13 17:45:23.000000000 +0100
+++ new/lib/active_model/type/value.rb  2019-03-28 03:46:03.000000000 +0100
@@ -84,6 +84,10 @@
         false
       end
 
+      def force_equality?(_value) # :nodoc:
+        false
+      end
+
       def map(value) # :nodoc:
         yield value
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2019-03-13 17:45:23.000000000 +0100
+++ new/metadata        2019-03-28 03:46:03.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activemodel
 version: !ruby/object:Gem::Version
-  version: 5.1.6.2
+  version: 5.1.7
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2019-03-13 00:00:00.000000000 Z
+date: 2019-03-28 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 5.1.6.2
+        version: 5.1.7
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 5.1.6.2
+        version: 5.1.7
 description: A toolkit for building modeling frameworks like Active Record. 
Rich support
   for attributes, callbacks, validations, serialization, internationalization, 
and
   testing.
@@ -93,8 +93,8 @@
 licenses:
 - MIT
 metadata:
-  source_code_uri: https://github.com/rails/rails/tree/v5.1.6.2/activemodel
-  changelog_uri: 
https://github.com/rails/rails/blob/v5.1.6.2/activemodel/CHANGELOG.md
+  source_code_uri: https://github.com/rails/rails/tree/v5.1.7/activemodel
+  changelog_uri: 
https://github.com/rails/rails/blob/v5.1.7/activemodel/CHANGELOG.md
 post_install_message: 
 rdoc_options: []
 require_paths:


Reply via email to