Received: by mail.netbsd.org (Postfix, from userid 605) id 2FAEB84EBA; Sun, 21 Jan 2024 07:53:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 609DF84EAD for ; Sun, 21 Jan 2024 07:53:54 +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 b40lgy8Nvb0w for ; Sun, 21 Jan 2024 07:53:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7B37784D74 for ; Sun, 21 Jan 2024 07:53:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7396FFA42; Sun, 21 Jan 2024 07:53:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170582363386700" MIME-Version: 1.0 Date: Sun, 21 Jan 2024 07:53:53 +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: <20240121075353.7396FFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170582363386700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Jan 21 07:53:53 UTC 2024 Modified Files: pkgsrc/lang/php: phpversion.mk pkgsrc/lang/php83: distinfo Log Message: lang/php83: update to 8.3.2 8.3.2 (2024-01-18) - Core: . Fixed bug GH-12953 (false positive SSA integrity verification failed when loading composer classmaps with more than 11k elements). (nielsdos) . Fixed bug GH-12999 (zend_strnlen build when strnlen is unsupported). (rainerjung) . Fixed bug GH-12966 (missing cross-compiling 3rd argument so Autoconf doesn't emit warnings). (Peter Kokot) . Fixed bug GH-12854 (8.3 - as final trait-used method does not correctly report visibility in Reflection). (nielsdos) - Cli: . Fix incorrect timeout in built-in web server when using router script and max_input_time. (ilutov) - DOM: . Fixed bug GH-12870 (Creating an xmlns attribute results in a DOMException). (nielsdos) . Fix crash when toggleAttribute() is used without a document. (nielsdos) . Fix crash in adoptNode with attribute references. (nielsdos) . Fixed bug GH-13012 (DOMNode::isEqualNode() is incorrect when attribute order is different). (nielsdos) - FFI: . Fixed bug GH-9698 (stream_wrapper_register crashes with FFI\CData). (Jakub Zelenka) . Fixed bug GH-12905 (FFI::new interacts badly with observers). (nielsdos) - Intl: . Fixed GH-12943 (IntlDateFormatter::__construct accepts 'C' as valid locale). (David Carlier) - Hash: . Fixed bug GH-12936 (hash() function hangs endlessly if using sha512 on strings >= 4GiB). (nielsdos) - ODBC: . Fix crash on Apache shutdown with persistent connections. (nielsdos) - Opcache: . Fixed oss-fuzz #64727 (JIT undefined array key warning may overwrite DIM with NULL when DIM is the same var as result). (ilutov) . Added workaround for SELinux mprotect execheap issue. See https://bugzilla.kernel.org/show_bug.cgi?id=218258. (ilutov) - OpenSSL: . Fixed bug GH-12987 (openssl_csr_sign might leak new cert on error). (Jakub Zelenka) - PDO: . Fix GH-12969 (Fixed PDO::getAttribute() to get PDO::ATTR_STRINGIFY_FETCHES). (SakiTakamachi) - PDO_ODBC: . Fixed bug GH-12767 (Unable to turn on autocommit mode with setAttribute()). (SakiTakamachi) - PGSQL: . Fixed auto_reset_persistent handling and allow_persistent type. (David Carlier) . Fixed bug GH-12974 (Apache crashes on shutdown when using pg_pconnect()). (nielsdos) - Phar: . Fixed bug #77432 (Segmentation fault on including phar file). (nielsdos) - PHPDBG: . Fixed bug GH-12962 (Double free of init_file in phpdbg_prompt.c). (nielsdos) - SimpleXML: . Fix getting the address of an uninitialized property of a SimpleXMLElement resulting in a crash. (nielsdos) . Fixed bug GH-12929 (SimpleXMLElement with stream_wrapper_register can segfault). (nielsdos) - Tidy: . Fixed bug GH-12980 (tidynode.props.attribute is missing "Boolean Attributes" and empty attributes). (nielsdos) To generate a diff of this commit: cvs rdiff -u -r1.419 -r1.420 pkgsrc/lang/php/phpversion.mk cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/php83/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170582363386700 Content-Disposition: inline Content-Length: 1953 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.419 pkgsrc/lang/php/phpversion.mk:1.420 --- pkgsrc/lang/php/phpversion.mk:1.419 Fri Jan 5 02:13:17 2024 +++ pkgsrc/lang/php/phpversion.mk Sun Jan 21 07:53:53 2024 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.419 2024/01/05 02:13:17 taca Exp $ +# $NetBSD: phpversion.mk,v 1.420 2024/01/21 07:53:53 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 @@ -93,7 +93,7 @@ PHP74_VERSION= 7.4.33 PHP80_VERSION= 8.0.30 PHP81_VERSION= 8.1.27 PHP82_VERSION= 8.2.14 -PHP83_VERSION= 8.3.1 +PHP83_VERSION= 8.3.2 # Define API version or initial release of major version. PHP56_RELDATE= 20140828 Index: pkgsrc/lang/php83/distinfo diff -u pkgsrc/lang/php83/distinfo:1.2 pkgsrc/lang/php83/distinfo:1.3 --- pkgsrc/lang/php83/distinfo:1.2 Fri Jan 5 02:08:41 2024 +++ pkgsrc/lang/php83/distinfo Sun Jan 21 07:53:53 2024 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.2 2024/01/05 02:08:41 taca Exp $ +$NetBSD: distinfo,v 1.3 2024/01/21 07:53:53 taca Exp $ -BLAKE2s (php-8.3.1.tar.xz) = eab944ff3b663d58484eed4910e78a7e23877ff38b01cd0d77ea9faf1dde82de -SHA512 (php-8.3.1.tar.xz) = 9806f7bdaf9c071a6402152af02eaf5f00285ec7a8c8ee319fd8a7ef4f8e6e33d0e362326969bae59b2c9e6f02fd7b92c93736acb807dfa797cc204226b69fe6 -Size (php-8.3.1.tar.xz) = 12444232 bytes +BLAKE2s (php-8.3.2.tar.xz) = aab521c58a524555372f2f5ecbf527aa178030d0932869dd91a1e650e499f16a +SHA512 (php-8.3.2.tar.xz) = acf9013d35ae639558fd4816d12dcae03f8af7944c2639f33cd33517503c6170d30101da6c72ebdaf5542bcaf858a54a22ecc8f86822a128f52938bd6ea9606c +Size (php-8.3.2.tar.xz) = 12440200 bytes SHA1 (patch-configure) = c8578bf4893665cb8dee242bbdc866d100912436 SHA1 (patch-ext_enchant_enchant.c) = 7d999de1b2fde2ea11e4a6e16e7b59c085924b9b SHA1 (patch-ext_phar_Makefile.frag) = 53ea5c58b0bc27d236118d5750a74b1cba43e5dd --_----------=_170582363386700--