Hello community,

here is the log from the commit of package rubygem-actionview-4_2 for 
openSUSE:Factory checked in at 2015-12-14 10:13:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-actionview-4_2 (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-actionview-4_2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-actionview-4_2"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-actionview-4_2/rubygem-actionview-4_2.changes
    2015-08-27 08:57:42.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-4_2.new/rubygem-actionview-4_2.changes
       2015-12-14 10:13:31.000000000 +0100
@@ -1,0 +2,16 @@
+Fri Nov 13 05:29:38 UTC 2015 - [email protected]
+
+- updated to version 4.2.5
+ see installed CHANGELOG.md
+
+  ## Rails 4.2.5 (November 12, 2015) ##
+  
+  *   Fix `mail_to` when called with `nil` as argument.
+  
+      *Rafael Mendonça França*
+  
+  *   `url_for` does not modify its arguments when generating polymorphic URLs.
+  
+      *Bernerd Schaefer*
+
+-------------------------------------------------------------------

Old:
----
  actionview-4.2.4.gem

New:
----
  actionview-4.2.5.gem

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

Other differences:
------------------
++++++ rubygem-actionview-4_2.spec ++++++
--- /var/tmp/diff_new_pack.4NpTeS/_old  2015-12-14 10:13:32.000000000 +0100
+++ /var/tmp/diff_new_pack.4NpTeS/_new  2015-12-14 10:13:32.000000000 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-actionview-4_2
-Version:        4.2.4
+Version:        4.2.5
 Release:        0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++++++ actionview-4.2.4.gem -> actionview-4.2.5.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2015-08-24 20:23:13.000000000 +0200
+++ new/CHANGELOG.md    2015-11-12 18:05:50.000000000 +0100
@@ -1,3 +1,14 @@
+## Rails 4.2.5 (November 12, 2015) ##
+
+*   Fix `mail_to` when called with `nil` as argument.
+
+    *Rafael Mendonça França*
+
+*   `url_for` does not modify its arguments when generating polymorphic URLs.
+
+    *Bernerd Schaefer*
+
+
 ## Rails 4.2.4 (August 24, 2015) ##
 
 * No Changes *
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/gem_version.rb 
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb  2015-08-24 20:23:13.000000000 +0200
+++ new/lib/action_view/gem_version.rb  2015-11-12 18:05:50.000000000 +0100
@@ -7,7 +7,7 @@
   module VERSION
     MAJOR = 4
     MINOR = 2
-    TINY  = 4
+    TINY  = 5
     PRE   = nil
 
     STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/helpers/url_helper.rb 
new/lib/action_view/helpers/url_helper.rb
--- old/lib/action_view/helpers/url_helper.rb   2015-08-24 20:23:14.000000000 
+0200
+++ new/lib/action_view/helpers/url_helper.rb   2015-11-12 18:05:50.000000000 
+0100
@@ -463,7 +463,7 @@
         }.compact
         extras = extras.empty? ? '' : '?' + extras.join('&')
 
-        encoded_email_address = 
ERB::Util.url_encode(email_address).gsub("%40", "@")
+        encoded_email_address = ERB::Util.url_encode(email_address ? 
email_address.to_str : '').gsub("%40", "@")
         html_options["href"] = "mailto:#{encoded_email_address}#{extras}";
 
         content_tag(:a, name || email_address, html_options, &block)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/routing_url_for.rb 
new/lib/action_view/routing_url_for.rb
--- old/lib/action_view/routing_url_for.rb      2015-08-24 20:23:14.000000000 
+0200
+++ new/lib/action_view/routing_url_for.rb      2015-11-12 18:05:50.000000000 
+0100
@@ -95,10 +95,11 @@
       when :back
         _back_url
       when Array
+        components = options.dup
         if _generate_paths_by_default
-          polymorphic_path(options, options.extract_options!)
+          polymorphic_path(components, components.extract_options!)
         else
-          polymorphic_url(options, options.extract_options!)
+          polymorphic_url(components, components.extract_options!)
         end
       else
         method = _generate_paths_by_default ? :path : :url
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2015-08-24 20:23:13.000000000 +0200
+++ new/metadata        2015-11-12 18:05:50.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionview
 version: !ruby/object:Gem::Version
-  version: 4.2.4
+  version: 4.2.5
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-08-24 00:00:00.000000000 Z
+date: 2015-11-12 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.4
+        version: 4.2.5
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.4
+        version: 4.2.5
 - !ruby/object:Gem::Dependency
   name: builder
   requirement: !ruby/object:Gem::Requirement
@@ -98,28 +98,28 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.4
+        version: 4.2.5
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.4
+        version: 4.2.5
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.4
+        version: 4.2.5
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.4
+        version: 4.2.5
 description: Simple, battle-tested conventions and helpers for building web 
pages.
 email: [email protected]
 executables: []
@@ -248,9 +248,8 @@
 requirements:
 - none
 rubyforge_project: 
-rubygems_version: 2.4.7
+rubygems_version: 2.4.5.1
 signing_key: 
 specification_version: 4
 summary: Rendering framework putting the V in MVC (part of Rails).
 test_files: []
-has_rdoc: 


Reply via email to