Author: Pierrick Charron (adoy) Date: 2024-02-15T13:38:52-05:00 Commit: https://github.com/php/web-php/commit/dd99904e209c92d51961127c1eefe5f5cd745634 Raw diff: https://github.com/php/web-php/commit/dd99904e209c92d51961127c1eefe5f5cd745634.diff
Announce PHP 8.2.16 Changed paths: A archive/entries/2024-02-15-2.xml A releases/8_2_16.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 54ab602d5a..8b349b0f6c 100644 --- a/ChangeLog-8.php +++ b/ChangeLog-8.php @@ -508,6 +508,67 @@ <a id="PHP_8_2"></a> +<section class="version" id="8.2.16"><!-- {{{ 8.2.16 --> +<h3>Version 8.2.16</h3> +<b><?php release_date('15-Feb-2024'); ?></b> +<ul><li>Core: +<ul> + <li>Fixed timer leak in zend-max-execution-timers builds.</li> + <li>Fixed bug <?php githubissuel('php/php-src', 12349); ?> (linking failure on ARM with mold).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 13097); ?> (Anonymous class reference in trigger_error / thrown Exception).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 13215); ?> (GCC 14 build failure).</li> +</ul></li> +<li>Curl: +<ul> + <li>Fix missing error check in curl_multi_init().</li> +</ul></li> +<li>FPM: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 12996); ?> (Incorrect SCRIPT_NAME with Apache ProxyPassMatch when plus in path).</li> +</ul></li> +<li>GD: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 10344); ?> (imagettfbbox(): Could not find/open font UNC path).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 10614); ?> (imagerotate will turn the picture all black, when rotated 90).</li> +</ul></li> +<li>MySQLnd: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 12107); ?> (When running a stored procedure (that returns a result set) twice, PHP crashes).</li> +</ul></li> +<li>Opcache: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 13232); ?> (Segmentation fault will be reported when JIT is off but JIT_debug is still on).</li> +</ul></li> +<li>OpenSSL: +<ul> + <li>Fixed LibreSSL undefined reference when OPENSSL_NO_ENGINE not set. (David Carlier).</li> +</ul></li> +<li>PDO_Firebird: +<ul> + <li>Fix <?php githubissuel('php/php-src', 13119); ?> (Changed to convert float and double values into strings using `H` format).</li> +</ul></li> +<li>Phar: +<ul> + <li><?php bugfix(71465); ?> (PHAR doesn't know about litespeed).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 13037); ?> (PharData incorrectly extracts zip file).</li> +</ul></li> +<li>Random: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 13138); ?> (Randomizer::pickArrayKeys() does not detect broken engines).</li> +</ul></li> +<li>Session: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 12504); ?> (Corrupted session written when there's a fatal error in autoloader).</li> +</ul></li> +<li>Streams: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 13071); ?> (Copying large files using mmap-able source streams may exhaust available memory and fail).</li> +</ul></li> +</ul> +<!-- }}} --></section> + + + <section class="version" id="8.2.15"><!-- {{{ 8.2.15 --> <h3>Version 8.2.15</h3> <b><?php release_date('18-Jan-2024'); ?></b> diff --git a/archive/archive.xml b/archive/archive.xml index 0f8bde1b03..cf55052c23 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/2024-02-15-2.xml"/> <xi:include href="entries/2024-02-15-1.xml"/> <xi:include href="entries/2024-02-13-1.xml"/> <xi:include href="entries/2024-01-30-1.xml"/> diff --git a/archive/entries/2024-02-15-2.xml b/archive/entries/2024-02-15-2.xml new file mode 100644 index 0000000000..081ff72ce4 --- /dev/null +++ b/archive/entries/2024-02-15-2.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<entry xmlns="http://www.w3.org/2005/Atom"> + <title>PHP 8.2.16 Released!</title> + <id>https://www.php.net/archive/2024.php#2024-02-15-2</id> + <published>2024-02-15T13:36:20-05:00</published> + <updated>2024-02-15T13:36:20-05:00</updated> + <link href="https://www.php.net/index.php#2024-02-15-2" rel="alternate" type="text/html"/> + <link href="https://www.php.net/archive/2024.php#2024-02-15-2" 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.16. 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.16 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.16">ChangeLog</a>. +</p> </div> + </content> +</entry> diff --git a/include/releases.inc b/include/releases.inc index 1b9a833082..3980daf64b 100644 --- a/include/releases.inc +++ b/include/releases.inc @@ -2,6 +2,42 @@ $OLDRELEASES = array ( 8 => array ( + '8.2.15' => + array ( + 'announcement' => + array ( + 'English' => '/releases/8_2_15.php', + ), + 'tags' => + array ( + ), + 'date' => '18 Jan 2024', + 'source' => + array ( + 0 => + array ( + 'filename' => 'php-8.2.15.tar.gz', + 'name' => 'PHP 8.2.15 (tar.gz)', + 'sha256' => 'f9390d23708c65f428e868583dce7ab4a69e88ab6f377137a56643076f966b8f', + 'date' => '18 Jan 2024', + ), + 1 => + array ( + 'filename' => 'php-8.2.15.tar.bz2', + 'name' => 'PHP 8.2.15 (tar.bz2)', + 'sha256' => '50c3e220b7aa63a85716233c902eb44cc0a4667ed0b8335722ae2391b1355e7a', + 'date' => '18 Jan 2024', + ), + 2 => + array ( + 'filename' => 'php-8.2.15.tar.xz', + 'name' => 'PHP 8.2.15 (tar.xz)', + 'sha256' => 'eca5deac02d77d806838275f8a3024b38b35ac0a5d9853dcc71c6cbe3f1f8765', + 'date' => '18 Jan 2024', + ), + ), + 'museum' => false, + ), '8.3.2' => array ( 'announcement' => diff --git a/include/version.inc b/include/version.inc index d6f9ebfdec..aefe3a8045 100644 --- a/include/version.inc +++ b/include/version.inc @@ -32,13 +32,13 @@ $RELEASES = (function () { /* PHP 8.2 Release */ $data['8.2'] = [ - 'version' => '8.2.15', - 'date' => '18 Jan 2024', + 'version' => '8.2.16', + 'date' => '15 Feb 2024', 'tags' => [], // Set to ['security'] for security releases. 'sha256' => [ - 'tar.gz' => 'f9390d23708c65f428e868583dce7ab4a69e88ab6f377137a56643076f966b8f', - 'tar.bz2' => '50c3e220b7aa63a85716233c902eb44cc0a4667ed0b8335722ae2391b1355e7a', - 'tar.xz' => 'eca5deac02d77d806838275f8a3024b38b35ac0a5d9853dcc71c6cbe3f1f8765', + 'tar.gz' => '62a92ef7c2c6f44b12e459d8f3d649aa8ebac5e05845f7479fe55a7580cd2dd0', + 'tar.bz2' => '2658c1b8935ab6b53a7f209354602761ab07066e66920bc472b8815fd1b43f71', + 'tar.xz' => '28cdc995b7d5421711c7044294885fcde4390c9f67504a994b4cf9bc1b5cc593', ] ]; diff --git a/releases/8_2_16.php b/releases/8_2_16.php new file mode 100644 index 0000000000..8dc7c813ce --- /dev/null +++ b/releases/8_2_16.php @@ -0,0 +1,16 @@ +<?php +$_SERVER['BASE_PAGE'] = 'releases/8_2_16.php'; +include_once __DIR__ . '/../include/prepend.inc'; +site_header('PHP 8.2.16 Release Announcement'); +?> +<h1>PHP 8.2.16 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.2.16. 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.16 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.16">ChangeLog</a>. +</p> +<?php site_footer();