mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
Announce 8.0.26
This commit is contained in:
@@ -989,6 +989,45 @@ changelog_header(8, $MINOR_VERSIONS);
|
||||
|
||||
<a id="PHP_8_0"></a>
|
||||
|
||||
<section class="version" id="8.0.26"><!-- {{{ 8.0.26 -->
|
||||
<h3>Version 8.0.26</h3>
|
||||
<b><?php release_date('24-Nov-2022'); ?></b>
|
||||
<ul><li>CLI:
|
||||
<ul>
|
||||
<li>Fixed bug <?php githubissuel('php/php-src', 9709); ?> (Null pointer dereference with -w/-s options).</li>
|
||||
</ul></li>
|
||||
<li>Core:
|
||||
<ul>
|
||||
<li>Fixed bug <?php githubissuel('php/php-src', 9752); ?> (Generator crashes when interrupted during argument evaluation with extra named params).</li>
|
||||
<li>Fixed bug <?php githubissuel('php/php-src', 9801); ?> (Generator crashes when memory limit is exceeded during initialization).</li>
|
||||
<li>Fixed potential NULL pointer dereference in Windows shm*() functions.</li>
|
||||
<li>Fixed bug <?php githubissuel('php/php-src', 9750); ?> (Generator memory leak when interrupted during argument evaluation.</li>
|
||||
</ul></li>
|
||||
<li>Date:
|
||||
<ul>
|
||||
<li>Fixed bug <?php githubissuel('php/php-src', 9763); ?> (DateTimeZone ctr mishandles input and adds null byte if the argument is an offset larger than 100*60 minutes).</li>
|
||||
</ul></li>
|
||||
<li>FPM:
|
||||
<ul>
|
||||
<li>Fixed bug <?php githubissuel('php/php-src', 9754); ?> (SaltStack (using Python subprocess) hangs when running php-fpm 8.1.11).</li>
|
||||
</ul></li>
|
||||
<li>mysqli:
|
||||
<ul>
|
||||
<li>Fixed bug <?php githubissuel('php/php-src', 9841); ?> (mysqli_query throws warning despite using silenced error mode).</li>
|
||||
</ul></li>
|
||||
<li>OpenSSL:
|
||||
<ul>
|
||||
<li>Fixed bug <?php githubissuel('php/php-src', 8430); ?> (OpenSSL compiled with no-md2, no-md4 or no-rmd160 does not build).</li>
|
||||
</ul></li>
|
||||
<li>SOAP:
|
||||
<ul>
|
||||
<li>Fixed <?php githubissuel('php/php-src', 9720); ?> (Null pointer dereference while serializing the response).</li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!-- }}} --></section>
|
||||
|
||||
|
||||
|
||||
<section class="version" id="8.0.25"><!-- {{{ 8.0.25 -->
|
||||
<h3>Version 8.0.25</h3>
|
||||
<b><?php release_date('27-Oct-2022'); ?></b>
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
<uri>http://php.net/contact</uri>
|
||||
<email>php-webmaster@lists.php.net</email>
|
||||
</author>
|
||||
<xi:include href="entries/2022-11-26-1.xml"/>
|
||||
<xi:include href="entries/2022-11-24-2.xml"/>
|
||||
<xi:include href="entries/2022-11-24-1.xml"/>
|
||||
<xi:include href="entries/2022-11-10-1.xml"/>
|
||||
|
||||
27
archive/entries/2022-11-26-1.xml
Normal file
27
archive/entries/2022-11-26-1.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<entry xmlns="http://www.w3.org/2005/Atom">
|
||||
<title>PHP 8.0.26 Released!</title>
|
||||
<id>https://www.php.net/archive/2022.php#2022-11-26-1</id>
|
||||
<published>2022-11-26T17:48:14+00:00</published>
|
||||
<updated>2022-11-26T17:48:14+00:00</updated>
|
||||
<link href="https://www.php.net/index.php#2022-11-26-1" rel="alternate" type="text/html"/>
|
||||
<link href="https://www.php.net/archive/2022.php#2022-11-26-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.26. 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.26 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.26">ChangeLog</a>.
|
||||
</p>
|
||||
|
||||
<p>Please note, this is the last bug-fix release for the 8.0.x series.
|
||||
Security fix support will continue until 26 Nov 2023.
|
||||
For more information, please check our
|
||||
<a href="https://www.php.net/supported-versions.php">Supported Versions</a> page.</p>
|
||||
</div>
|
||||
</content>
|
||||
</entry>
|
||||
@@ -2,6 +2,43 @@
|
||||
$OLDRELEASES = array (
|
||||
8 =>
|
||||
array (
|
||||
'8.0.25' =>
|
||||
array (
|
||||
'announcement' =>
|
||||
array (
|
||||
'English' => '/releases/8_0_25.php',
|
||||
),
|
||||
'tags' =>
|
||||
array (
|
||||
0 => 'security',
|
||||
),
|
||||
'date' => '27 Oct 2022',
|
||||
'source' =>
|
||||
array (
|
||||
0 =>
|
||||
array (
|
||||
'filename' => 'php-8.0.25.tar.gz',
|
||||
'name' => 'PHP 8.0.25 (tar.gz)',
|
||||
'sha256' => '349a2b5a01bfccbc9af8afdf183e57bed3349706a084f3c4694aa4c7ff7cb2e9',
|
||||
'date' => '27 Oct 2022',
|
||||
),
|
||||
1 =>
|
||||
array (
|
||||
'filename' => 'php-8.0.25.tar.bz2',
|
||||
'name' => 'PHP 8.0.25 (tar.bz2)',
|
||||
'sha256' => '09d716bceb5b3db76d9023b10c1681ebbe040e51f4c18dfd35f9ff8b73bbcf8c',
|
||||
'date' => '27 Oct 2022',
|
||||
),
|
||||
2 =>
|
||||
array (
|
||||
'filename' => 'php-8.0.25.tar.xz',
|
||||
'name' => 'PHP 8.0.25 (tar.xz)',
|
||||
'sha256' => 'a291b71d0498707fc5514eb5b9513e88f0f1d4890bcdefd67282ded8a2bfb941',
|
||||
'date' => '27 Oct 2022',
|
||||
),
|
||||
),
|
||||
'museum' => false,
|
||||
),
|
||||
'8.1.12' =>
|
||||
array (
|
||||
'announcement' =>
|
||||
|
||||
@@ -32,13 +32,13 @@ $RELEASES = (function () {
|
||||
|
||||
/* PHP 8.0 Release */
|
||||
$data['8.0'] = [
|
||||
'version' => '8.0.25',
|
||||
'date' => '27 Oct 2022',
|
||||
'tags' => ['security'], // Set to ['security'] for security releases.
|
||||
'version' => '8.0.26',
|
||||
'date' => '24 Nov 2022',
|
||||
'tags' => [], // Set to ['security'] for security releases.
|
||||
'sha256' => [
|
||||
'tar.gz' => '349a2b5a01bfccbc9af8afdf183e57bed3349706a084f3c4694aa4c7ff7cb2e9',
|
||||
'tar.bz2' => '09d716bceb5b3db76d9023b10c1681ebbe040e51f4c18dfd35f9ff8b73bbcf8c',
|
||||
'tar.xz' => 'a291b71d0498707fc5514eb5b9513e88f0f1d4890bcdefd67282ded8a2bfb941',
|
||||
'tar.gz' => '3c83a7355a640b2ba436b8202e8597df8f9daadee1ec9241729ece8e578d21cd',
|
||||
'tar.bz2' => '6df87af96f275a75889ece6e3fe4a13abd93a767a9992863bdc0e90f1e887ee7',
|
||||
'tar.xz' => '0765bfbe640dba37ccc36d2bc7c7b7ba3d2c3381c9cd4305f66eca83e82a40b3',
|
||||
]
|
||||
];
|
||||
|
||||
|
||||
21
releases/8_0_26.php
Normal file
21
releases/8_0_26.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
$_SERVER['BASE_PAGE'] = 'releases/8_0_26.php';
|
||||
include_once __DIR__ . '/../include/prepend.inc';
|
||||
site_header('PHP 8.0.26 Release Announcement');
|
||||
?>
|
||||
<h1>PHP 8.0.26 Release Announcement</h1>
|
||||
|
||||
<p>The PHP development team announces the immediate availability of PHP 8.0.26. 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.26 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.26">ChangeLog</a>.
|
||||
</p>
|
||||
|
||||
<p>Please note, this is the last bug-fix release for the 8.0.x series.
|
||||
Security fix support will continue until 26 Nov 2023.
|
||||
For more information, please check our
|
||||
<a href="https://www.php.net/supported-versions.php">Supported Versions</a> page.</p>
|
||||
<?php site_footer();
|
||||
Reference in New Issue
Block a user