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

7.2.33 announcement

This commit is contained in:
Remi Collet
2020-08-06 09:51:36 +02:00
parent fab6b9908e
commit 05b76568ef
6 changed files with 98 additions and 5 deletions

View File

@@ -2526,6 +2526,20 @@ site_header("PHP 7 ChangeLog", array("current" => "docs", "css" => array("change
<a name="PHP_7_2"></a>
<section class="version" id="7.2.33"><!-- {{{ 7.2.33 -->
<h3>Version 7.2.33</h3>
<b><?php release_date('06-Aug-2020'); ?></b>
<ul><li>Core:
<ul>
<li><?php bugfix(79877); ?> (getimagesize function silently truncates after a null byte) (cmb)</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>
</ul>
<!-- }}} --></section>
<section class="version" id="7.2.32"><!-- {{{ 7.2.32 -->
<h3>Version 7.2.32</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-1.xml"/>
<xi:include href="entries/2020-07-23-1.xml"/>
<xi:include href="entries/2020-07-14-2.xml"/>
<xi:include href="entries/2020-07-14-1.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.33 Released!</title>
<id>https://www.php.net/archive/2020.php#2020-08-06-1</id>
<published>2020-08-06T07:47:41+00:00</published>
<updated>2020-08-06T07:47:41+00:00</updated>
<link href="https://www.php.net/index.php#id2020-08-06-1" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2020.php#2020-08-06-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.2.33.
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.33 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.2.33">ChangeLog</a>.
</p>
</div>
</content>
</entry>

View File

@@ -2,6 +2,43 @@
$OLDRELEASES = array (
7 =>
array (
'7.2.32' =>
array (
'announcement' =>
array (
'English' => '/releases/7_2_32.php',
),
'tags' =>
array (
0 => 'security',
),
'date' => '09 Jul 2020',
'source' =>
array (
0 =>
array (
'filename' => 'php-7.2.32.tar.bz2',
'name' => 'PHP 7.2.32 (tar.bz2)',
'sha256' => '715c0a4274ad17ce449cd0f16b8a7428936e3ba80002d0948a8699a6f75d98a7',
'date' => '09 Jul 2020',
),
1 =>
array (
'filename' => 'php-7.2.32.tar.gz',
'name' => 'PHP 7.2.32 (tar.gz)',
'sha256' => 'b3aabb99e574c407dd58ad071fc52e27c489608fe06f1330d688d0fb7349089c',
'date' => '09 Jul 2020',
),
2 =>
array (
'filename' => 'php-7.2.32.tar.xz',
'name' => 'PHP 7.2.32 (tar.xz)',
'sha256' => '050fc16ca56d8d2365d980998220a4eb06439da71dfd38de49b42fea72310ef1',
'date' => '09 Jul 2020',
),
),
'museum' => false,
),
'7.4.7' =>
array (
'announcement' =>

View File

@@ -37,13 +37,13 @@ $RELEASES = (function() {
);
/* PHP 7.2 Release */
$PHP_7_2_VERSION = "7.2.32";
$PHP_7_2_DATE = "09 Jul 2020";
$PHP_7_2_VERSION = "7.2.33";
$PHP_7_2_DATE = "06 Aug 2020";
$PHP_7_2_TAGS = ['security']; // Set to ['security'] for security releases.
$PHP_7_2_SHA256 = array(
"tar.bz2" => "715c0a4274ad17ce449cd0f16b8a7428936e3ba80002d0948a8699a6f75d98a7",
"tar.gz" => "b3aabb99e574c407dd58ad071fc52e27c489608fe06f1330d688d0fb7349089c",
"tar.xz" => "050fc16ca56d8d2365d980998220a4eb06439da71dfd38de49b42fea72310ef1",
"tar.bz2" => "03dda3a3a0c8befc9b381bc9cf4638d13862783fc7b8aef43fdd4431ab85854d",
"tar.gz" => "97bb6b88ddfa44f36c4fc84a1a718faef476f61b532d26ea29e3e9f6cd79d839",
"tar.xz" => "0f160a3483ffce36be5962fab7bcf09d605ee66c5707df83e4195cb796bbb03a",
);
return array(

17
releases/7_2_33.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
$_SERVER['BASE_PAGE'] = 'releases/7_2_33.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header("PHP 7.2.33 Release Announcement");
?>
<h1>PHP 7.2.33 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP 7.2.33.
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.33 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.33">ChangeLog</a>.
</p>
<?php site_footer(); ?>