Received: by mail.netbsd.org (Postfix, from userid 605) id D2FDA84F90; Sun, 4 Feb 2024 06:59:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0FE7784E87 for ; Sun, 4 Feb 2024 06:59:18 +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 S9RXA7pEa3Gg for ; Sun, 4 Feb 2024 06:59:17 +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 6E60984CC9 for ; Sun, 4 Feb 2024 06:59:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5E3D3FA42; Sun, 4 Feb 2024 06:59:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1707029957216540" MIME-Version: 1.0 Date: Sun, 4 Feb 2024 06:59:17 +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: <20240204065917.5E3D3FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1707029957216540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Feb 4 06:59:17 UTC 2024 Modified Files: pkgsrc/www/ruby-puma: Makefile distinfo Log Message: www/ruby-puma: update to 6.4.2 6.4.1 (2024-01-03) Bugfixes * DSL#warn_if_in_single_mode - fixup when workers set via CLI (#3256) * Fix idle-timeout not working in cluster mode (#3235, #3228, #3282, #3283) * Fix worker 0 timing out during phased restart (#3225, #2786) * context_builder.rb - require openssl if verify_mode != 'none' (#3179) * Make puma cluster process suitable as PID 1 (#3255) * Improve Puma::NullIO consistency with real IO (#3276) * extconf.rb - fixup to detect openssl info in Ruby build (#3271, #3266) * MiniSSL.java - set serialVersionUID, fix RaiseException deprecation (#3270) * dsl.rb - fix warn_if_in_single_mode when WEB_CONCURRENCY is set (#3265, #3264) Maintenance * LOTS of test refactoring to make tests more stable and easier to write - thanks to @MSP-Greg! * Fix bug in tests re: TestPuma::HOST4 (#3254) * Dockerfile for minimal repros: use Ruby 3.2, expect bundler installed (#3245) * fix define_method calls, use Symbol parameter instead of String (#3293) 6.4.2 (2024-01-08) Security * Limit the size of chunk extensions. Without this limit, an attacker could cause unbounded resource (CPU, network bandwidth) consumption. (GHSA-c2f4-cvqm-65w2) To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/www/ruby-puma/Makefile cvs rdiff -u -r1.39 -r1.40 pkgsrc/www/ruby-puma/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1707029957216540 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.43 pkgsrc/www/ruby-puma/Makefile:1.44 --- pkgsrc/www/ruby-puma/Makefile:1.43 Sun Dec 17 16:27:24 2023 +++ pkgsrc/www/ruby-puma/Makefile Sun Feb 4 06:59:17 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.43 2023/12/17 16:27:24 taca Exp $ +# $NetBSD: Makefile,v 1.44 2024/02/04 06:59:17 taca Exp $ -DISTNAME= puma-6.4.0 +DISTNAME= puma-6.4.2 CATEGORIES= www MAINTAINER= taca@NetBSD.org Index: pkgsrc/www/ruby-puma/distinfo diff -u pkgsrc/www/ruby-puma/distinfo:1.39 pkgsrc/www/ruby-puma/distinfo:1.40 --- pkgsrc/www/ruby-puma/distinfo:1.39 Sun Dec 17 16:27:24 2023 +++ pkgsrc/www/ruby-puma/distinfo Sun Feb 4 06:59:17 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.39 2023/12/17 16:27:24 taca Exp $ +$NetBSD: distinfo,v 1.40 2024/02/04 06:59:17 taca Exp $ -BLAKE2s (puma-6.4.0.gem) = e589246cacb923ed2162138c988fb5bcff525d7ec048278e811321693b114f94 -SHA512 (puma-6.4.0.gem) = 3f481bd2bd34ed0d66d86f61d7522a48b4d8bfd36b807a1c47bb3b640bc6050a72f4f710fd4fad16260b560f98050e34faad044a54cb759c7ffe8371c3548c18 -Size (puma-6.4.0.gem) = 228864 bytes +BLAKE2s (puma-6.4.2.gem) = 29c9598361b991cddd54b8512e5193050bac051dae428cc0992d3d3a172c72a7 +SHA512 (puma-6.4.2.gem) = 32bde41a8dbeaf998dc1cc11390ca393e96f12c8d253c023e04304cc1d631bf24a153e2d4183b6a20ae73a9b1daed9acec7f3c8fbb40090a42ca3f5f08f24aeb +Size (puma-6.4.2.gem) = 230912 bytes --_----------=_1707029957216540--