Received: by mail.netbsd.org (Postfix, from userid 605) id 6791E84F2D; Tue, 6 Jul 2021 12:45:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9E09284F1F for ; Tue, 6 Jul 2021 12:45:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id P2NDzBs1Sjr9 for ; Tue, 6 Jul 2021 12:45:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 113DA84F1C for ; Tue, 6 Jul 2021 12:45:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 08F0CFA95; Tue, 6 Jul 2021 12:45:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16255755048460" MIME-Version: 1.0 Date: Tue, 6 Jul 2021 12:45:04 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/devel/p5-Data-Validate-IP To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20210706124504.08F0CFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16255755048460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Tue Jul 6 12:45:03 UTC 2021 Modified Files: pkgsrc/devel/p5-Data-Validate-IP: Makefile distinfo Log Message: Update to 0.30 Upstream changes: 0.30 2021-03-29 - Added some more details to the security docs to include mentions of the is_*_ip() functions too. 0.29 2021-03-29 - Fixed a typo in the POD. 0.28 2021-03-29 - Added docs about the security implications of using functions like is_private_ip4() without _also_ calling is_ipv4() first. This was inspired by a recent issue with the Node netmask package. See https://sick.codes/universal-netmask-npm-package-used-by-270000-projects-vulnerable-to-octal-input-data-server-side-request-forgery-remote-file-inclusion-local-file-inclusion-and-more-cve-2021-28918/ for a write up. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/p5-Data-Validate-IP/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/p5-Data-Validate-IP/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16255755048460 Content-Disposition: inline Content-Length: 1815 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-Data-Validate-IP/Makefile diff -u pkgsrc/devel/p5-Data-Validate-IP/Makefile:1.4 pkgsrc/devel/p5-Data-Validate-IP/Makefile:1.5 --- pkgsrc/devel/p5-Data-Validate-IP/Makefile:1.4 Mon May 24 19:50:28 2021 +++ pkgsrc/devel/p5-Data-Validate-IP/Makefile Tue Jul 6 12:45:03 2021 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2021/05/24 19:50:28 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2021/07/06 12:45:03 wen Exp $ -DISTNAME= Data-Validate-IP-0.27 +DISTNAME= Data-Validate-IP-0.30 PKGNAME= p5-${DISTNAME} -PKGREVISION= 3 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Data/} Index: pkgsrc/devel/p5-Data-Validate-IP/distinfo diff -u pkgsrc/devel/p5-Data-Validate-IP/distinfo:1.1 pkgsrc/devel/p5-Data-Validate-IP/distinfo:1.2 --- pkgsrc/devel/p5-Data-Validate-IP/distinfo:1.1 Thu Mar 21 10:12:39 2019 +++ pkgsrc/devel/p5-Data-Validate-IP/distinfo Tue Jul 6 12:45:03 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2019/03/21 10:12:39 he Exp $ +$NetBSD: distinfo,v 1.2 2021/07/06 12:45:03 wen Exp $ -SHA1 (Data-Validate-IP-0.27.tar.gz) = da24fd6404359e475f65d35cb4341db74c48f48a -RMD160 (Data-Validate-IP-0.27.tar.gz) = 6a43776e100713bdc8a22e0fb5cd1489d6ce1d2e -SHA512 (Data-Validate-IP-0.27.tar.gz) = 5a93f730d53e7adcac4fe5e227b69a44e58cdc94b0081d79978547263095e97c3690c8c6fc6664fc8e4b230ab4c360beda22e6600a3c7abe5e61129ee70553b8 -Size (Data-Validate-IP-0.27.tar.gz) = 38139 bytes +SHA1 (Data-Validate-IP-0.30.tar.gz) = 2f16d7f0ed97c6762e482eea208ed8886487bd2d +RMD160 (Data-Validate-IP-0.30.tar.gz) = d47a7e02a190a0a633454d7396f79952771015e7 +SHA512 (Data-Validate-IP-0.30.tar.gz) = ac556445f1eec0440be17263bcffce46d0c3b719d3c64022bcb3fc6d1191ed9de94c0e4d6b2c3c5c1704dc7945b14a5c87abfcf2b7dc43ec4f10a4cc6629b761 +Size (Data-Validate-IP-0.30.tar.gz) = 41761 bytes --_----------=_16255755048460--