pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang



Module Name:    pkgsrc
Committed By:   taca
Date:           Sat Apr 15 02:19:13 UTC 2023

Modified Files:
        pkgsrc/lang/php: phpversion.mk
        pkgsrc/lang/php81: PLIST distinfo

Log Message:
lang/php81: update to 8.1.18

13 Apr 2023, PHP 8.1.18

- Core:
  . Added optional support for max_execution_time in ZTS/Linux builds
    (Kévin Dunglas)
  . Fixed use-after-free in recursive AST evaluation. (ilutov)
  . Fixed bug GH-8646 (Memory leak PHP FPM 8.1). (nielsdos)
  . Fixed bug GH-10801 (Named arguments in CTE functions cause a segfault).
    (nielsdos)
  . Fixed bug GH-8789 (PHP 8.0.20 (ZTS) zend_signal_handler_defer crashes on
    apache). (nielsdos)
  . Fixed bug GH-10015 (zend_signal_handler_defer crashes on apache shutdown).
    (nielsdos)
  . Fixed bug GH-10810 (Fix NUL byte terminating Exception::__toString()).
    (ilutov)
  . Fix potential memory corruption when mixing __callStatic() and FFI. (ilutov)

- Date:
  . Fixed bug GH-10583 (DateTime modify with tz pattern should not update
    linked timezone). (Derick)

- FPM:
  . Fixed bug GH-10611 (fpm_env_init_main leaks environ). (nielsdos)
  . Destroy file_handle in fpm_main. (Jakub Zelenka, nielsdos)
  . Fixed bug #74129 (Incorrect SCRIPT_NAME with apache ProxyPassMatch when
    spaces are in path). (Jakub Zelenka)

- FTP:
  . Propagate success status of ftp_close(). (nielsdos)
  . Fixed bug GH-10521 (ftp_get/ftp_nb_get resumepos offset is maximum 10GB).
    (nielsdos)

- IMAP:
  . Fix build failure with Clang 16. (orlitzky)

- MySQLnd:
  . Fixed bug GH-8979 (Possible Memory Leak with SSL-enabled MySQL
    connections). (nielsdos)

- Opcache:
  . Fixed build for macOS to cater with pkg-config settings. (David Carlier)
  . Fixed bug GH-8065 (opcache.consistency_checks > 0 causes segfaults in
    PHP >= 8.1.5 in fpm context). (nielsdos)

- OpenSSL:
  . Add missing error checks on file writing functions. (nielsdos)

- PDO Firebird:
  . Fixed bug GH-10908 (Bus error with PDO Firebird on RPI with 64 bit kernel
    and 32 bit userland). (nielsdos)

- PDO ODBC:
  . Fixed missing and inconsistent error checks on SQLAllocHandle. (nielsdos)

- Phar:
  . Fixed bug GH-10766 (PharData archive created with Phar::Zip format does
    not keep files metadata (datetime)). (nielsdos)
  . Add missing error checks on EVP_MD_CTX_create() and EVP_VerifyInit().
    (nielsdos)

- PGSQL:
  . Fixed typo in the array returned from pg_meta_data (extended mode).
    (David Carlier)

- SPL:
  . Fixed bug GH-10519 (Array Data Address Reference Issue). (Nathan Freeman)
  . Fixed bug GH-10844 (ArrayIterator allows modification of readonly props).
    (ilutov)

- Standard:
  . Fixed bug GH-10885 (stream_socket_server context leaks). (ilutov)
  . Fixed bug GH-10052 (Browscap crashes PHP 8.1.12 on request shutdown
    (apache2)). (nielsdos)
  . Fixed oss-fuzz #57392 (Buffer-overflow in php_fgetcsv() with \0 delimiter
    and enclosure). (ilutov)
  . Fixed undefined behaviour in unpack(). (nielsdos)


