Received: by mail.netbsd.org (Postfix, from userid 605) id 7CDD984F2E; Sat, 7 Jan 2023 07:40:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A98DC84F29 for ; Sat, 7 Jan 2023 07:40:48 +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 Ah19buH0JPuL for ; Sat, 7 Jan 2023 07:40:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B99D984D5F for ; Sat, 7 Jan 2023 07:40:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ADD89FA90; Sat, 7 Jan 2023 07:40:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1673077247139400" MIME-Version: 1.0 Date: Sat, 7 Jan 2023 07:40:47 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/lang To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20230107074047.ADD89FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1673077247139400 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: taca Date: Sat Jan 7 07:40:47 UTC 2023 Modified Files: pkgsrc/lang/php: phpversion.mk pkgsrc/lang/php81: distinfo Removed Files: pkgsrc/lang/php81/patches: patch-sapi_fpm_fpm_events_port.c Log Message: lang/php81: update to 8.1.14 PHP 8.1.14 (2023-01-05) - Core: . Fixed bug GH-9905 (constant() behaves inconsistent when class is undefined). (cmb) . Fixed bug GH-9918 (License information for xxHash is not included in README.REDIST.BINS file). (Akama Hitoshi) . Fixed bug GH-9650 (Can't initialize heap: [0x000001e7]). (Michael Voříšek) . Fixed potentially undefined behavior in Windows ftok(3) emulation. (cmb) - Date: . Fixed bug GH-9699 (DateTimeImmutable::diff differences in 8.1.10 onwards - timezone related). (Derick) . Fixed bug GH-9700 (DateTime::createFromFormat: Parsing TZID string is too greedy). (Derick) . Fixed bug GH-9866 (Time zone bug with \DateTimeInterface::diff()). (Derick) . Fixed bug GH-9880 (DateTime diff returns wrong sign on day count when using a timezone). (Derick) - FPM: . Fixed bug GH-9959 (Solaris port event mechanism is still broken after bug #66694). (Petr Sumbera) . Fixed bug #68207 (Setting fastcgi.error_header can result in a WARNING). (Jakub Zelenka) . Fixed bug GH-8517 (Random crash of FPM master process in fpm_stdio_child_said). (Jakub Zelenka) - MBString: . Fixed bug GH-9535 (The behavior of mb_strcut in mbstring has been changed in PHP8.1). (Nathan Freeman) - Opcache: . Fixed bug GH-9968 (Segmentation Fault during OPCache Preload). (Arnaud, michdingpayc) - OpenSSL: . Fixed bug GH-9064 (PHP fails to build if openssl was built with --no-ec). (Jakub Zelenka) . Fixed bug GH-10000 (OpenSSL test failures when OpenSSL compiled with no-dsa). (Jakub Zelenka) - Pcntl: . Fixed bug GH-9298 (Signal handler called after rshutdown leads to crash). (Erki Aring) - PDO_Firebird: . Fixed bug GH-9971 (Incorrect NUMERIC value returned from PDO_Firebird). (cmb) - PDO/SQLite: . Fixed bug #81740 (PDO::quote() may return unquoted string). (CVE-2022-31631) (cmb) - Session: . Fixed GH-9932 (session name silently fails with . and [). (David Carlier) - SPL: . Fixed GH-9883 (SplFileObject::__toString() reads next line). (Girgias) . Fixed GH-10011 (Trampoline autoloader will get reregistered and cannot be unregistered). (Girgias) - SQLite3: . Fixed bug #81742 (open_basedir bypass in SQLite3 by using file URI). (cmb) To generate a diff of this commit: cvs rdiff -u -r1.383 -r1.384 pkgsrc/lang/php/phpversion.mk cvs rdiff -u -r1.15 -r1.16 pkgsrc/lang/php81/distinfo cvs rdiff -u -r1.1 -r0 \ pkgsrc/lang/php81/patches/patch-sapi_fpm_fpm_events_port.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1673077247139400 Content-Disposition: inline Content-Length: 2416 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/php/phpversion.mk diff -u pkgsrc/lang/php/phpversion.mk:1.383 pkgsrc/lang/php/phpversion.mk:1.384 --- pkgsrc/lang/php/phpversion.mk:1.383 Sun Dec 11 14:07:24 2022 +++ pkgsrc/lang/php/phpversion.mk Sat Jan 7 07:40:47 2023 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.383 2022/12/11 14:07:24 taca Exp $ +# $NetBSD: phpversion.mk,v 1.384 2023/01/07 07:40:47 taca Exp $ # # This file selects a PHP version, based on the user's preferences and # the installed packages. It does not add a dependency on the PHP @@ -90,7 +90,7 @@ PHPVERSION_MK= defined PHP56_VERSION= 5.6.40 PHP74_VERSION= 7.4.33 PHP80_VERSION= 8.0.26 -PHP81_VERSION= 8.1.13 +PHP81_VERSION= 8.1.14 PHP82_VERSION= 8.2.0 # Define API version or initial release of major version. Index: pkgsrc/lang/php81/distinfo diff -u pkgsrc/lang/php81/distinfo:1.15 pkgsrc/lang/php81/distinfo:1.16 --- pkgsrc/lang/php81/distinfo:1.15 Fri Nov 25 16:53:13 2022 +++ pkgsrc/lang/php81/distinfo Sat Jan 7 07:40:47 2023 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.15 2022/11/25 16:53:13 taca Exp $ +$NetBSD: distinfo,v 1.16 2023/01/07 07:40:47 taca Exp $ -BLAKE2s (php-8.1.13.tar.xz) = 1c9669c505645ba60827a2610469fde932d55f71ef42510af5a6f003c3b16bef -SHA512 (php-8.1.13.tar.xz) = a8966798ed8e723a362952f9d381a59cbfd63d921466d68a5bc4527960f4fe1b48a1f188284c74b0723e93524787e4cf1c1322ecd6ec1c9be199fd67df0a0542 -Size (php-8.1.13.tar.xz) = 11802424 bytes +BLAKE2s (php-8.1.14.tar.xz) = 64f8740713f8b43f3ddabdfa9e34278fc88182f99bad08dc924cfec60c34208c +SHA512 (php-8.1.14.tar.xz) = 75a5dc3b0490cd8105d4f6c5446522b38953d78fe7b568798db749740f365c818b251d86aba72f5e555c5fe4e4a28e352a9510803bf3cdfe37d125824ae84d61 +Size (php-8.1.14.tar.xz) = 11752004 bytes SHA1 (patch-build_libtool.m4) = e58a2bcebe9e9d7dc7255354fd9fe57878e3f8a6 SHA1 (patch-configure) = e91e22267a9b7ebcc16a586ba6f325c772adb13c SHA1 (patch-disable-filter-url) = 0a2c19c18f089448a8d842e99738b292ab9e5640 @@ -15,5 +15,4 @@ SHA1 (patch-php.ini-development) = 373d7 SHA1 (patch-php.ini-production) = 5ab7fa6bf8403907160b0a62b56c1ee527f8eda6 SHA1 (patch-sapi_cgi_Makefile.frag) = f4cd64d334884c49787d8854115c8cd69cc79bb8 SHA1 (patch-sapi_cli_Makefile.frag) = 1cd29d09042863acbf5330e406410fdcf75d06b3 -SHA1 (patch-sapi_fpm_fpm_events_port.c) = 30ecee10f6d34b7422972e1e275b4f73c7fd964d SHA1 (patch-sapi_fpm_php-fpm.conf.in) = acf9b4e70d4c5ea2b96e37e7bbf9005379ecc4d0 --_----------=_1673077247139400--