From owner-svn-ports-branches@freebsd.org Sat Jan 25 19:49:54 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 23C521F8BB1; Sat, 25 Jan 2020 19:49:54 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 484mnF72ljz419q; Sat, 25 Jan 2020 19:49:53 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ECE84D69E; Sat, 25 Jan 2020 19:49:53 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00PJnrr7024430; Sat, 25 Jan 2020 19:49:53 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00PJnrBq024427; Sat, 25 Jan 2020 19:49:53 GMT (envelope-from tz@FreeBSD.org) Message-Id: <202001251949.00PJnrBq024427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Sat, 25 Jan 2020 19:49:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r524124 - in branches/2020Q1: ftp/php74-ftp lang/php74 X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in branches/2020Q1: ftp/php74-ftp lang/php74 X-SVN-Commit-Revision: 524124 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Jan 2020 19:49:54 -0000 Author: tz Date: Sat Jan 25 19:49:53 2020 New Revision: 524124 URL: https://svnweb.freebsd.org/changeset/ports/524124 Log: MFH: r523997 lang/php74: Upgrade from 7.4.1 to 7.4.2 Changelog: Core: Preloading support on Windows has been disabled. Fixed bug #79022 (class_exists returns True for classes that are not ready to be used). Fixed bug #78929 (plus signs in cookie values are converted to spaces). Fixed bug #78973 (Destructor during CV freeing causes segfault if opline never saved). Fixed bug #78776 (Abstract method implementation from trait does not check "static"). Fixed bug #78999 (Cycle leak when using function result as temporary). Fixed bug #79008 (General performance regression with PHP 7.4 on Windows). Fixed bug #79002 (Serializing uninitialized typed properties with __sleep makes unserialize throw). CURL: Fixed bug #79033 (Curl timeout error with specific url and post). Fixed bug #79063 (curl openssl does not respect PKG_CONFIG_PATH). Date: Fixed bug #79015 (undefined-behavior in php_date.c). DBA: Fixed bug #78808 ([LMDB] MDB_MAP_FULL: Environment mapsize limit reached). Exif: Fixed bug #79046 (NaN to int cast undefined behavior in exif). Fileinfo: Fixed bug #74170 (locale information change after mime_content_type). GD: Fixed bug #79067 (gdTransformAffineCopy() may use unitialized values). Fixed bug #79068 (gdTransformAffineCopy() changes interpolation method). Libxml: Fixed bug #79029 (Use After Free's in XMLReader / XMLWriter). Mbstring: Fixed bug #79037 (global buffer-overflow in `mbfl_filt_conv_big5_wchar`). (CVE-2020-7060) OPcache: Fixed bug #78961 (erroneous optimization of re-assigned $GLOBALS). Fixed bug #78950 (Preloading trait method with static variables). Fixed bug #78903 (Conflict in RTD key for closures results in crash). Fixed bug #78986 (Opcache segfaults when inheriting ctor from immutable into mutable class). Fixed bug #79040 (Warning Opcode handlers are unusable due to ASLR). Fixed bug #79055 (Typed property become unknown with OPcache file cache). Pcntl: Fixed bug #78402 (Converting null to string in error message is bad DX). PDO_PgSQL: Fixed bug #78983 (pdo_pgsql config.w32 cannot find libpq-fe.h). Fixed bug #78980 (pgsqlGetNotify() overlooks dead connection). Fixed bug #78982 (pdo_pgsql returns dead persistent connection). Session: Fixed bug #79091 (heap use-after-free in session_create_id()). Fixed bug #79031 (Session unserialization problem). Shmop: Fixed bug #78538 (shmop memory leak). Sqlite3: Fixed bug #79056 (sqlite does not respect PKG_CONFIG_PATH during compilation). Spl: Fixed bug #78976 (SplFileObject::fputcsv returns -1 on failure). Standard: Fixed bug #79099 (OOB read in php_strip_tags_ex). (CVE-2020-7059) Fixed bug #79000 (Non-blocking socket stream reports EAGAIN as error). Fixed bug #54298 (Using empty additional_headers adding extraneous CRLF). Changelog taken from: https://www.php.net/ChangeLog-7.php#7.4.2 Approved by: ports-secteam (joneum) Modified: branches/2020Q1/ftp/php74-ftp/Makefile branches/2020Q1/lang/php74/Makefile branches/2020Q1/lang/php74/distinfo Directory Properties: branches/2020Q1/ (props changed) Modified: branches/2020Q1/ftp/php74-ftp/Makefile ============================================================================== --- branches/2020Q1/ftp/php74-ftp/Makefile Sat Jan 25 19:44:36 2020 (r524123) +++ branches/2020Q1/ftp/php74-ftp/Makefile Sat Jan 25 19:49:53 2020 (r524124) @@ -1,6 +1,5 @@ # $FreeBSD$ -PORTREVISION= 1 CATEGORIES= ftp MASTERDIR= ${.CURDIR}/../../lang/php74 Modified: branches/2020Q1/lang/php74/Makefile ============================================================================== --- branches/2020Q1/lang/php74/Makefile Sat Jan 25 19:44:36 2020 (r524123) +++ branches/2020Q1/lang/php74/Makefile Sat Jan 25 19:49:53 2020 (r524124) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= php74 -DISTVERSION= 7.4.1 +DISTVERSION= 7.4.2 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: branches/2020Q1/lang/php74/distinfo ============================================================================== --- branches/2020Q1/lang/php74/distinfo Sat Jan 25 19:44:36 2020 (r524123) +++ branches/2020Q1/lang/php74/distinfo Sat Jan 25 19:49:53 2020 (r524124) @@ -1,3 +1,3 @@ -TIMESTAMP = 1576964443 -SHA256 (php-7.4.1.tar.xz) = 561bb866bdd509094be00f4ece7c3543ec971c4d878645ee81437e291cffc762 -SIZE (php-7.4.1.tar.xz) = 10245600 +TIMESTAMP = 1579904923 +SHA256 (php-7.4.2.tar.xz) = 98284deac017da0d426117ecae7599a1f1bf62ae3911e8bc16c4403a8f4bdf13 +SIZE (php-7.4.2.tar.xz) = 10252304