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 Jan 25 17:22:49 UTC 2020

Modified Files:
        pkgsrc/lang/php: phpversion.mk
        pkgsrc/lang/php74: Makefile distinfo

Log Message:
lang/php74: update to 7.4.2

Update php74 to 7.4.2 (PHP 7.4.2).

23 Jan 2020, PHP 7.4.2

- Core:
  . Preloading support on Windows has been disabled. (Nikita)
  . Fixed bug #79022 (class_exists returns True for classes that are not ready
    to be used). (Laruence)
  . Fixed bug #78929 (plus signs in cookie values are converted to spaces).
    (Alexey Kachalin)
  . Fixed bug #78973 (Destructor during CV freeing causes segfault if opline
    never saved). (Nikita)
  . Fixed bug #78776 (Abstract method implementation from trait does not check
    "static"). (Nikita)
  . Fixed bug #78999 (Cycle leak when using function result as temporary).
    (Dmitry)
  . Fixed bug #79008 (General performance regression with PHP 7.4 on Windows).
    (cmb)
  . Fixed bug #79002 (Serializing uninitialized typed properties with __sleep
    makes unserialize throw). (Nikita)

- CURL:
  . Fixed bug #79033 (Curl timeout error with specific url and post). (cmb)
  . Fixed bug #79063 (curl openssl does not respect PKG_CONFIG_PATH). (Nikita)

- Date:
  . Fixed bug #79015 (undefined-behavior in php_date.c). (cmb)

- DBA:
  . Fixed bug #78808 ([LMDB] MDB_MAP_FULL: Environment mapsize limit reached).
    (cmb)

- Exif:
  . Fixed bug #79046 (NaN to int cast undefined behavior in exif). (Nikita)

- Fileinfo:
  . Fixed bug #74170 (locale information change after mime_content_type).
    (Sergei Turchanov)

- GD:
  . Fixed bug #79067 (gdTransformAffineCopy() may use unitialized values). (cmb)
  . Fixed bug #79068 (gdTransformAffineCopy() changes interpolation method).
    (cmb)

- Libxml:
  . Fixed bug #79029 (Use After Free's in XMLReader / XMLWriter). (Laruence)

- Mbstring:
  . Fixed bug #79037 (global buffer-overflow in `mbfl_filt_conv_big5_wchar`).
    (CVE-2020-7060) (Nikita)

- OPcache:
  . Fixed bug #78961 (erroneous optimization of re-assigned $GLOBALS). (Dmitry)
  . Fixed bug #78950 (Preloading trait method with static variables). (Nikita)
  . Fixed bug #78903 (Conflict in RTD key for closures results in crash).
    (Nikita)
  . Fixed bug #78986 (Opcache segfaults when inheriting ctor from immutable
    into mutable class). (Nikita)
  . Fixed bug #79040 (Warning Opcode handlers are unusable due to ASLR). (cmb)
  . Fixed bug #79055 (Typed property become unknown with OPcache file cache).
    (Nikita)

- Pcntl:
  . Fixed bug #78402 (Converting null to string in error message is bad DX).
    (SATŌ Kentarō)

- PDO_PgSQL:
  . Fixed bug #78983 (pdo_pgsql config.w32 cannot find libpq-fe.h). (SATŌ
    Kentarō)
  . Fixed bug #78980 (pgsqlGetNotify() overlooks dead connection). (SATŌ
    Kentarō)
  . Fixed bug #78982 (pdo_pgsql returns dead persistent connection). (SATŌ
    Kentarō)

- Session:
  . Fixed bug #79091 (heap use-after-free in session_create_id()). (cmb,
    Nikita)
  . Fixed bug #79031 (Session unserialization problem). (Nikita)

- Shmop:
  . Fixed bug #78538 (shmop memory leak). (cmb)

- Sqlite3:
  . Fixed bug #79056 (sqlite does not respect PKG_CONFIG_PATH during
    compilation). (Nikita)

- Spl:
  . Fixed bug #78976 (SplFileObject::fputcsv returns -1 on failure). (cmb)

