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

7.2.28 annoucement

This commit is contained in:
Remi Collet
2020-02-20 10:03:22 +01:00
parent 1bb114f245
commit 13d4a41904
6 changed files with 102 additions and 5 deletions

View File

@@ -1815,6 +1815,24 @@ site_header("PHP 7 ChangeLog", array("current" => "docs", "css" => array("change
<a name="PHP_7_2"></a>
<section class="version" id="7.2.28"><!-- {{{ 7.2.28 -->
<h3>Version 7.2.28</h3>
<b><?php release_date('20-Feb-2020'); ?></b>
<ul><li>DOM:
<ul>
<li><?php bugfix(77569); ?>: (Write Access Violation in DomImplementation).</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(79082); ?> (Files added to tar with Phar::buildFromIterator have all-access permissions). (CVE-2020-7063)</li>
</ul></li>
<li>Session:
<ul>
<li><?php bugfix(79221); ?> (Null Pointer Dereference in PHP Session Upload Progress). (CVE-2020-7062)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="7.2.27"><!-- {{{ 7.2.27 -->
<h3>Version 7.2.27</h3>
<b><?php release_date('23-Jan-2020'); ?></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/2020-02-20-1.xml"/>
<xi:include href="entries/2020-02-17-1.xml"/>
<xi:include href="entries/2020-01-30-1.xml"/>
<xi:include href="entries/2020-01-23-3.xml"/>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 7.2.28 Released</title>
<id>https://www.php.net/archive/2020.php#2020-02-20-1</id>
<published>2020-02-20T09:01:15+00:00</published>
<updated>2020-02-20T09:01:15+00:00</updated>
<link href="https://www.php.net/index.php#id2020-02-20-1" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2020.php#2020-02-20-1" rel="via" type="text/html"/>
<category term="frontpage" label="PHP.net frontpage news"/>
<category term="releases" label="New PHP release"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>The PHP development team announces the immediate availability of PHP
7.2.28. This is a security release.</p>
<p>All PHP 7.2 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 7.2.28 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.2.28">ChangeLog</a>.
</p>
</div>
</content>
</entry>

View File

@@ -2,6 +2,43 @@
$OLDRELEASES = array (
7 =>
array (
'7.2.27' =>
array (
'announcement' =>
array (
'English' => '/releases/7_2_27.php',
),
'tags' =>
array (
0 => 'security',
),
'date' => '23 Jan 2020',
'source' =>
array (
0 =>
array (
'filename' => 'php-7.2.27.tar.bz2',
'name' => 'PHP 7.2.27 (tar.bz2)',
'sha256' => '5bc0695b171b870ceb083c5432c6a758d3dbd3830a0cf6cf35bd9b283a627049',
'date' => '23 Jan 2020',
),
1 =>
array (
'filename' => 'php-7.2.27.tar.gz',
'name' => 'PHP 7.2.27 (tar.gz)',
'sha256' => 'e00ace5e89cb162cba0aebd17144541e1c4d965589155a44ca706d9f9c5a8981',
'date' => '23 Jan 2020',
),
2 =>
array (
'filename' => 'php-7.2.27.tar.xz',
'name' => 'PHP 7.2.27 (tar.xz)',
'sha256' => '7bd0fb9e3b63cfe53176d1f3565cd686f90b3926217158de5ba57091f49e4c32',
'date' => '23 Jan 2020',
),
),
'museum' => false,
),
'7.3.13' =>
array (
'announcement' =>

View File

@@ -37,13 +37,13 @@ $RELEASES = (function() {
);
/* PHP 7.2 Release */
$PHP_7_2_VERSION = "7.2.27";
$PHP_7_2_DATE = "23 Jan 2020";
$PHP_7_2_VERSION = "7.2.28";
$PHP_7_2_DATE = "20 Feb 2020";
$PHP_7_2_TAGS = ['security']; // Set to ['security'] for security releases.
$PHP_7_2_SHA256 = array(
"tar.bz2" => "5bc0695b171b870ceb083c5432c6a758d3dbd3830a0cf6cf35bd9b283a627049",
"tar.gz" => "e00ace5e89cb162cba0aebd17144541e1c4d965589155a44ca706d9f9c5a8981",
"tar.xz" => "7bd0fb9e3b63cfe53176d1f3565cd686f90b3926217158de5ba57091f49e4c32",
"tar.bz2" => "7c953a5b79db3d8d45c65014aef382a48e1c3435cf0c2574e942957f0cdd52a3",
"tar.gz" => "ed5fede7602ccd8d1294b4e4aef7f92f4e3af58ab040bd349264b3f5dbef3261",
"tar.xz" => "afe1863301da572dee2e0bad8014813bcced162f980ddc8ec8e41fd72263eb2d",
);
return array(

17
releases/7_2_28.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
$_SERVER['BASE_PAGE'] = 'releases/7_2_28.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header("PHP 7.2.28 Release Announcement");
?>
<h1>PHP 7.2.28 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP 7.2.28.
This is a security release.</p>
<p>All PHP 7.2 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 7.2.28 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows source and binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-7.php#7.2.28">ChangeLog</a>.
</p>
<?php site_footer(); ?>