From owner-svn-ports-all@freebsd.org Sun Sep 13 22:03:39 2020 Return-Path: Delivered-To: svn-ports-all@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 6FB083EA4FF; Sun, 13 Sep 2020 22:03:39 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4BqNmW291Cz3c2D; Sun, 13 Sep 2020 22:03:39 +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 2E87FCFBA; Sun, 13 Sep 2020 22:03:39 +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 08DM3dZU077733; Sun, 13 Sep 2020 22:03:39 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08DM3cNh077731; Sun, 13 Sep 2020 22:03:38 GMT (envelope-from tz@FreeBSD.org) Message-Id: <202009132203.08DM3cNh077731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Sun, 13 Sep 2020 22:03:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548578 - in head: . Mk X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in head: . Mk X-SVN-Commit-Revision: 548578 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Sep 2020 22:03:39 -0000 Author: tz Date: Sun Sep 13 22:03:38 2020 New Revision: 548578 URL: https://svnweb.freebsd.org/changeset/ports/548578 Log: Switch default version of PHP from 7.2 to 7.4. 7.2 does not receive any bugfixes anymore. Also the security fixes will end at 2020-11-30. Since PHP 7.3 will only receive bugfixes for the next 2 month, we switch directly to 7.4 PR: 248074 Sponsored by: Bounce Experts Modified: head/Mk/bsd.default-versions.mk head/UPDATING Modified: head/Mk/bsd.default-versions.mk ============================================================================== --- head/Mk/bsd.default-versions.mk Sun Sep 13 21:11:06 2020 (r548577) +++ head/Mk/bsd.default-versions.mk Sun Sep 13 22:03:38 2020 (r548578) @@ -89,7 +89,7 @@ PERL5_DEFAULT:= ${_PERL5_FROM_BIN:R} # Possible values: 9.5, 9.6, 10, 11, 12 PGSQL_DEFAULT?= 11 # Possible values: 7.2, 7.3, 7.4 -PHP_DEFAULT?= 7.2 +PHP_DEFAULT?= 7.4 # Possible values: 2.7, 3.5, 3.6, 3.7, 3.8 PYTHON_DEFAULT?= 3.7 # Possible values: 2.7 Modified: head/UPDATING ============================================================================== --- head/UPDATING Sun Sep 13 21:11:06 2020 (r548577) +++ head/UPDATING Sun Sep 13 22:03:38 2020 (r548578) @@ -5,6 +5,22 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20200914: + AFFECTS: users of lang/php72 + AUTHOR: tz@FreeBSD.org + + The default version of PHP has been switched from 7.2 to 7.4. + + If you use binary packages you should make a list of php packages + before running 'pkg upgrade': + + # pkg info php7\* > ~/installed-php-ports-list + + After the upgrade, check with such list if all your php extensions + are still installed, and reinstall them if needed. + + If you use mod_php72 you need to deinstall it and install mod_php74. + 20200811: AFFECTS: users of *-emacs26-* packages AUTHOR: jrm@FreeBSD.org