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

php 5.6.32

This commit is contained in:
Ferenc Kovacs
2017-10-26 22:59:59 +02:00
parent 16c94bde8f
commit 933e997194
6 changed files with 104 additions and 5 deletions

View File

@@ -8,6 +8,24 @@ site_header("PHP 5 ChangeLog", array("current" => "docs", "css" => array("change
<h1>PHP 5 ChangeLog</h1>
<section class="version" id="5.6.32"><!-- {{{ 5.6.32 -->
<h3>Version 5.6.32</h3>
<b><?php release_date('26-Sep-2017'); ?></b>
<ul><li>Date:
<ul>
<li><?php bugfix(75055); ?> (Out-Of-Bounds Read in timelib_meridian()).</li>
</ul></li>
<li>mcrypt:
<ul>
<li><?php bugfix(72535); ?> (arcfour encryption stream filter crashes php).</li>
</ul></li>
<li>PCRE:
<ul>
<li><?php bugfix(75207); ?> (applied upstream patch for CVE-2016-1283).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.6.31"><!-- {{{ 5.6.31 -->
<h3>Version 5.6.31</h3>
<b><?php release_date('06-Jul-2017'); ?></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/2017-10-26-3.xml"/>
<xi:include href="entries/2017-10-26-2.xml"/>
<xi:include href="entries/2017-10-26-1.xml"/>
<xi:include href="entries/2017-10-19-1.xml"/>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 5.6.32 Released[2</title>
<id>http://php.net/archive/2017.php#id2017-10-26-3</id>
<published>2017-10-26T13:32:22-07:00</published>
<updated>2017-10-26T13:32:22-07:00</updated>
<category term="frontpage" label="PHP.net frontpage news"/>
<category term="releases" label="New PHP release"/>
<link href="http://php.net/index.php#id2017-10-26-3" rel="alternate" type="text/html"/>
<link href="http://php.net/archive/2017.php#id2017-10-26-3" rel="via" type="text/html"/>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>The PHP development team announces the immediate availability of PHP
5.6.32. This is a security release. Several security bugs were fixed in
this release.
All PHP 5.6 users are encouraged to upgrade to this version.</p>
<p>For source downloads of PHP 5.6.32 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-5.php#5.6.32">ChangeLog</a>.
</p>
</div>
</content>
</entry>

View File

@@ -1160,6 +1160,39 @@ $OLDRELEASES = array (
),
5 =>
array (
'5.6.31' =>
array (
'announcement' =>
array (
'English' => '/releases/5_6_31.php',
),
'source' =>
array (
0 =>
array (
'filename' => 'php-5.6.31.tar.bz2',
'name' => 'PHP 5.6.31 (tar.bz2)',
'sha256' => '8f397169cb65f0539f3bcb04060f97770d73e19074a37bd2c58b98ebf6ecb10f',
'date' => '06 Jul 2017',
),
1 =>
array (
'filename' => 'php-5.6.31.tar.gz',
'name' => 'PHP 5.6.31 (tar.gz)',
'sha256' => '6687ed2f09150b2ad6b3780ff89715891f83a9c331e69c90241ef699dec4c43f',
'date' => '06 Jul 2017',
),
2 =>
array (
'filename' => 'php-5.6.31.tar.xz',
'name' => 'PHP 5.6.31 (tar.xz)',
'sha256' => 'c464af61240a9b7729fabe0314cdbdd5a000a4f0c9bd201f89f8628732fe4ae4',
'date' => '06 Jul 2017',
),
),
'date' => '06 Jul 2017',
'museum' => false,
),
'5.6.30' =>
array (
'announcement' =>

View File

@@ -44,12 +44,12 @@ $PHP_7_0_SHA256 = array(
$PHP_5_6_RC = false; // Current RC version (e.g., '5.6.7RC1') or false
$PHP_5_6_RC_DATE = "05 Jan 2017";
$PHP_5_6_VERSION = "5.6.31";
$PHP_5_6_DATE = "06 Jul 2017";
$PHP_5_6_VERSION = "5.6.32";
$PHP_5_6_DATE = "26 Oct 2017";
$PHP_5_6_SHA256 = array(
"tar.bz2" => "8f397169cb65f0539f3bcb04060f97770d73e19074a37bd2c58b98ebf6ecb10f",
"tar.gz" => "6687ed2f09150b2ad6b3780ff89715891f83a9c331e69c90241ef699dec4c43f",
"tar.xz" => "c464af61240a9b7729fabe0314cdbdd5a000a4f0c9bd201f89f8628732fe4ae4",
"tar.bz2" => "3ee44e7a5fa42b563652b3ea0d3487bc236fcc9e5ea74b583775cab867abcb51",
"tar.gz" => "7bef1ae8cd633df5b9c5964262d276d2dc21acbfcd94022d1e2084d199315df4",
"tar.xz" => "8c2b4f721c7475fb9eabda2495209e91ea933082e6f34299d11cba88cd76e64b",
);
/* PHP 5.5 Release */

22
releases/5_6_32.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
// $Id$
$_SERVER['BASE_PAGE'] = 'releases/5_6_32.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
site_header("PHP 5.6.32 Release Announcement");
?>
<h1>PHP 5.6.32 Release Announcement</h1>
<p>The PHP development team announces the immediate availability of PHP
5.6.32. This is a security release. Several security bugs were fixed in
this release.
All PHP 5.6 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.6.32 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-5.php#5.6.32">ChangeLog</a>.
</p>
<?php site_footer(); ?>