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

Announce PHP 8.0.22

This commit is contained in:
Gabriel Caruso
2022-08-04 10:11:55 +02:00
parent 7a25d90068
commit 86ea3fc524
6 changed files with 14488 additions and 14367 deletions

View File

@@ -751,6 +751,53 @@ changelog_header(8, $MINOR_VERSIONS);
<a id="PHP_8_0"></a>
<section class="version" id="8.0.22"><!-- {{{ 8.0.22 -->
<h3>Version 8.0.22</h3>
<b><?php release_date('04-Aug-2022'); ?></b>
<ul><li>CLI:
<ul>
<li>Fixed potential overflow for the builtin server via the PHP_CLI_SERVER_WORKERS environment variable.</li>
</ul></li>
<li>Core:
<ul>
<li>Fixed bug <?php githubissuel('php/php-src', 8923); ?> (error_log on Windows can hold the file write lock).</li>
<li>Fixed bug <?php githubissuel('php/php-src', 8995); ?> (WeakMap object reference offset causing TypeError).</li>
</ul></li>
<li>Date:
<ul>
<li><?php bugfix(80047); ?> (DatePeriod doesn't warn with custom DateTimeImmutable).</li>
</ul></li>
<li>DBA:
<ul>
<li>Fixed LMDB driver hanging when attempting to delete a non-existing key (Girgias)</li>
</ul></li>
<li>FPM:
<ul>
<li>Fixed zlog message prepend, free on incorrect address.</li>
<li>Fixed possible double free on configuration loading failure. (Heiko Weber).</li>
</ul></li>
<li>GD:
<ul>
<li>Fixed bug <?php githubissuel('php/php-src', 8848); ?> (imagecopyresized() error refers to the wrong argument).</li>
</ul></li>
<li>Intl:
<ul>
<li>Fixed build for ICU 69.x and onwards.</li>
</ul></li>
<li>OPcache:
<ul>
<li>Fixed bug <?php githubissuel('php/php-src', 8847); ?> (PHP hanging infinitly at 100% cpu when check php syntaxe of a valid file).</li>
</ul></li>
<li>Standard:
<ul>
<li>Fixed the crypt_sha256/512 api build with clang &gt; 12.</li>
<li>Uses CCRandomGenerateBytes instead of arc4random_buf on macOs. (David Carlier).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="8.0.21"><!-- {{{ 8.0.21 -->
<h3>Version 8.0.21</h3>
<b><?php release_date('07-Jul-2022'); ?></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/2022-08-04-1.xml"/>
<xi:include href="entries/2022-07-21-1.xml"/>
<xi:include href="entries/2022-07-14-1.xml"/>
<xi:include href="entries/2022-07-07-3.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.0.22 Released!</title>
<id>https://www.php.net/archive/2022.php#2022-08-04-1</id>
<published>2022-08-04T08:10:19+00:00</published>
<updated>2022-08-04T08:10:19+00:00</updated>
<link href="https://www.php.net/index.php#2022-08-04-1" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2022.php#2022-08-04-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.0.22. This is a bug fix release.</p>
<p>All PHP 8.0 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 8.0.22 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.0.22">ChangeLog</a>.
</p> </div>
</content>
</entry>

File diff suppressed because it is too large Load Diff

View File

@@ -32,13 +32,13 @@ $RELEASES = (function () {
/* PHP 8.0 Release */
$data['8.0'] = [
'version' => '8.0.21',
'date' => '07 Jul 2022',
'version' => '8.0.22',
'date' => '04 Aug 2022',
'tags' => [], // Set to ['security'] for security releases.
'sha256' => [
'tar.gz' => '2f51f6e90e2e8efd3a20db08f0dd61d7f8d5a9362f8c7325f1ad28ccea5be0ac',
'tar.bz2' => '1cb7762d1ffecceaeebafb9f6e24132ca23fb1443cb5630d0fccf53f04cfa126',
'tar.xz' => 'e87a598f157e0cf0606e64382bb91c8b30c47d4a0fc96b2c17ad547a27869b3b',
'tar.gz' => '56fce7529a9798fd0895bca3539d2a65b9cac5d23ffbdf6338419c62ed083519',
'tar.bz2' => 'e342918d3ecd422f10032df0ac3ffb0e17f568fad6cf8e232b6f7a6a1fdc3c9c',
'tar.xz' => '130937c0fa3050cd33d6c415402f6ccbf0682ae83eb8d39c91164224ddfe57f1',
]
];

16
releases/8_0_22.php Normal file
View File

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