1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Announce PHP 8.1.19

This commit is contained in:
Patrick Allaert
2023-05-11 23:55:50 +02:00
parent 1869e90eec
commit f5878f9d8e
6 changed files with 117 additions and 5 deletions

View File

@@ -762,6 +762,44 @@ changelog_header(8, $MINOR_VERSIONS);
<a id="PHP_8_1"></a>
<section class="version" id="8.1.19"><!-- {{{ 8.1.19 -->
<h3>Version 8.1.19</h3>
<b><?php release_date('11-May-2023'); ?></b>
<ul><li>Core:
<ul>
<li>Fix inconsistent float negation in constant expressions.</li>
<li>Fixed bug <?php githubissuel('php/php-src', 8841); ?> (php-cli core dump calling a badly formed function).</li>
<li>Fixed bug <?php githubissuel('php/php-src', 10737); ?> (PHP 8.1.16 segfaults on line 597 of sapi/apache2handler/sapi_apache2.c).</li>
<li>Fixed bug <?php githubissuel('php/php-src', 11028); ?> (Heap Buffer Overflow in zval_undefined_cv.).</li>
<li>Fixed bug <?php githubissuel('php/php-src', 11108); ?> (Incorrect CG(memoize_mode) state after bailout in ??=).</li>
</ul></li>
<li>DOM:
<ul>
<li><?php bugfix(80602); ?> (Segfault when using DOMChildNode::before()).</li>
<li>Fixed incorrect error handling in dom_zvals_to_fragment().</li>
</ul></li>
<li>Exif:
<ul>
<li>Fixed bug <?php githubissuel('php/php-src', 9397); ?> (exif read : warnings and errors : Potentially invalid endianess, Illegal IFD size and Undefined index).</li>
</ul></li>
<li>Intl:
<ul>
<li>Fixed bug <?php githubissuel('php/php-src', 11071); ?> (TZData version not displayed anymore).</li>
</ul></li>
<li>PCRE:
<ul>
<li>Fixed bug <?php githubissuel('php/php-src', 10968); ?> (Segfault in preg_replace_callback_array()).</li>
</ul></li>
<li>Standard:
<ul>
<li>Fixed bug <?php githubissuel('php/php-src', 10990); ?> (mail() throws TypeError after iterating over $additional_headers array by reference).</li>
<li>Fixed bug <?php githubissuel('php/php-src', 9775); ?> (Duplicates returned by array_unique when using enums).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="8.1.18"><!-- {{{ 8.1.18 -->
<h3>Version 8.1.18</h3>
<b><?php release_date('13-Apr-2023'); ?></b>

View File

@@ -9,6 +9,7 @@
<uri>http://php.net/contact</uri>
<email>php-webmaster@lists.php.net</email>
</author>
<xi:include href="entries/2023-05-11-2.xml"/>
<xi:include href="entries/2023-05-11-1.xml"/>
<xi:include href="entries/2023-04-13-2.xml"/>
<xi:include href="entries/2023-04-13-1.xml"/>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 8.1.19 Released!</title>
<id>https://www.php.net/archive/2023.php#2023-05-11-2</id>
<published>2023-05-11T23:40:59+00:00</published>
<updated>2023-05-11T23:40:59+00:00</updated>
<link href="https://www.php.net/index.php#2023-05-11-2" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2023.php#2023-05-11-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.1.19. This is a bug fix release.</p>
<p>All PHP 8.1 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 8.1.19 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.1.19">ChangeLog</a>.
</p> </div>
</content>
</entry>

View File

@@ -2,6 +2,42 @@
$OLDRELEASES = array (
8 =>
array (
'8.1.18' =>
array (
'announcement' =>
array (
'English' => '/releases/8_1_18.php',
),
'tags' =>
array (
),
'date' => '13 Apr 2023',
'source' =>
array (
0 =>
array (
'filename' => 'php-8.1.18.tar.gz',
'name' => 'PHP 8.1.18 (tar.gz)',
'sha256' => '8b6b12902e7d6bdf68668acc067b4d75a3c504722f768098c5f80c7d7bfd2563',
'date' => '13 Apr 2023',
),
1 =>
array (
'filename' => 'php-8.1.18.tar.bz2',
'name' => 'PHP 8.1.18 (tar.bz2)',
'sha256' => 'd2ac30d6b574fca594fe0cc01c0693e23585b27443e342b0aab07274cde4416e',
'date' => '13 Apr 2023',
),
2 =>
array (
'filename' => 'php-8.1.18.tar.xz',
'name' => 'PHP 8.1.18 (tar.xz)',
'sha256' => 'f3553370f8ba42729a9ce75eed17a2111d32433a43b615694f6a571b8bad0e39',
'date' => '13 Apr 2023',
),
),
'museum' => false,
),
'8.2.5' =>
array (
'announcement' =>

View File

@@ -32,13 +32,13 @@ $RELEASES = (function () {
/* PHP 8.1 Release */
$data['8.1'] = [
'version' => '8.1.18',
'date' => '13 Apr 2023',
'version' => '8.1.19',
'date' => '11 May 2023',
'tags' => [], // Set to ['security'] for security releases.
'sha256' => [
'tar.gz' => '8b6b12902e7d6bdf68668acc067b4d75a3c504722f768098c5f80c7d7bfd2563',
'tar.bz2' => 'd2ac30d6b574fca594fe0cc01c0693e23585b27443e342b0aab07274cde4416e',
'tar.xz' => 'f3553370f8ba42729a9ce75eed17a2111d32433a43b615694f6a571b8bad0e39',
'tar.gz' => '0ebb6b0ecf5d8e355c2f1362807f9b73c6e803d496c5ad3e4fb00be989988372',
'tar.bz2' => '64207207fda30be926a2ef1f66ff266bf1fdc7e03339bc99fbba0a1245e4279b',
'tar.xz' => 'f42f0e93467415b2d30aa5b7ac825f0079a74207e0033010383cdc1e13657379',
]
];

16
releases/8_1_19.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
$_SERVER['BASE_PAGE'] = 'releases/8_1_19.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header('PHP 8.1.19 Release Announcement');
?>
<h1>PHP 8.1.19 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP 8.1.19. This is a bug fix release.</p>
<p>All PHP 8.1 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 8.1.19 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.1.19">ChangeLog</a>.
</p>
<?php site_footer();