Hello community,
here is the log from the commit of package rubygem-actionpack-5_1 for
openSUSE:Factory checked in at 2018-02-18 11:43:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-actionpack-5_1 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-actionpack-5_1.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-actionpack-5_1"
Sun Feb 18 11:43:48 2018 rev:3 rq:577550 version:5.1.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-actionpack-5_1/rubygem-actionpack-5_1.changes
2017-09-13 22:35:27.056395642 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-actionpack-5_1.new/rubygem-actionpack-5_1.changes
2018-02-18 11:44:02.485988518 +0100
@@ -1,0 +2,18 @@
+Thu Feb 15 05:28:48 UTC 2018 - [email protected]
+
+- updated to version 5.1.5
+ see installed CHANGELOG.md
+
+ ## Rails 5.1.5 (February 14, 2018) ##
+
+ * Fix optimized url helpers when using relative url root
+
+ Fixes #31220.
+
+ *Andrew White*
+
+ * Ensure dev and prod puma configs do not clobber
`ActionDispatch::SystemTesting` defaults. Adds workers: 0 and daemon: false
+
+ *Max Schwenk*
+
+-------------------------------------------------------------------
Old:
----
actionpack-5.1.4.gem
New:
----
actionpack-5.1.5.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-actionpack-5_1.spec ++++++
--- /var/tmp/diff_new_pack.mTJznO/_old 2018-02-18 11:44:03.421954918 +0100
+++ /var/tmp/diff_new_pack.mTJznO/_new 2018-02-18 11:44:03.425954774 +0100
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-actionpack-5_1
#
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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-5_1
-Version: 5.1.4
+Version: 5.1.5
Release: 0
%define mod_name actionpack
%define mod_full_name %{mod_name}-%{version}
++++++ actionpack-5.1.4.gem -> actionpack-5.1.5.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2017-09-08 02:49:01.000000000 +0200
+++ new/CHANGELOG.md 2018-02-14 21:00:41.000000000 +0100
@@ -1,3 +1,15 @@
+## Rails 5.1.5 (February 14, 2018) ##
+
+* Fix optimized url helpers when using relative url root
+
+ Fixes #31220.
+
+ *Andrew White*
+
+* Ensure dev and prod puma configs do not clobber
`ActionDispatch::SystemTesting` defaults. Adds workers: 0 and daemon: false
+
+ *Max Schwenk*
+
## Rails 5.1.4 (September 07, 2017) ##
* Make `take_failed_screenshot` work within engine.
@@ -111,7 +123,7 @@
* Don't include default headers in `ActionController::Metal` responses
The commit e16afe6 introduced an unintentional change of behavior where
the default
- headers were included in responses from `ActionController::Metai` based
controllers.
+ headers were included in responses from `ActionController::Metal` based
controllers.
This is now reverted to the previous behavior of having no default headers.
Fixes #25820.
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_dispatch/routing/route_set.rb
new/lib/action_dispatch/routing/route_set.rb
--- old/lib/action_dispatch/routing/route_set.rb 2017-09-08
02:49:02.000000000 +0200
+++ new/lib/action_dispatch/routing/route_set.rb 2018-02-14
21:00:41.000000000 +0100
@@ -203,6 +203,16 @@
if args.size == arg_size && !inner_options &&
optimize_routes_generation?(t)
options = t.url_options.merge @options
options[:path] = optimized_helper(args)
+
+ original_script_name = options.delete(:original_script_name)
+ script_name = t._routes.find_script_name(options)
+
+ if original_script_name
+ script_name = original_script_name + script_name
+ end
+
+ options[:script_name] = script_name
+
url_strategy.call options
else
super
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_dispatch/system_test_case.rb
new/lib/action_dispatch/system_test_case.rb
--- old/lib/action_dispatch/system_test_case.rb 2017-09-08 02:49:02.000000000
+0200
+++ new/lib/action_dispatch/system_test_case.rb 2018-02-14 21:00:41.000000000
+0100
@@ -1,3 +1,5 @@
+gem "capybara", "~> 2.13"
+
require "capybara/dsl"
require "capybara/minitest"
require "action_controller"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_dispatch/system_testing/server.rb
new/lib/action_dispatch/system_testing/server.rb
--- old/lib/action_dispatch/system_testing/server.rb 2017-09-08
02:49:02.000000000 +0200
+++ new/lib/action_dispatch/system_testing/server.rb 2018-02-14
21:00:41.000000000 +0100
@@ -21,6 +21,8 @@
app,
Port: port,
Threads: "0:1",
+ workers: 0,
+ daemon: false,
Silent: self.class.silence_puma
)
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 2017-09-08 02:49:02.000000000 +0200
+++ new/lib/action_pack/gem_version.rb 2018-02-14 21:00:41.000000000 +0100
@@ -7,7 +7,7 @@
module VERSION
MAJOR = 5
MINOR = 1
- TINY = 4
+ TINY = 5
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2017-09-08 02:49:01.000000000 +0200
+++ new/metadata 2018-02-14 21:00:41.000000000 +0100
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: actionpack
version: !ruby/object:Gem::Version
- version: 5.1.4
+ version: 5.1.5
platform: ruby
authors:
- David Heinemeier Hansson
autorequire:
bindir: bin
cert_chain: []
-date: 2017-09-08 00:00:00.000000000 Z
+date: 2018-02-14 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: activesupport
@@ -16,14 +16,14 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 5.1.4
+ version: 5.1.5
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 5.1.4
+ version: 5.1.5
- !ruby/object:Gem::Dependency
name: rack
requirement: !ruby/object:Gem::Requirement
@@ -92,28 +92,28 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 5.1.4
+ version: 5.1.5
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 5.1.4
+ version: 5.1.5
- !ruby/object:Gem::Dependency
name: activemodel
requirement: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 5.1.4
+ version: 5.1.5
type: :development
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 5.1.4
+ version: 5.1.5
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]
@@ -286,7 +286,9 @@
homepage: http://rubyonrails.org
licenses:
- MIT
-metadata: {}
+metadata:
+ source_code_uri: https://github.com/rails/rails/tree/v5.1.5/actionpack
+ changelog_uri:
https://github.com/rails/rails/blob/v5.1.5/actionpack/CHANGELOG.md
post_install_message:
rdoc_options: []
require_paths:
@@ -304,7 +306,7 @@
requirements:
- none
rubyforge_project:
-rubygems_version: 2.6.13
+rubygems_version: 2.7.3
signing_key:
specification_version: 4
summary: Web-flow and rendering framework putting the VC in MVC (part of
Rails).