To generate a diff of this commit:
cvs rdiff -u -r1.394 -r1.395 pkgsrc/lang/php/phpversion.mk
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/php81/PLIST
cvs rdiff -u -r1.21 -r1.22 pkgsrc/lang/php81/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/php/phpversion.mk
diff -u pkgsrc/lang/php/phpversion.mk:1.394 pkgsrc/lang/php/phpversion.mk:1.395
--- pkgsrc/lang/php/phpversion.mk:1.394 Sat Apr 15 02:17:13 2023
+++ pkgsrc/lang/php/phpversion.mk       Sat Apr 15 02:19:13 2023
@@ -1,4 +1,4 @@
-# $NetBSD: phpversion.mk,v 1.394 2023/04/15 02:17:13 taca Exp $
+# $NetBSD: phpversion.mk,v 1.395 2023/04/15 02:19:13 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.28
-PHP81_VERSION= 8.1.17
+PHP81_VERSION= 8.1.18
 PHP82_VERSION= 8.2.5
 
 # Define API version or initial release of major version.

Index: pkgsrc/lang/php81/PLIST
diff -u pkgsrc/lang/php81/PLIST:1.1 pkgsrc/lang/php81/PLIST:1.2
--- pkgsrc/lang/php81/PLIST:1.1 Sat Nov 27 07:24:43 2021
+++ pkgsrc/lang/php81/PLIST     Sat Apr 15 02:19:13 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2021/11/27 07:24:43 taca Exp $
+@comment $NetBSD: PLIST,v 1.2 2023/04/15 02:19:13 taca Exp $
 bin/phar
 bin/phar.phar
 bin/php
@@ -70,6 +70,7 @@ include/php/Zend/zend_list.h
 include/php/Zend/zend_llist.h
 include/php/Zend/zend_long.h
 include/php/Zend/zend_map_ptr.h
+include/php/Zend/zend_max_execution_timer.h
 include/php/Zend/zend_modules.h
 include/php/Zend/zend_multibyte.h
 include/php/Zend/zend_multiply.h

Index: pkgsrc/lang/php81/distinfo
diff -u pkgsrc/lang/php81/distinfo:1.21 pkgsrc/lang/php81/distinfo:1.22
--- pkgsrc/lang/php81/distinfo:1.21     Thu Mar 16 13:52:01 2023
+++ pkgsrc/lang/php81/distinfo  Sat Apr 15 02:19:13 2023
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.21 2023/03/16 13:52:01 taca Exp $
+$NetBSD: distinfo,v 1.22 2023/04/15 02:19:13 taca Exp $
 
-BLAKE2s (php-8.1.17.tar.xz) = e93509ec942b8d13d06a40ccca2e1df13b1323fa18e840461ad2083cd44bd7c4
-SHA512 (php-8.1.17.tar.xz) = c139f805a6373d8a849954ed6df04e459fca01ae3dc576ba9327d0a988fb5a79dd99ed40754a5aba91eaccb80e75dfaa6b6f31f5802d8f8576df2f625cfdd3f6
-Size (php-8.1.17.tar.xz) = 11818552 bytes
+BLAKE2s (php-8.1.18.tar.xz) = bd083314dbd93c65225951fc0c24da991aa44b459f2c23c1535e7aed78d146d5
+SHA512 (php-8.1.18.tar.xz) = e30dba23ab8711a04c21ad040d69807f479760a20f363fe3f91a297e9e6463d9558299b15231e00e2b1c95d03309e03bde8cbbe4043fce3e1b965236ece1d0f3
+Size (php-8.1.18.tar.xz) = 11782240 bytes
 SHA1 (patch-build_libtool.m4) = e58a2bcebe9e9d7dc7255354fd9fe57878e3f8a6
 SHA1 (patch-configure) = e91e22267a9b7ebcc16a586ba6f325c772adb13c
 SHA1 (patch-disable-filter-url) = 0a2c19c18f089448a8d842e99738b292ab9e5640



Home | Main Index | Thread Index | Old Index