Author: Jakub Zelenka (bukka) Date: 2024-12-19T17:44:15+01:00 Commit: https://github.com/php/web-php/commit/cc974cb95ea11bf75ba9abc5e260279ea412314b Raw diff: https://github.com/php/web-php/commit/cc974cb95ea11bf75ba9abc5e260279ea412314b.diff
Announce PHP 8.3.15 Changed paths: A archive/entries/2024-12-19-2.xml A releases/8_3_15.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 9c2a0329d9..a470686c96 100644 --- a/ChangeLog-8.php +++ b/ChangeLog-8.php @@ -540,6 +540,107 @@ <a id="PHP_8_3"></a> +<section class="version" id="8.3.15"><!-- {{{ 8.3.15 --> +<h3>Version 8.3.15</h3> +<b><?php release_date('19-Dec-2024'); ?></b> +<ul><li>Calendar: +<ul> + <li>Fixed jdtogregorian overflow.</li> + <li>Fixed cal_to_jd julian_days argument overflow.</li> +</ul></li> +<li>COM: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16991); ?> (Getting typeinfo of non DISPATCH variant segfaults).</li> +</ul></li> +<li>Core: +<ul> + <li>Fail early in *nix configuration build script.</li> + <li>Fixed bug <?php githubissuel('php/php-src', 16727); ?> (Opcache bad signal 139 crash in ZTS bookworm (frankenphp)).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 16799); ?> (Assertion failure at Zend/zend_vm_execute.h:7469).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 16630); ?> (UAF in lexer with encoding translation and heredocs).</li> + <li>Fix is_zend_ptr() huge block comparison.</li> + <li>Fixed potential OOB read in zend_dirname() on Windows.</li> +</ul></li> +<li>Curl: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16802); ?> (open_basedir bypass using curl extension).</li> + <li>Fix various memory leaks in curl mime handling.</li> +</ul></li> +<li>DOM: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16777); ?> (Calling the constructor again on a DOM object after it is in a document causes UAF).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 16906); ?> (Reloading document can cause UAF in iterator).</li> +</ul></li> +<li>FPM: +<ul> + <li>Fixed <?php githubissuel('php/php-src', 16432); ?> (PHP-FPM 8.2 SIGSEGV in fpm_get_status).</li> +</ul></li> +<li>GD: +<ul> + <li>Fixed <?php githubissuel('php/php-src', 16776); ?> (imagecreatefromstring overflow).</li> +</ul></li> +<li>GMP: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16890); ?> (array_sum() with GMP can loose precision (LLP64)).</li> +</ul></li> +<li>Hash: +<ul> + <li>Fixed <?php githubissuel('php/php-src', 16711); ?>: Segfault in mhash().</li> +</ul></li> +<li>Opcache: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16770); ?> (Tracing JIT type mismatch when returning UNDEF).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 16851); ?> (JIT_G(enabled) not set correctly on other threads).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 16902); ?> (Set of opcache tests fail zts+aarch64).</li> +</ul></li> +<li>OpenSSL: +<ul> + <li>Prevent unexpected array entry conversion when reading key.</li> + <li>Fix various memory leaks related to openssl exports.</li> + <li>Fix memory leak in php_openssl_pkey_from_zval().</li> +</ul></li> +<li>PDO: +<ul> + <li>Fixed memory leak of `setFetchMode()`.</li> +</ul></li> +<li>Phar: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16695); ?> (phar:// tar parser and zero-length file header blocks).</li> +</ul></li> +<li>PHPDBG: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 15208); ?> (Segfault with breakpoint map and phpdbg_clear()).</li> +</ul></li> +<li>SAPI: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16998); ?> (UBSAN warning in rfc1867).</li> +</ul></li> +<li>SimpleXML: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16808); ?> (Segmentation fault in RecursiveIteratorIterator ->current() with a xml element input).</li> +</ul></li> +<li>SOAP: +<ul> + <li>Fix make check being invoked in ext/soap.</li> +</ul></li> +<li>Standard: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16905); ?> (Internal iterator functions can't handle UNDEF properties).</li> + <li>Fixed bug <?php githubissuel('php/php-src', 16957); ?> (Assertion failure in array_shift with self-referencing array).</li> +</ul></li> +<li>Streams: +<ul> + <li>Fixed network connect poll interuption handling.</li> +</ul></li> +<li>Windows: +<ul> + <li>Fixed bug <?php githubissuel('php/php-src', 16849); ?> (Error dialog causes process to hang).</li> +</ul></li> +</ul> +<!-- }}} --></section> + + + <section class="version" id="8.3.14"><!-- {{{ 8.3.14 --> <h3>Version 8.3.14</h3> <b><?php release_date('21-Nov-2024'); ?></b> diff --git a/archive/archive.xml b/archive/archive.xml index 4200bc4e24..63ab645117 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-12-19-2.xml"/> <xi:include href="entries/2024-12-19-1.xml"/> <xi:include href="entries/2024-12-13-1.xml"/> <xi:include href="entries/2024-12-09-1.xml"/> diff --git a/archive/entries/2024-12-19-2.xml b/archive/entries/2024-12-19-2.xml new file mode 100644 index 0000000000..ba1fc831b3 --- /dev/null +++ b/archive/entries/2024-12-19-2.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<entry xmlns="http://www.w3.org/2005/Atom"> + <title>PHP 8.3.15 Released!</title> + <id>https://www.php.net/archive/2024.php#2024-12-19-2</id> + <published>2024-12-19T16:40:56+00:00</published> + <updated>2024-12-19T16:40:56+00:00</updated> + <link href="https://www.php.net/index.php#2024-12-19-2" rel="alternate" type="text/html"/> + <link href="https://www.php.net/archive/2024.php#2024-12-19-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.3.15. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.15 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.3.15">ChangeLog</a>. +</p> </div> + </content> +</entry> diff --git a/include/releases.inc b/include/releases.inc index 25d613cccc..17a0cef20a 100644 --- a/include/releases.inc +++ b/include/releases.inc @@ -2,6 +2,43 @@ $OLDRELEASES = array ( 8 => array ( + '8.3.14' => + array ( + 'announcement' => + array ( + 'English' => '/releases/8_3_14.php', + ), + 'tags' => + array ( + 0 => 'security', + ), + 'date' => '21 Nov 2024', + 'source' => + array ( + 0 => + array ( + 'filename' => 'php-8.3.14.tar.gz', + 'name' => 'PHP 8.3.14 (tar.gz)', + 'sha256' => 'e4ee602c31e2f701c9f0209a2902dd4802727431246a9155bf56dda7bcf7fb4a', + 'date' => '21 Nov 2024', + ), + 1 => + array ( + 'filename' => 'php-8.3.14.tar.bz2', + 'name' => 'PHP 8.3.14 (tar.bz2)', + 'sha256' => 'f56fa669ce4c01452a2921f40034d779d8c2b97d0749493ad4781813b9221cf8', + 'date' => '21 Nov 2024', + ), + 2 => + array ( + 'filename' => 'php-8.3.14.tar.xz', + 'name' => 'PHP 8.3.14 (tar.xz)', + 'sha256' => '58b4cb9019bf70c0cbcdb814c7df79b9065059d14cf7dbf48d971f8e56ae9be7', + 'date' => '21 Nov 2024', + ), + ), + 'museum' => false, + ), '8.2.26' => array ( 'announcement' => diff --git a/include/version.inc b/include/version.inc index d6c5523f56..908e1c6cac 100644 --- a/include/version.inc +++ b/include/version.inc @@ -32,13 +32,13 @@ $RELEASES = (function () { /* PHP 8.3 Release */ $data['8.3'] = [ - 'version' => '8.3.14', - 'date' => '21 Nov 2024', - 'tags' => ['security'], // Set to ['security'] for security releases. + 'version' => '8.3.15', + 'date' => '19 Dec 2024', + 'tags' => [], // Set to ['security'] for security releases. 'sha256' => [ - 'tar.gz' => 'e4ee602c31e2f701c9f0209a2902dd4802727431246a9155bf56dda7bcf7fb4a', - 'tar.bz2' => 'f56fa669ce4c01452a2921f40034d779d8c2b97d0749493ad4781813b9221cf8', - 'tar.xz' => '58b4cb9019bf70c0cbcdb814c7df79b9065059d14cf7dbf48d971f8e56ae9be7', + 'tar.gz' => '67073c3c9c56c86461e0715d9e1806af5ddffe8e6e2eb9781f7923bbb5bd67fa', + 'tar.bz2' => 'b1675a4ff730b5811b8e6a7687488c42e835e156a99776aa3e6f017abda3be98', + 'tar.xz' => '3df5d45637283f759eef8fc3ce03de829ded3e200c3da278936a684955d2f94f', ] ]; diff --git a/releases/8_3_15.php b/releases/8_3_15.php new file mode 100644 index 0000000000..81a5b8b1ea --- /dev/null +++ b/releases/8_3_15.php @@ -0,0 +1,16 @@ +<?php +$_SERVER['BASE_PAGE'] = 'releases/8_3_15.php'; +include_once __DIR__ . '/../include/prepend.inc'; +site_header('PHP 8.3.15 Release Announcement'); +?> +<h1>PHP 8.3.15 Release Announcement</h1> + +<p>The PHP development team announces the immediate availability of PHP 8.3.15. This is a bug fix release.</p> + +<p>All PHP 8.3 users are encouraged to upgrade to this version.</p> + +<p>For source downloads of PHP 8.3.15 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.3.15">ChangeLog</a>. +</p> +<?php site_footer();