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

Announce 7.3.21

This commit is contained in:
Christoph M. Becker
2020-08-06 10:22:47 +02:00
parent 05b76568ef
commit de60d423e0
6 changed files with 127 additions and 5 deletions

View File

@@ -978,6 +978,55 @@ site_header("PHP 7 ChangeLog", array("current" => "docs", "css" => array("change
<a name="PHP_7_3"></a>
<section class="version" id="7.3.21"><!-- {{{ 7.3.21 -->
<h3>Version 7.3.21</h3>
<b><?php release_date('06-Aug-2020'); ?></b>
<ul><li>Apache:
<ul>
<li><?php bugfix(79030); ?> (Upgrade apache2handler's php_apache_sapi_get_request_time to return usec).</li>
</ul></li>
<li>Core:
<ul>
<li><?php bugfix(79877); ?> (getimagesize function silently truncates after a null byte).</li>
<li><?php bugfix(79778); ?> (Assertion failure if dumping closure with unresolved static variable).</li>
<li><?php bugfix(79792); ?> (HT iterators not removed if empty array is destroyed).</li>
</ul></li>
<li>COM:
<ul>
<li><?php bugfix(63208); ?> (BSTR to PHP string conversion not binary safe).</li>
<li><?php bugfix(63527); ?> (DCOM does not work with Username, Password parameter).</li>
</ul></li>
<li>Curl:
<ul>
<li><?php bugfix(79741); ?> (curl_setopt CURLOPT_POSTFIELDS asserts on object with declared properties).</li>
</ul></li>
<li>Fileinfo:
<ul>
<li><?php bugfix(79756); ?> (finfo_file crash (FILEINFO_MIME)).</li>
</ul></li>
<li>FTP:
<ul>
<li><?php bugfix(55857); ?> (ftp_size on large files).</li>
</ul></li>
<li>Mbstring:
<ul>
<li><?php bugfix(79787); ?> (mb_strimwidth does not trim string).</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(79797); ?> (Use of freed hash key in the phar_parse_zipfile function). (CVE-2020-7068)</li>
</ul></li>
<li>Standard:
<ul>
<li><?php bugfix(70362); ?> (Can't copy() large 'data://' with open_basedir).</li>
<li><?php bugfix(79817); ?> (str_replace() does not handle INDIRECT elements).</li>
<li><?php bugfix(78008); ?> (dns_check_record() always return true on Alpine).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="7.3.20"><!-- {{{ 7.3.20 -->
<h3>Version 7.3.20</h3>
<b><?php release_date('09-Jul-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-08-06-2.xml"/>
<xi:include href="entries/2020-08-06-1.xml"/>
<xi:include href="entries/2020-07-23-1.xml"/>
<xi:include href="entries/2020-07-14-2.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.3.21 Released!</title>
<id>https://www.php.net/archive/2020.php#2020-08-06-2</id>
<published>2020-08-06T08:18:53+00:00</published>
<updated>2020-08-06T08:18:53+00:00</updated>
<link href="https://www.php.net/index.php#id2020-08-06-2" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2020.php#2020-08-06-2" 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.3.21. This is a security release.</p>
<p>All PHP 7.3 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 7.3.21 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.3.21">ChangeLog</a>.
</p> </div>
</content>
</entry>

View File

@@ -2,6 +2,43 @@
$OLDRELEASES = array (
7 =>
array (
'7.3.20' =>
array (
'announcement' =>
array (
'English' => '/releases/7_3_20.php',
),
'tags' =>
array (
0 => 'security',
),
'date' => '09 Jul 2020',
'source' =>
array (
0 =>
array (
'filename' => 'php-7.3.20.tar.bz2',
'name' => 'PHP 7.3.20 (tar.bz2)',
'sha256' => 'c6ed7894911acfe075381c01b07745d92e9259fac510a849f742edb6b95c89de',
'date' => '09 Jul 2020',
),
1 =>
array (
'filename' => 'php-7.3.20.tar.gz',
'name' => 'PHP 7.3.20 (tar.gz)',
'sha256' => 'd0579b8a6bcdd5e1ae334d83261f2389b0d3d4fd54cc808e20a5031121f97d87',
'date' => '09 Jul 2020',
),
2 =>
array (
'filename' => 'php-7.3.20.tar.xz',
'name' => 'PHP 7.3.20 (tar.xz)',
'sha256' => '43292046f6684eb13acb637276d4aa1dd9f66b0b7045e6f1493bc90db389b888',
'date' => '09 Jul 2020',
),
),
'museum' => false,
),
'7.2.32' =>
array (
'announcement' =>

View File

@@ -27,13 +27,13 @@ $RELEASES = (function() {
);
/* PHP 7.3 Release */
$PHP_7_3_VERSION = "7.3.20";
$PHP_7_3_DATE = "09 Jul 2020";
$PHP_7_3_VERSION = "7.3.21";
$PHP_7_3_DATE = "06 Aug 2020";
$PHP_7_3_TAGS = ['security']; // Set to ['security'] for security releases.
$PHP_7_3_SHA256 = array(
"tar.bz2" => "c6ed7894911acfe075381c01b07745d92e9259fac510a849f742edb6b95c89de",
"tar.gz" => "d0579b8a6bcdd5e1ae334d83261f2389b0d3d4fd54cc808e20a5031121f97d87",
"tar.xz" => "43292046f6684eb13acb637276d4aa1dd9f66b0b7045e6f1493bc90db389b888",
"tar.bz2" => "dbb0ea39e7e4b3814d6d1dd3ac5983aed6c38cdf55464645da11a8b134a9f7a7",
"tar.gz" => "f5d6e136768522edd025c4a97b9b6a98a2fda20b68445cbc5ca2efce1e73c7d0",
"tar.xz" => "4c8b065746ef776d84b7ae47908c21a79e3d4704b86b60d816716b8697c58ce9",
);
/* PHP 7.2 Release */

14
releases/7_3_21.php Normal file
View File

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