Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rubygem-activemodel-6.0 for
openSUSE:Factory checked in at 2021-07-02 13:27:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-activemodel-6.0 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-activemodel-6.0.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-activemodel-6.0"
Fri Jul 2 13:27:19 2021 rev:11 rq:902950 version:6.0.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-activemodel-6.0/rubygem-activemodel-6.0.changes
2020-10-18 16:34:32.484841188 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-activemodel-6.0.new.2625/rubygem-activemodel-6.0.changes
2021-07-02 13:28:11.812420842 +0200
@@ -1,0 +2,27 @@
+Thu Jun 24 16:50:25 UTC 2021 - Stephan Kulow <[email protected]>
+
+updated to version 6.0.4
+ see installed CHANGELOG.md
+
+ ## Rails 6.0.4 (June 15, 2021) ##
+
+ * No changes.
+
+
+ ## Rails 6.0.3.7 (May 05, 2021) ##
+
+ * No changes.
+
+
+ ## Rails 6.0.3.6 (March 26, 2021) ##
+
+ * No changes.
+
+
+ ## Rails 6.0.3.5 (February 10, 2021) ##
+
+ * No changes.
+
+
+
+-------------------------------------------------------------------
Old:
----
activemodel-6.0.3.4.gem
New:
----
activemodel-6.0.4.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-activemodel-6.0.spec ++++++
--- /var/tmp/diff_new_pack.bbxdIY/_old 2021-07-02 13:28:12.180417986 +0200
+++ /var/tmp/diff_new_pack.bbxdIY/_new 2021-07-02 13:28:12.184417955 +0200
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-activemodel-6.0
#
-# 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
@@ -24,7 +24,7 @@
#
Name: rubygem-activemodel-6.0
-Version: 6.0.3.4
+Version: 6.0.4
Release: 0
%define mod_name activemodel
%define mod_full_name %{mod_name}-%{version}
++++++ activemodel-6.0.3.4.gem -> activemodel-6.0.4.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2020-10-07 18:48:15.000000000 +0200
+++ new/CHANGELOG.md 2021-06-15 22:13:38.000000000 +0200
@@ -1,3 +1,23 @@
+## Rails 6.0.4 (June 15, 2021) ##
+
+* No changes.
+
+
+## Rails 6.0.3.7 (May 05, 2021) ##
+
+* No changes.
+
+
+## Rails 6.0.3.6 (March 26, 2021) ##
+
+* No changes.
+
+
+## Rails 6.0.3.5 (February 10, 2021) ##
+
+* No changes.
+
+
## Rails 6.0.3.4 (October 07, 2020) ##
* No changes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/README.rdoc new/README.rdoc
--- old/README.rdoc 2020-10-07 18:48:15.000000000 +0200
+++ new/README.rdoc 2021-06-15 22:13:38.000000000 +0200
@@ -241,7 +241,7 @@
Source code can be downloaded as part of the Rails project on GitHub
-* https://github.com/rails/rails/tree/master/activemodel
+* https://github.com/rails/rails/tree/main/activemodel
== License
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 2020-10-07 18:48:15.000000000 +0200
+++ new/lib/active_model/gem_version.rb 2021-06-15 22:13:38.000000000 +0200
@@ -9,8 +9,8 @@
module VERSION
MAJOR = 6
MINOR = 0
- TINY = 3
- PRE = "4"
+ TINY = 4
+ 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/registry.rb
new/lib/active_model/type/registry.rb
--- old/lib/active_model/type/registry.rb 2020-10-07 18:48:15.000000000
+0200
+++ new/lib/active_model/type/registry.rb 2021-06-15 22:13:38.000000000
+0200
@@ -9,8 +9,10 @@
end
def register(type_name, klass = nil, **options, &block)
- block ||= proc { |_, *args| klass.new(*args) }
- block.ruby2_keywords if block.respond_to?(:ruby2_keywords)
+ unless block_given?
+ block = proc { |_, *args| klass.new(*args) }
+ block.ruby2_keywords if block.respond_to?(:ruby2_keywords)
+ end
registrations << registration_klass.new(type_name, block, **options)
end
@@ -31,8 +33,8 @@
Registration
end
- def find_registration(symbol, *args)
- registrations.find { |r| r.matches?(symbol, *args) }
+ def find_registration(symbol, *args, **kwargs)
+ registrations.find { |r| r.matches?(symbol, *args, **kwargs) }
end
end
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 2020-10-07
18:48:15.000000000 +0200
+++ new/lib/active_model/validations/numericality.rb 2021-06-15
22:13:38.000000000 +0200
@@ -89,7 +89,7 @@
def parse_as_number(raw_value)
if raw_value.is_a?(Float)
- raw_value.to_d
+ raw_value.to_d(Float::DIG)
elsif raw_value.is_a?(Numeric)
raw_value
elsif is_integer?(raw_value)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2020-10-07 18:48:15.000000000 +0200
+++ new/metadata 2021-06-15 22:13:38.000000000 +0200
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: activemodel
version: !ruby/object:Gem::Version
- version: 6.0.3.4
+ version: 6.0.4
platform: ruby
authors:
- David Heinemeier Hansson
-autorequire:
+autorequire:
bindir: bin
cert_chain: []
-date: 2020-10-07 00:00:00.000000000 Z
+date: 2021-06-15 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: activesupport
@@ -16,14 +16,14 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 6.0.3.4
+ version: 6.0.4
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 6.0.3.4
+ version: 6.0.4
description: A toolkit for building modeling frameworks like Active Record.
Rich support
for attributes, callbacks, validations, serialization, internationalization,
and
testing.
@@ -102,11 +102,11 @@
- MIT
metadata:
bug_tracker_uri: https://github.com/rails/rails/issues
- changelog_uri:
https://github.com/rails/rails/blob/v6.0.3.4/activemodel/CHANGELOG.md
- documentation_uri: https://api.rubyonrails.org/v6.0.3.4/
+ changelog_uri:
https://github.com/rails/rails/blob/v6.0.4/activemodel/CHANGELOG.md
+ documentation_uri: https://api.rubyonrails.org/v6.0.4/
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
- source_code_uri: https://github.com/rails/rails/tree/v6.0.3.4/activemodel
-post_install_message:
+ source_code_uri: https://github.com/rails/rails/tree/v6.0.4/activemodel
+post_install_message:
rdoc_options: []
require_paths:
- lib
@@ -121,8 +121,8 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubygems_version: 3.1.4
-signing_key:
+rubygems_version: 3.1.2
+signing_key:
specification_version: 4
summary: A toolkit for building modeling frameworks (part of Rails).
test_files: []