Hello community,

here is the log from the commit of package rubygem-actionview-4_2 for 
openSUSE:Factory checked in at 2016-03-18 21:40:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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
    2016-03-07 13:27:56.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-4_2.new/rubygem-actionview-4_2.changes
       2016-03-18 21:40:53.000000000 +0100
@@ -1,0 +2,30 @@
+Tue Mar  8 05:30:10 UTC 2016 - [email protected]
+
+- updated to version 4.2.6
+ see installed CHANGELOG.md
+
+  ## Rails 4.2.6 (March 07, 2016) ##
+  
+  *   Fix stripping the digest from the automatically generated img tag alt
+      attribute when assets are handled by Sprockets >=3.0.
+  
+      *Bart de Water*
+  
+  *   Create a new `ActiveSupport::SafeBuffer` instance when `content_for` is 
flushed.
+  
+      Fixes #19890
+  
+      *Yoong Kang Lim*
+  
+  *   Respect value of `:object` if `:object` is false when rendering.
+  
+      Fixes #22260.
+  
+      *Yuichiro Kaneko*
+  
+  *   Generate `week_field` input values using a 1-based index and not a 
0-based index
+      as per the W3 spec: 
http://www.w3.org/TR/html-markup/datatypes.html#form.data.week
+  
+      *Christoph Geschwind*
+
+-------------------------------------------------------------------

Old:
----
  actionview-4.2.5.2.gem

New:
----
  actionview-4.2.6.gem

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

Other differences:
------------------
++++++ rubygem-actionview-4_2.spec ++++++
--- /var/tmp/diff_new_pack.wb9Y6P/_old  2016-03-18 21:40:54.000000000 +0100
+++ /var/tmp/diff_new_pack.wb9Y6P/_new  2016-03-18 21:40:54.000000000 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-actionview-4_2
-Version:        4.2.5.2
+Version:        4.2.6
 Release:        0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++++++ actionview-4.2.5.2.gem -> actionview-4.2.6.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2016-02-29 20:16:10.000000000 +0100
+++ new/CHANGELOG.md    2016-03-07 23:31:31.000000000 +0100
@@ -1,3 +1,28 @@
+## Rails 4.2.6 (March 07, 2016) ##
+
+*   Fix stripping the digest from the automatically generated img tag alt
+    attribute when assets are handled by Sprockets >=3.0.
+
+    *Bart de Water*
+
+*   Create a new `ActiveSupport::SafeBuffer` instance when `content_for` is 
flushed.
+
+    Fixes #19890
+
+    *Yoong Kang Lim*
+
+*   Respect value of `:object` if `:object` is false when rendering.
+
+    Fixes #22260.
+
+    *Yuichiro Kaneko*
+
+*   Generate `week_field` input values using a 1-based index and not a 0-based 
index
+    as per the W3 spec: 
http://www.w3.org/TR/html-markup/datatypes.html#form.data.week
+
+    *Christoph Geschwind*
+
+
 ## Rails 4.2.5.2 (February 26, 2016) ##
 
 *   Do not allow render with unpermitted parameter.
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/flows.rb new/lib/action_view/flows.rb
--- old/lib/action_view/flows.rb        2016-02-29 20:16:10.000000000 +0100
+++ new/lib/action_view/flows.rb        2016-03-07 23:31:31.000000000 +0100
@@ -15,7 +15,7 @@
 
     # Called by each renderer object to set the layout contents.
     def set(key, value)
-      @content[key] = value
+      @content[key] = ActiveSupport::SafeBuffer.new(value)
     end
 
     # Called by content_for
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  2016-02-29 20:16:10.000000000 +0100
+++ new/lib/action_view/gem_version.rb  2016-03-07 23:31:31.000000000 +0100
@@ -7,8 +7,8 @@
   module VERSION
     MAJOR = 4
     MINOR = 2
-    TINY  = 5
-    PRE   = "2"
+    TINY  = 6
+    PRE   = nil
 
     STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/helpers/asset_tag_helper.rb 
new/lib/action_view/helpers/asset_tag_helper.rb
--- old/lib/action_view/helpers/asset_tag_helper.rb     2016-02-29 
20:16:10.000000000 +0100
+++ new/lib/action_view/helpers/asset_tag_helper.rb     2016-03-07 
23:31:31.000000000 +0100
@@ -236,7 +236,7 @@
       #   image_alt('underscored_file_name.png')
       #   # => Underscored file name
       def image_alt(src)
-        File.basename(src, '.*').sub(/-[[:xdigit:]]{32}\z/, '').tr('-_', ' 
').capitalize
+        File.basename(src, '.*').sub(/-[[:xdigit:]]{32,64}\z/, '').tr('-_', ' 
').capitalize
       end
 
       # Returns an HTML video tag for the +sources+. If +sources+ is a string,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/helpers/tags/week_field.rb 
new/lib/action_view/helpers/tags/week_field.rb
--- old/lib/action_view/helpers/tags/week_field.rb      2016-02-29 
20:16:10.000000000 +0100
+++ new/lib/action_view/helpers/tags/week_field.rb      2016-03-07 
23:31:31.000000000 +0100
@@ -5,7 +5,7 @@
         private
 
           def format_date(value)
-            value.try(:strftime, "%Y-W%W")
+            value.try(:strftime, "%Y-W%V")
           end
       end
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/renderer/partial_renderer.rb 
new/lib/action_view/renderer/partial_renderer.rb
--- old/lib/action_view/renderer/partial_renderer.rb    2016-02-29 
20:16:10.000000000 +0100
+++ new/lib/action_view/renderer/partial_renderer.rb    2016-03-07 
23:31:31.000000000 +0100
@@ -333,7 +333,7 @@
         layout = find_template(layout.to_s, @template_keys)
       end
 
-      object ||= locals[as]
+      object = locals[as] if object.nil? # Respect object when object is false
       locals[as] = object
 
       content = @template.render(view, locals) do |*name|
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2016-02-29 20:16:10.000000000 +0100
+++ new/metadata        2016-03-07 23:31:31.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionview
 version: !ruby/object:Gem::Version
-  version: 4.2.5.2
+  version: 4.2.6
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-02-29 00:00:00.000000000 Z
+date: 2016-03-07 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.5.2
+        version: 4.2.6
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.5.2
+        version: 4.2.6
 - !ruby/object:Gem::Dependency
   name: builder
   requirement: !ruby/object:Gem::Requirement
@@ -98,28 +98,28 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.5.2
+        version: 4.2.6
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.5.2
+        version: 4.2.6
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.5.2
+        version: 4.2.6
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.5.2
+        version: 4.2.6
 description: Simple, battle-tested conventions and helpers for building web 
pages.
 email: [email protected]
 executables: []


Reply via email to