Hello community,
here is the log from the commit of package rubygem-actionpack-4_2 for
openSUSE:Factory checked in at 2017-03-21 22:50:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-actionpack-4_2 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-actionpack-4_2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-actionpack-4_2"
Tue Mar 21 22:50:35 2017 rev:11 rq:479679 version:4.2.8
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-actionpack-4_2/rubygem-actionpack-4_2.changes
2016-08-25 09:54:42.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-actionpack-4_2.new/rubygem-actionpack-4_2.changes
2017-03-21 22:50:36.497798339 +0100
@@ -1,0 +2,10 @@
+Wed Feb 22 05:29:00 UTC 2017 - [email protected]
+
+- updated to version 4.2.8
+ see installed CHANGELOG.md
+
+ ## Rails 4.2.8 (February 21, 2017) ##
+
+ * No changes.
+
+-------------------------------------------------------------------
Old:
----
actionpack-4.2.7.1.gem
New:
----
actionpack-4.2.8.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-actionpack-4_2.spec ++++++
--- /var/tmp/diff_new_pack.riMzQa/_old 2017-03-21 22:50:37.069717485 +0100
+++ /var/tmp/diff_new_pack.riMzQa/_new 2017-03-21 22:50:37.073716920 +0100
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-actionpack-4_2
#
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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-actionpack-4_2
-Version: 4.2.7.1
+Version: 4.2.8
Release: 0
%define mod_name actionpack
%define mod_full_name %{mod_name}-%{version}
++++++ actionpack-4.2.7.1.gem -> actionpack-4.2.8.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2016-08-11 00:25:28.000000000 +0200
+++ new/CHANGELOG.md 2017-02-21 17:07:01.000000000 +0100
@@ -1,3 +1,8 @@
+## Rails 4.2.8 (February 21, 2017) ##
+
+* No changes.
+
+
## Rails 4.2.7 (July 12, 2016) ##
* 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/action_controller/metal/renderers.rb
new/lib/action_controller/metal/renderers.rb
--- old/lib/action_controller/metal/renderers.rb 2016-08-11
00:25:28.000000000 +0200
+++ new/lib/action_controller/metal/renderers.rb 2017-02-21
17:07:01.000000000 +0100
@@ -85,8 +85,6 @@
# format.csv { render csv: @csvable, filename: @csvable.name }
# end
# end
- # To use renderers and their mime types in more concise ways, see
- # <tt>ActionController::MimeResponds::ClassMethods.respond_to</tt>
def self.add(key, &block)
define_method(_render_with_renderer_method_name(key), &block)
RENDERERS << key.to_sym
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_dispatch/middleware/cookies.rb
new/lib/action_dispatch/middleware/cookies.rb
--- old/lib/action_dispatch/middleware/cookies.rb 2016-08-11
00:25:28.000000000 +0200
+++ new/lib/action_dispatch/middleware/cookies.rb 2017-02-21
17:07:01.000000000 +0100
@@ -311,7 +311,7 @@
handle_options(options)
- if @cookies[name.to_s] != value or options[:expires]
+ if @cookies[name.to_s] != value || options[:expires]
@cookies[name.to_s] = value
@set_cookies[name.to_s] = options
@delete_cookies.delete(name.to_s)
@@ -506,7 +506,7 @@
@parent_jar = parent_jar
@options = options
- secret = key_generator.generate_key(@options[:encrypted_cookie_salt])
+ secret =
key_generator.generate_key(@options[:encrypted_cookie_salt])[0,
ActiveSupport::MessageEncryptor.key_len]
sign_secret =
key_generator.generate_key(@options[:encrypted_signed_cookie_salt])
@encryptor = ActiveSupport::MessageEncryptor.new(secret, sign_secret,
digest: digest, serializer: ActiveSupport::MessageEncryptor::NullSerializer)
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_dispatch/routing/mapper.rb
new/lib/action_dispatch/routing/mapper.rb
--- old/lib/action_dispatch/routing/mapper.rb 2016-08-11 00:25:28.000000000
+0200
+++ new/lib/action_dispatch/routing/mapper.rb 2017-02-21 17:07:01.000000000
+0100
@@ -110,7 +110,7 @@
if options_constraints.is_a?(Hash)
split_constraints path_params, options_constraints
options_constraints.each do |key, default|
- if URL_OPTIONS.include?(key) && (String === default || Fixnum
=== default)
+ if URL_OPTIONS.include?(key) && (String === default || Integer
=== default)
@defaults[key] ||= default
end
end
@@ -790,8 +790,8 @@
end
if options[:constraints].is_a?(Hash)
- defaults = options[:constraints].select do
- |k, v| URL_OPTIONS.include?(k) && (v.is_a?(String) ||
v.is_a?(Fixnum))
+ defaults = options[:constraints].select do |k, v|
+ URL_OPTIONS.include?(k) && (v.is_a?(String) || v.is_a?(Integer))
end
(options[:defaults] ||= {}).reverse_merge!(defaults)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_dispatch/testing/integration.rb
new/lib/action_dispatch/testing/integration.rb
--- old/lib/action_dispatch/testing/integration.rb 2016-08-11
00:25:28.000000000 +0200
+++ new/lib/action_dispatch/testing/integration.rb 2017-02-21
17:07:01.000000000 +0100
@@ -361,6 +361,7 @@
# simultaneously.
def open_session
dup.tap do |session|
+ session.reset!
yield session if block_given?
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_pack/gem_version.rb
new/lib/action_pack/gem_version.rb
--- old/lib/action_pack/gem_version.rb 2016-08-11 00:25:28.000000000 +0200
+++ new/lib/action_pack/gem_version.rb 2017-02-21 17:07:01.000000000 +0100
@@ -7,8 +7,8 @@
module VERSION
MAJOR = 4
MINOR = 2
- TINY = 7
- PRE = "1"
+ TINY = 8
+ PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2016-08-11 00:25:28.000000000 +0200
+++ new/metadata 2017-02-21 17:07:01.000000000 +0100
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: actionpack
version: !ruby/object:Gem::Version
- version: 4.2.7.1
+ version: 4.2.8
platform: ruby
authors:
- David Heinemeier Hansson
autorequire:
bindir: bin
cert_chain: []
-date: 2016-08-10 00:00:00.000000000 Z
+date: 2017-02-21 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: activesupport
@@ -16,14 +16,14 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 4.2.7.1
+ version: 4.2.8
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 4.2.7.1
+ version: 4.2.8
- !ruby/object:Gem::Dependency
name: rack
requirement: !ruby/object:Gem::Requirement
@@ -98,28 +98,28 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 4.2.7.1
+ version: 4.2.8
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 4.2.7.1
+ version: 4.2.8
- !ruby/object:Gem::Dependency
name: activemodel
requirement: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 4.2.7.1
+ version: 4.2.8
type: :development
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 4.2.7.1
+ version: 4.2.8
description: Web apps on Rails. Simple, battle-tested conventions for building
and
testing MVC web applications. Works with any Rack-compatible server.
email: [email protected]
@@ -300,9 +300,8 @@
requirements:
- none
rubyforge_project:
-rubygems_version: 2.6.6
+rubygems_version: 2.6.10
signing_key:
specification_version: 4
summary: Web-flow and rendering framework putting the VC in MVC (part of
Rails).
test_files: []
-has_rdoc: