Path to this page:
Subject: CVS commit: pkgsrc/www/ruby-actionpack61
From: Takahiro Kambe
Date: 2021-07-04 10:01:38
Message id: 20210704080138.DA8E8FA7D@cvs.NetBSD.org
Log Message:
www/ruby-actionpack61: update to 6.1.4
Action Pack
* Ignore file fixtures on db:fixtures:load (Kevin Sjöberg)
* Fix ActionController::Live controller test deadlocks by removing the
body buffer size limit for tests. (Dylan Thacker-Smith)
* Correctly place optional path parameter booleans.
Previously, if you specify a url parameter that is part of the path
as false it would include that part of the path as parameter for
example:
get "(/optional/:optional_id)/things" => "foo#foo", as: \
:things
things_path(optional_id: false) # => /things?optional_id=false
After this change, true and false will be treated the same when used
as optional path parameters. Meaning now:
get '(this/:my_bool)/that' as: :that
that_path(my_bool: true) # => `/this/true/that`
that_path(my_bool: false) # => `/this/false/that`
(Adam Hess)
* Add support for 'private, no-store' Cache-Control headers.
Previously, 'no-store' was exclusive; no other directives could be
specified. (Alex Smith)
Files: