Received: by mail.netbsd.org (Postfix, from userid 605) id ECE5B84E93; Sun, 4 Jul 2021 08:01:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7040F84EA5 for ; Sun, 4 Jul 2021 08:01:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xgJgOM7Vxlxc for ; Sun, 4 Jul 2021 08:01:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DF6E384E9F for ; Sun, 4 Jul 2021 08:01:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DA8E8FA7D; Sun, 4 Jul 2021 08:01:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1625385698230940" MIME-Version: 1.0 Date: Sun, 4 Jul 2021 08:01:38 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/www/ruby-actionpack61 To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210704080138.DA8E8FA7D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1625385698230940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: taca Date: Sun Jul 4 08:01:38 UTC 2021 Modified Files: pkgsrc/www/ruby-actionpack61: distinfo 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) To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/ruby-actionpack61/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1625385698230940 Content-Disposition: inline Content-Length: 1135 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/ruby-actionpack61/distinfo diff -u pkgsrc/www/ruby-actionpack61/distinfo:1.4 pkgsrc/www/ruby-actionpack61/distinfo:1.5 --- pkgsrc/www/ruby-actionpack61/distinfo:1.4 Sat May 8 14:08:56 2021 +++ pkgsrc/www/ruby-actionpack61/distinfo Sun Jul 4 08:01:38 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2021/05/08 14:08:56 taca Exp $ +$NetBSD: distinfo,v 1.5 2021/07/04 08:01:38 taca Exp $ -SHA1 (actionpack-6.1.3.2.gem) = 4ef2f70d81935721aaead2c52f2c2edcf26e6daf -RMD160 (actionpack-6.1.3.2.gem) = 7c6bb35491b7a1d3effd7d1da5da2629eef8d93f -SHA512 (actionpack-6.1.3.2.gem) = e312680d1f26313a8004932bb2db3e7646dbfc3017e6e94e534983aac4ac5b3f29d3dbff7c342f1424da018effbf14348f28aa54172d81fe66f203e306c53326 -Size (actionpack-6.1.3.2.gem) = 224768 bytes +SHA1 (actionpack-6.1.4.gem) = 3d3de13048c518bf8571ee1d85d8d7fbbaf2c782 +RMD160 (actionpack-6.1.4.gem) = 13201c9f48570301d17a36c9f37be762b6bf9d77 +SHA512 (actionpack-6.1.4.gem) = c384cf3502d3b2458577dd4efa82a39ff392d8d991873fc2547b2753df6d4b4c73243f7766e5e9869c12a791930aaf7fe5376e2d38bd64637cf88a2071df9642 +Size (actionpack-6.1.4.gem) = 225280 bytes --_----------=_1625385698230940--