mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
Announce PHP 8.1.16
This commit is contained in:
@@ -500,6 +500,23 @@ changelog_header(8, $MINOR_VERSIONS);
|
||||
|
||||
<a id="PHP_8_1"></a>
|
||||
|
||||
<section class="version" id="8.1.16"><!-- {{{ 8.1.16 -->
|
||||
<h3>Version 8.1.16</h3>
|
||||
<b><?php release_date('14-Feb-2023'); ?></b>
|
||||
<ul><li>Core:
|
||||
<ul>
|
||||
<li><?php bugfix(81744); ?> (Password_verify() always return true with some hash).</li>
|
||||
<li><?php bugfix(81746); ?> (1-byte array overrun in common path resolve code).</li>
|
||||
</ul></li>
|
||||
<li>SAPI:
|
||||
<ul>
|
||||
<li>Fixed bug GHSA-54hq-v5wp-fqgv (DOS vulnerability when parsing multipart request body). (CVE-2023-0662)</li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!-- }}} --></section>
|
||||
|
||||
|
||||
|
||||
<section class="version" id="8.1.15"><!-- {{{ 8.1.15 -->
|
||||
<h3>Version 8.1.15</h3>
|
||||
<b><?php release_date('02-Feb-2023'); ?></b>
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
<uri>http://php.net/contact</uri>
|
||||
<email>php-webmaster@lists.php.net</email>
|
||||
</author>
|
||||
<xi:include href="entries/2023-02-14-3.xml"/>
|
||||
<xi:include href="entries/2023-02-14-2.xml"/>
|
||||
<xi:include href="entries/2023-02-14-1.xml"/>
|
||||
<xi:include href="entries/2023-02-02-2.xml"/>
|
||||
|
||||
21
archive/entries/2023-02-14-3.xml
Normal file
21
archive/entries/2023-02-14-3.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<entry xmlns="http://www.w3.org/2005/Atom">
|
||||
<title>PHP 8.1.16 Released!</title>
|
||||
<id>https://www.php.net/archive/2023.php#2023-02-14-3</id>
|
||||
<published>2023-02-14T17:50:17+00:00</published>
|
||||
<updated>2023-02-14T17:50:17+00:00</updated>
|
||||
<link href="https://www.php.net/index.php#2023-02-14-3" rel="alternate" type="text/html"/>
|
||||
<link href="https://www.php.net/archive/2023.php#2023-02-14-3" 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.16. This is a security release that addresses CVE-2023-0567, CVE-2023-0568, and CVE-2023-0662.</p>
|
||||
|
||||
<p>All PHP 8.1 users are advised to upgrade to this version.</p>
|
||||
|
||||
<p>For source downloads of PHP 8.1.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.1.16">ChangeLog</a>.
|
||||
</p> </div>
|
||||
</content>
|
||||
</entry>
|
||||
@@ -2,6 +2,42 @@
|
||||
$OLDRELEASES = array (
|
||||
8 =>
|
||||
array (
|
||||
'8.1.15' =>
|
||||
array (
|
||||
'announcement' =>
|
||||
array (
|
||||
'English' => '/releases/8_1_15.php',
|
||||
),
|
||||
'tags' =>
|
||||
array (
|
||||
),
|
||||
'date' => '02 Feb 2023',
|
||||
'source' =>
|
||||
array (
|
||||
0 =>
|
||||
array (
|
||||
'filename' => 'php-8.1.15.tar.gz',
|
||||
'name' => 'PHP 8.1.15 (tar.gz)',
|
||||
'sha256' => '4035236180efac535ff4f22db9ef3195672f31e3e0aa88f89c38ac0715beca3b',
|
||||
'date' => '02 Feb 2023',
|
||||
),
|
||||
1 =>
|
||||
array (
|
||||
'filename' => 'php-8.1.15.tar.bz2',
|
||||
'name' => 'PHP 8.1.15 (tar.bz2)',
|
||||
'sha256' => '18da0a94228f4207f8b9e3e23e881f2b74d0d6caefb908bdb5863d4a01035cc6',
|
||||
'date' => '02 Feb 2023',
|
||||
),
|
||||
2 =>
|
||||
array (
|
||||
'filename' => 'php-8.1.15.tar.xz',
|
||||
'name' => 'PHP 8.1.15 (tar.xz)',
|
||||
'sha256' => 'cd450fb4ee50488c5bf5f08851f514e5a1cac18c9512234d9e16c3a1d35781a6',
|
||||
'date' => '02 Feb 2023',
|
||||
),
|
||||
),
|
||||
'museum' => false,
|
||||
),
|
||||
'8.2.2' =>
|
||||
array (
|
||||
'announcement' =>
|
||||
|
||||
@@ -32,13 +32,13 @@ $RELEASES = (function () {
|
||||
|
||||
/* PHP 8.1 Release */
|
||||
$data['8.1'] = [
|
||||
'version' => '8.1.15',
|
||||
'date' => '02 Feb 2023',
|
||||
'tags' => [], // Set to ['security'] for security releases.
|
||||
'version' => '8.1.16',
|
||||
'date' => '14 Feb 2023',
|
||||
'tags' => ['security'], // Set to ['security'] for security releases.
|
||||
'sha256' => [
|
||||
'tar.gz' => '4035236180efac535ff4f22db9ef3195672f31e3e0aa88f89c38ac0715beca3b',
|
||||
'tar.bz2' => '18da0a94228f4207f8b9e3e23e881f2b74d0d6caefb908bdb5863d4a01035cc6',
|
||||
'tar.xz' => 'cd450fb4ee50488c5bf5f08851f514e5a1cac18c9512234d9e16c3a1d35781a6',
|
||||
'tar.gz' => 'cb1f2ef7af37aa9978e7742818d9edbf27b1db009bc3dfefe7dc522cb3d3423d',
|
||||
'tar.bz2' => '95f2e4f2502906ac233217844806018e888135f0718649f4a0a67e40e450ffa1',
|
||||
'tar.xz' => '7108b7347981ad6e610aaf3b3fb0f6444019ab6f59a872c1b55a29bc753eba93',
|
||||
]
|
||||
];
|
||||
|
||||
|
||||
16
releases/8_1_16.php
Normal file
16
releases/8_1_16.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
$_SERVER['BASE_PAGE'] = 'releases/8_1_16.php';
|
||||
include_once __DIR__ . '/../include/prepend.inc';
|
||||
site_header('PHP 8.1.16 Release Announcement');
|
||||
?>
|
||||
<h1>PHP 8.1.16 Release Announcement</h1>
|
||||
|
||||
<p>The PHP development team announces the immediate availability of PHP 8.1.16. This is a security release that addresses CVE-2023-0567, CVE-2023-0568, and CVE-2023-0662.</p>
|
||||
|
||||
<p>All PHP 8.1 users are advised to upgrade to this version.</p>
|
||||
|
||||
<p>For source downloads of PHP 8.1.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.1.16">ChangeLog</a>.
|
||||
</p>
|
||||
<?php site_footer();
|
||||
Reference in New Issue
Block a user