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

Announce 7.4.28

This commit is contained in:
Derick Rethans
2022-02-17 14:41:04 +00:00
parent 224b734946
commit 49a2d546f5
6 changed files with 91 additions and 5 deletions

View File

@@ -8,6 +8,18 @@ changelog_header(7, $MINOR_VERSIONS);
?>
<a id="PHP_7_4"></a>
<section class="version" id="7.4.28"><!-- {{{ 7.4.28 -->
<h3>Version 7.4.28</h3>
<b><?php release_date('17-Feb-2022'); ?></b>
<ul><li>Filter:
<ul>
<li>Fix #81708: UAF due to php_filter_float() failing for ints (CVE-2021-21708)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="7.4.27"><!-- {{{ 7.4.27 -->
<h3>Version 7.4.27</h3>
<b><?php release_date('16-Dec-2021'); ?></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-02-17-1.xml"/>
<xi:include href="entries/2022-01-24-1.xml"/>
<xi:include href="entries/2022-01-21-1.xml"/>
<xi:include href="entries/2022-01-20-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 7.4.28 Released!</title>
<id>https://www.php.net/archive/2022.php#2022-02-17-1</id>
<published>2022-02-17T14:37:30+00:00</published>
<updated>2022-02-17T14:37:30+00:00</updated>
<link href="https://www.php.net/index.php#id2022-02-17-1" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2022.php#2022-02-17-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 7.4.28. This is a security release.</p>
<p>All PHP 7.4 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 7.4.28 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-7.php#7.4.28">ChangeLog</a>.
</p> </div>
</content>
</entry>

View File

@@ -585,6 +585,42 @@ $OLDRELEASES = array (
),
7 =>
array (
'7.4.27' =>
array (
'announcement' =>
array (
'English' => '/releases/7_4_27.php',
),
'tags' =>
array (
),
'date' => '16 Dec 2021',
'source' =>
array (
0 =>
array (
'filename' => 'php-7.4.27.tar.gz',
'name' => 'PHP 7.4.27 (tar.gz)',
'sha256' => '564fd5bc9850370db0cb4058d9087f2f40177fa4921ce698a375416db9ab43ca',
'date' => '16 Dec 2021',
),
1 =>
array (
'filename' => 'php-7.4.27.tar.bz2',
'name' => 'PHP 7.4.27 (tar.bz2)',
'sha256' => '184aaef313fbf28c9987f6aa07b655cd1b0eae9e7e17061775a3e7d880185563',
'date' => '16 Dec 2021',
),
2 =>
array (
'filename' => 'php-7.4.27.tar.xz',
'name' => 'PHP 7.4.27 (tar.xz)',
'sha256' => '3f8b937310f155822752229c2c2feb8cc2621e25a728e7b94d0d74c128c43d0c',
'date' => '16 Dec 2021',
),
),
'museum' => false,
),
'7.4.26' =>
array (
'announcement' =>

View File

@@ -44,13 +44,13 @@ $RELEASES = (function() {
/* PHP 7.4 Release */
$data['7.4'] = [
'version' => '7.4.27',
'date' => '16 Dec 2021',
'version' => '7.4.28',
'date' => '17 Feb 2022',
'tags' => [], // Set to ['security'] for security releases
'sha256' => [
'tar.gz' => '564fd5bc9850370db0cb4058d9087f2f40177fa4921ce698a375416db9ab43ca',
'tar.bz2' => '184aaef313fbf28c9987f6aa07b655cd1b0eae9e7e17061775a3e7d880185563',
'tar.xz' => '3f8b937310f155822752229c2c2feb8cc2621e25a728e7b94d0d74c128c43d0c',
'tar.gz' => 'a04014cd1646b90547907e2e0ac5371594533960de317b6c7ac70bcb42db92fb',
'tar.bz2' => '2085086a863444b0e39547de1a4969fd1c40a0c188eb58fab2938b649b0c4b58',
'tar.xz' => '9cc3b6f6217b60582f78566b3814532c4b71d517876c25013ae51811e65d8fce',
]
];

16
releases/7_4_28.php Normal file
View File

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