Author: Pierrick Charron (adoy) Date: 2023-04-13T12:06:17-04:00 Commit: https://github.com/php/web-php/commit/15496300897746119984f0e1f703c46c07fcaf79 Raw diff: https://github.com/php/web-php/commit/15496300897746119984f0e1f703c46c07fcaf79.diff
Announce PHP 8.2.5 Changed paths: A archive/entries/2023-04-13-1.xml A releases/8_2_5.php M ChangeLog-8.php M archive/archive.xml M include/releases.inc M include/version.inc Diff: diff --git a/ChangeLog-8.php b/ChangeLog-8.php index 81870958a..db7ffea8b 100644 --- a/ChangeLog-8.php +++ b/ChangeLog-8.php @@ -8,6 +8,89 @@ ?> <a id="PHP_8_2"></a> +<section class="version" id="8.2.5"><!-- {{{ 8.2.5 --> +<h3>Version 8.2.5</h3> +<b><?php release_date('13-Apr-2023'); ?></b> +<ul><li>Core: +<ul> + <li>Added optional support for max_execution_time in ZTS/Linux builds (Kévin Dunglas)</li> + <li>Fixed use-after-free in recursive AST evaluation.</li> + <li>Fixed bug <?php githubissuel('php/php-src', 8646); ?> (Memory leak PHP FPM 8.1).</li> + <li>Re-add some CTE functions that were removed from being CTE by a mistake.</li> + <li>Remove CTE flag from array_diff_ukey(), which was added by mistake.</li> + <li>Fixed bug <?php githubissuel('php/php-src', 10801); ?> (Named arguments in CTE functions cause a segfault).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 8789); ?> (PHP 8.0.20 (ZTS) zend_signal_handler_defer crashes on apache).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 10015); ?> (zend_signal_handler_defer crashes on apache shutdown).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 10810); ?> (Fix NUL byte terminating Exception::__toString()).</li> + <li>Fix potential memory corruption when mixing __callStatic() and FFI.</li> +</ul></li> +<li>Date: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 10747); ?> (Private and protected properties in serialized Date* objects throw).</li> +</ul></li> +<li>FPM: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 10611); ?> (fpm_env_init_main leaks environ).</li> + <li>Destroy file_handle in fpm_main.</li> + <li><?php bugfix(74129); ?> (Incorrect SCRIPT_NAME with apache ProxyPassMatch when spaces are in path).</li> +</ul></li> +<li>FTP: +<ul> + <li>Propagate success status of ftp_close().</li> + <li>Fixed bug <?php githubissuel('php/php-src', 10521); ?> (ftp_get/ftp_nb_get resumepos offset is maximum 10GB).</li> +</ul></li> +<li>IMAP: +<ul> + <li>Fix build failure with Clang 16.</li> +</ul></li> +<li>MySQLnd: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 8979); ?> (Possible Memory Leak with SSL-enabled MySQL connections).</li> +</ul></li> +<li>Opcache: +<ul> + <li>Fixed build for macOS to cater with pkg-config settings.</li> + <li>Fixed bug <?php githubissuel('php/php-src', 8065); ?> (opcache.consistency_checks > 0 causes segfaults in PHP >= 8.1.5 in fpm context).</li> +</ul></li> +<li>OpenSSL: +<ul> + <li>Add missing error checks on file writing functions.</li> +</ul></li> +<li>PDO Firebird: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 10908); ?> (Bus error with PDO Firebird on RPI with 64 bit kernel and 32 bit userland).</li> +</ul></li> +<li>Phar: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 10766); ?> (PharData archive created with Phar::Zip format does not keep files metadata (datetime)).</li> + <li>Add missing error checks on EVP_MD_CTX_create() and EVP_VerifyInit().</li> +</ul></li> +<li>PDO ODBC: +<ul> + <li>Fixed missing and inconsistent error checks on SQLAllocHandle.</li> +</ul></li> +<li>PGSQL: +<ul> + <li>Fixed typo in the array returned from pg_meta_data (extended mode).</li> +</ul></li> +<li>SPL: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 10519); ?> (Array Data Address Reference Issue).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 10907); ?> (Unable to serialize processed SplFixedArrays in PHP 8.2.4).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 10844); ?> (ArrayIterator allows modification of readonly props).</li> +</ul></li> +<li>Standard: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 10885); ?> (stream_socket_server context leaks).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 10052); ?> (Browscap crashes PHP 8.1.12 on request shutdown (apache2)).</li> + <li>Fixed oss-fuzz #57392 (Buffer-overflow in php_fgetcsv() with \0 delimiter and enclosure).</li> + <li>Fixed undefined behaviour in unpack().</li> +</ul></li> +</ul> +<!-- }}} --></section> + + + <section class="version" id="8.2.4"><!-- {{{ 8.2.4 --> <h3>Version 8.2.4</h3> <b><?php release_date('16-Mar-2023'); ?></b> diff --git a/archive/archive.xml b/archive/archive.xml index 36dc5cf99..95c7650ce 100644 --- a/archive/archive.xml +++ b/archive/archive.xml @@ -9,6 +9,7 @@ <uri>http://php.net/contact</uri> <email>php-webmaster@lists.php.net</email> </author> + <xi:include href="entries/2023-04-13-1.xml"/> <xi:include href="entries/2023-03-16-2.xml"/> <xi:include href="entries/2023-03-16-1.xml"/> <xi:include href="entries/2023-02-15-3.xml"/> diff --git a/archive/entries/2023-04-13-1.xml b/archive/entries/2023-04-13-1.xml new file mode 100644 index 000000000..57f719589 --- /dev/null +++ b/archive/entries/2023-04-13-1.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<entry xmlns="http://www.w3.org/2005/Atom"> + <title>PHP 8.2.5 Released!</title> + <id>https://www.php.net/archive/2023.php#2023-04-13-1</id> + <published>2023-04-13T15:24:07+00:00</published> + <updated>2023-04-13T15:24:07+00:00</updated> + <link href="https://www.php.net/index.php#2023-04-13-1" rel="alternate" type="text/html"/> + <link href="https://www.php.net/archive/2023.php#2023-04-13-1" rel="via" type="text/html"/> + <category term="releases" label="New PHP release"/> + <category term="frontpage" label="PHP.net frontpage news"/> + <content type="xhtml"> + <div xmlns="http://www.w3.org/1999/xhtml"><p>The PHP development team announces the immediate availability of PHP 8.2.5. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.5 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.5">ChangeLog</a>. +</p> </div> + </content> +</entry> diff --git a/include/releases.inc b/include/releases.inc index 7b9372d99..e9839c380 100644 --- a/include/releases.inc +++ b/include/releases.inc @@ -2,6 +2,42 @@ $OLDRELEASES = array ( 8 => array ( + '8.2.4' => + array ( + 'announcement' => + array ( + 'English' => '/releases/8_2_4.php', + ), + 'tags' => + array ( + ), + 'date' => '16 Mar 2023', + 'source' => + array ( + 0 => + array ( + 'filename' => 'php-8.2.4.tar.gz', + 'name' => 'PHP 8.2.4 (tar.gz)', + 'sha256' => 'cee7748015a2ddef1739d448b980b095dccd09ed589cf1b6c6ee2d16f5e73c50', + 'date' => '16 Mar 2023', + ), + 1 => + array ( + 'filename' => 'php-8.2.4.tar.bz2', + 'name' => 'PHP 8.2.4 (tar.bz2)', + 'sha256' => '79186f94bd510db86e31e535dd448277a1eb92a87878303a1ead44602d8b1197', + 'date' => '16 Mar 2023', + ), + 2 => + array ( + 'filename' => 'php-8.2.4.tar.xz', + 'name' => 'PHP 8.2.4 (tar.xz)', + 'sha256' => 'bc7bf4ca7ed0dd17647e3ea870b6f062fcb56b243bfdef3f59ff7f94e96176a8', + 'date' => '16 Mar 2023', + ), + ), + 'museum' => false, + ), '8.2.3' => array ( 'announcement' => diff --git a/include/version.inc b/include/version.inc index bc6e2c7f1..09394a3db 100644 --- a/include/version.inc +++ b/include/version.inc @@ -20,13 +20,13 @@ $RELEASES = (function () { /* PHP 8.2 Release */ $data['8.2'] = [ - 'version' => '8.2.4', - 'date' => '16 Mar 2023', + 'version' => '8.2.5', + 'date' => '13 Apr 2023', 'tags' => [], // Set to ['security'] for security releases. 'sha256' => [ - 'tar.gz' => 'cee7748015a2ddef1739d448b980b095dccd09ed589cf1b6c6ee2d16f5e73c50', - 'tar.bz2' => '79186f94bd510db86e31e535dd448277a1eb92a87878303a1ead44602d8b1197', - 'tar.xz' => 'bc7bf4ca7ed0dd17647e3ea870b6f062fcb56b243bfdef3f59ff7f94e96176a8', + 'tar.gz' => '8974dea2507155471660b13a0bcbdc165ac778eeb845a7dbd65d5ffb92738c0a', + 'tar.bz2' => 'e5a80663cca4f6044ad86a489798147c7af037eca96f6cd357ab36d28cb63757', + 'tar.xz' => '800738c359b7f1e67e40c22713d2d90276bc85ba1c21b43d99edd43c254c5f76', ] ]; diff --git a/releases/8_2_5.php b/releases/8_2_5.php new file mode 100644 index 000000000..9344a22de --- /dev/null +++ b/releases/8_2_5.php @@ -0,0 +1,16 @@ +<?php +$_SERVER['BASE_PAGE'] = 'releases/8_2_5.php'; +include_once __DIR__ . '/../include/prepend.inc'; +site_header('PHP 8.2.5 Release Announcement'); +?> +<h1>PHP 8.2.5 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.5. This is a bug fix release.</p> + +<p>All PHP 8.2 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.2.5 please visit our <a href="https://www.php.net/downloads.php">downloads page</a>, +Windows source and binaries can be found on <a href="https://windows.php.net/download/">windows.php.net/download/</a>. +The list of changes is recorded in the <a href="https://www.php.net/ChangeLog-8.php#8.2.5">ChangeLog</a>. +</p> +<?php site_footer(); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php