- Standard:
  . Fixed bug #79099 (OOB read in php_strip_tags_ex). (CVE-2020-7059). (cmb)
  . Fixed bug #79000 (Non-blocking socket stream reports EAGAIN as error).
    (Nikita)
  . Fixed bug #54298 (Using empty additional_headers adding extraneous CRLF).
    (cmb)


To generate a diff of this commit:
cvs rdiff -u -r1.284 -r1.285 pkgsrc/lang/php/phpversion.mk
cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/php74/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/php74/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.284 pkgsrc/lang/php/phpversion.mk:1.285
--- pkgsrc/lang/php/phpversion.mk:1.284 Sat Jan 25 17:21:14 2020
+++ pkgsrc/lang/php/phpversion.mk       Sat Jan 25 17:22:49 2020
@@ -1,4 +1,4 @@
-# $NetBSD: phpversion.mk,v 1.284 2020/01/25 17:21:14 taca Exp $
+# $NetBSD: phpversion.mk,v 1.285 2020/01/25 17:22:49 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
 PHP72_VERSION= 7.2.26
 PHP73_VERSION= 7.3.14
-PHP74_VERSION= 7.4.1
+PHP74_VERSION= 7.4.2
 
 # Define initial release of major version.
 PHP56_RELDATE= 20140828

Index: pkgsrc/lang/php74/Makefile
diff -u pkgsrc/lang/php74/Makefile:1.4 pkgsrc/lang/php74/Makefile:1.5
--- pkgsrc/lang/php74/Makefile:1.4      Tue Jan 21 14:16:26 2020
+++ pkgsrc/lang/php74/Makefile  Sat Jan 25 17:22:49 2020
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.4 2020/01/21 14:16:26 taca Exp $
+# $NetBSD: Makefile,v 1.5 2020/01/25 17:22:49 taca Exp $
 
 #
 # We can't omit PKGNAME here to handle PKG_OPTIONS.
 #
 PKGNAME=               php-${PHP_VERSION:S/RC/rc/}
-PKGREVISION=           2
 
 COMMENT=               PHP Hypertext Preprocessor version 7.4
 LICENSE=               php

Index: pkgsrc/lang/php74/distinfo
diff -u pkgsrc/lang/php74/distinfo:1.3 pkgsrc/lang/php74/distinfo:1.4
--- pkgsrc/lang/php74/distinfo:1.3      Sat Dec 21 07:00:55 2019
+++ pkgsrc/lang/php74/distinfo  Sat Jan 25 17:22:49 2020
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.3 2019/12/21 07:00:55 taca Exp $
+$NetBSD: distinfo,v 1.4 2020/01/25 17:22:49 taca Exp $
 
-SHA1 (php-7.4.1.tar.xz) = 83cae8ce14f9e59e8774747e886b0bdbdce6b259
-RMD160 (php-7.4.1.tar.xz) = 7d426a5d88d4e698dc98fc42556455617dc1e897
-SHA512 (php-7.4.1.tar.xz) = 2dd152bdca52ece160feff799622fd4bdd88e0664f629e6149fd14ede6c304dfc40c164fcd9200c041b26342d6248010cf9b53e30c1a8d31640dc3b24d25c4da
-Size (php-7.4.1.tar.xz) = 10245600 bytes
+SHA1 (php-7.4.2.tar.xz) = 5267cfa7164f37228f23f96b4f048f0ba8f5c741
+RMD160 (php-7.4.2.tar.xz) = cec26ddb5de3517ff492e4211e306638da163fa2
+SHA512 (php-7.4.2.tar.xz) = e8d4b300d71e48a740b4cd96bf100206615a352bf77822dfe4a289b93738e3419f1371f2b1ec2eb9c9c4b9c87eac69c866a4c51a821e0f5b07a2fa3b0eb8d89b
+Size (php-7.4.2.tar.xz) = 10252304 bytes
 SHA1 (patch-configure) = 5e9c9c06f6d819d5ba2832d648f41363f40f3108
 SHA1 (patch-disable-filter-url) = 0a2c19c18f089448a8d842e99738b292ab9e5640
 SHA1 (patch-ext_phar_Makefile.frag) = 53ea5c58b0bc27d236118d5750a74b1cba43e5dd



Home | Main Index | Thread Index | Old Index