Received: by mail.netbsd.org (Postfix, from userid 605) id 5EE2C84E86; Sun, 24 Apr 2022 14:43:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 96AA784D35 for ; Sun, 24 Apr 2022 14:43:11 +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 a1iiQkOHXBOB for ; Sun, 24 Apr 2022 14:43:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EDB7E84CEF for ; Sun, 24 Apr 2022 14:43:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E067EFB1A; Sun, 24 Apr 2022 14:43:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1650811390263830" MIME-Version: 1.0 Date: Sun, 24 Apr 2022 14:43:10 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/www/ruby-puma To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20220424144310.E067EFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1650811390263830 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Apr 24 14:43:10 UTC 2022 Modified Files: pkgsrc/www/ruby-puma: Makefile distinfo Log Message: www/ruby-puma: update to 5.6.4 5.6.4 (2022-03-30) Security * Close several HTTP Request Smuggling exploits (CVE-2022-24790) 5.6.2 (2022-02-11) Bugfix/Security * Response body will always be closed. (GHSA-rmj8-8hhh-gv5h, related to #2809) 5.6.1 (2022-01-26) Bugfixes * Reverted a commit which appeared to be causing occasional blank header values (#2809) 5.6.0 (2022-01-25) Features * Support localhost integration in ssl_bind (#2764, #2708) * Allow backlog parameter to be set with ssl_bind DSL (#2780) * Remove yaml (psych) requirement in StateFile (#2784) * Allow culling of oldest workers, previously was only youngest (#2773, #2794) * Add worker_check_interval configuration option (#2759) * Always send lowlevel_error response to client (#2731, #2341) * Support for cert_pem and key_pem with ssl_bind DSL (#2728) Bugfixes * Keep thread names under 15 characters, prevents breakage on some OSes (#2733) * Fix two 'old-style-definition' compile warning (#2807, #2806) * Log environment correctly using option value (#2799) * Fix warning from Ruby master (will be 3.2.0) (#2785) * extconf.rb - fix openssl with old Windows builds (#2757) * server.rb - rescue handling (Errno::EBADF) for @notify.close (#2745) Refactor * server.rb - refactor code using @options[:remote_address] (#2742) * [jruby] a couple refactorings - avoid copy-ing bytes (#2730) To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/www/ruby-puma/Makefile cvs rdiff -u -r1.29 -r1.30 pkgsrc/www/ruby-puma/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1650811390263830 Content-Disposition: inline Content-Length: 1429 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/ruby-puma/Makefile diff -u pkgsrc/www/ruby-puma/Makefile:1.32 pkgsrc/www/ruby-puma/Makefile:1.33 --- pkgsrc/www/ruby-puma/Makefile:1.32 Sat Dec 11 15:38:56 2021 +++ pkgsrc/www/ruby-puma/Makefile Sun Apr 24 14:43:10 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.32 2021/12/11 15:38:56 taca Exp $ +# $NetBSD: Makefile,v 1.33 2022/04/24 14:43:10 taca Exp $ -DISTNAME= puma-5.5.2 +DISTNAME= puma-5.6.4 CATEGORIES= www MAINTAINER= taca@NetBSD.org Index: pkgsrc/www/ruby-puma/distinfo diff -u pkgsrc/www/ruby-puma/distinfo:1.29 pkgsrc/www/ruby-puma/distinfo:1.30 --- pkgsrc/www/ruby-puma/distinfo:1.29 Sat Dec 11 15:38:56 2021 +++ pkgsrc/www/ruby-puma/distinfo Sun Apr 24 14:43:10 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.29 2021/12/11 15:38:56 taca Exp $ +$NetBSD: distinfo,v 1.30 2022/04/24 14:43:10 taca Exp $ -BLAKE2s (puma-5.5.2.gem) = 61957e6cb4eea21bb70c1013f7ed63484dc26abdb26926ca8ca4febe51622d5b -SHA512 (puma-5.5.2.gem) = dcc6d35bc4907ad3b6cfbfb902caa2ba763114c29fab6f60b3b46d5294f6e1744124ffea2e665b288889215ce6dcc547047246a8c96fc615c2c16fd156b85d71 -Size (puma-5.5.2.gem) = 203776 bytes +BLAKE2s (puma-5.6.4.gem) = 1e05a0b413a9f93a0688eb3fd55e67916fa26ffdc8a94ee31e61a6cf2649db7a +SHA512 (puma-5.6.4.gem) = 07d58f2f10ca82ff8cf1b0bee548f749953ea0500d793ae985a9648746eaabb0123d77bb2adb745b5e1c230c47995080e201819577b662745ae85e499469dab3 +Size (puma-5.6.4.gem) = 207360 bytes --_----------=_1650811390263830--