mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
5.5.33 release
This commit is contained in:
@@ -7,6 +7,20 @@ site_header("PHP 5 ChangeLog", array("current" => "docs", "css" => array("change
|
||||
?>
|
||||
|
||||
<h1>PHP 5 ChangeLog</h1>
|
||||
<section class="version" id="5.5.33"><!-- {{{ 5.5.33 -->
|
||||
<h3>Version 5.5.33</h3>
|
||||
<b><?php release_date('03-Mar-2016'); ?></b>
|
||||
<ul><li>Phar:
|
||||
<ul>
|
||||
<li><?php bugfix(71498); ?> (Out-of-Bound Read in phar_parse_zipfile()).</li>
|
||||
</ul></li>
|
||||
<li>WDDX:
|
||||
<ul>
|
||||
<li><?php bugfix(71587); ?> (Use-After-Free / Double-Free in WDDX Deserialize).</li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
<!-- }}} --></section>
|
||||
|
||||
<section class="version" id="5.6.18"><!-- {{{ 5.6.18 -->
|
||||
<h3>Version 5.6.18</h3>
|
||||
<b><?php release_date('04-Feb-2016'); ?></b>
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
<uri>http://php.net/contact</uri>
|
||||
<email>php-webmaster@lists.php.net</email>
|
||||
</author>
|
||||
<xi:include href="entries/2016-03-03-2.xml"/>
|
||||
<xi:include href="entries/2016-03-03-1.xml"/>
|
||||
<xi:include href="entries/2016-03-01-1.xml"/>
|
||||
<xi:include href="entries/2016-02-18-1.xml"/>
|
||||
|
||||
26
archive/entries/2016-03-03-2.xml
Normal file
26
archive/entries/2016-03-03-2.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<entry xmlns="http://www.w3.org/2005/Atom">
|
||||
<title>PHP 5.5.33 is available</title>
|
||||
<id>http://php.net/archive/2016.php#id2016-03-03-2</id>
|
||||
<published>2016-03-03T12:04:41+00:00</published>
|
||||
<updated>2016-03-03T12:04:41+00:00</updated>
|
||||
<category term="frontpage" label="PHP.net frontpage news"/>
|
||||
<category term="releases" label="New PHP release"/>
|
||||
<link href="http://php.net/index.php#id2016-03-03-2" rel="alternate" type="text/html"/>
|
||||
<link href="http://php.net/archive/2016.php#id2016-03-03-2" 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.5.33. This is a security release in which two security bugs were fixed.
|
||||
|
||||
All PHP 5.5 users are encouraged to upgrade to this version.
|
||||
</p>
|
||||
|
||||
<p>For source downloads of PHP 5.5.33 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
|
||||
Windows 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.5.33">ChangeLog</a>.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</content>
|
||||
</entry>
|
||||
@@ -149,6 +149,42 @@ $OLDRELEASES = array (
|
||||
),
|
||||
5 =>
|
||||
array (
|
||||
'5.5.32' =>
|
||||
array (
|
||||
'announcement' =>
|
||||
array (
|
||||
'English' => '/releases/5_5_32.php',
|
||||
),
|
||||
'source' =>
|
||||
array (
|
||||
0 =>
|
||||
array (
|
||||
'filename' => 'php-5.5.32.tar.bz2',
|
||||
'name' => 'PHP 5.5.32 (tar.bz2)',
|
||||
'md5' => '47443f39152d671d24bc839e6a49049d',
|
||||
'sha256' => 'b0f2c108db8e05db9f6366aaba9a754fd0ee31f3f86ee889561b608dfd6e92ee',
|
||||
'date' => '04 Feb 2016',
|
||||
),
|
||||
1 =>
|
||||
array (
|
||||
'filename' => 'php-5.5.32.tar.gz',
|
||||
'name' => 'PHP 5.5.32 (tar.gz)',
|
||||
'md5' => '6b8bb7992db739c993b0e4bc4cacba34',
|
||||
'sha256' => '419aa62a68a640192799928a29e5cd4cd5b965458223bea2b3209a68c3e95989',
|
||||
'date' => '04 Feb 2016',
|
||||
),
|
||||
2 =>
|
||||
array (
|
||||
'filename' => 'php-5.5.32.tar.xz',
|
||||
'name' => 'PHP 5.5.32 (tar.xz)',
|
||||
'md5' => '2bdf251ea06106b6176408254d919a30',
|
||||
'sha256' => '02f569dcf5bd57dd5e390ddcab8609e3957a698e2db0b793cf2c11a7e33743c9',
|
||||
'date' => '04 Feb 2016',
|
||||
),
|
||||
),
|
||||
'date' => '04 Feb 2016',
|
||||
'museum' => false,
|
||||
),
|
||||
'5.6.17' =>
|
||||
array (
|
||||
'announcement' =>
|
||||
|
||||
@@ -55,17 +55,17 @@ $PHP_5_6_SHA256 = array(
|
||||
$PHP_5_5_RC = false; // Current RC version (e.g., '5.6.7RC1') or false
|
||||
$PHP_5_5_RC_DATE = '25 Jun 2015';
|
||||
|
||||
$PHP_5_5_VERSION = "5.5.32";
|
||||
$PHP_5_5_DATE = "04 Feb 2016";
|
||||
$PHP_5_5_VERSION = "5.5.33";
|
||||
$PHP_5_5_DATE = "03 Mar 2016";
|
||||
$PHP_5_5_MD5 = array(
|
||||
"tar.bz2" => "47443f39152d671d24bc839e6a49049d",
|
||||
"tar.gz" => "6b8bb7992db739c993b0e4bc4cacba34",
|
||||
"tar.xz" => "2bdf251ea06106b6176408254d919a30",
|
||||
"tar.bz2" => "adba9179ddeccb21974493b6eeb8caa2",
|
||||
"tar.gz" => "87a0ac3bff1db155ee381086b4a88edb",
|
||||
"tar.xz" => "c1b9e661a8e6e98bdd03aae7ac9534fe",
|
||||
);
|
||||
$PHP_5_5_SHA256 = array(
|
||||
"tar.bz2" => "b0f2c108db8e05db9f6366aaba9a754fd0ee31f3f86ee889561b608dfd6e92ee",
|
||||
"tar.gz" => "419aa62a68a640192799928a29e5cd4cd5b965458223bea2b3209a68c3e95989",
|
||||
"tar.xz" => "02f569dcf5bd57dd5e390ddcab8609e3957a698e2db0b793cf2c11a7e33743c9",
|
||||
"tar.bz2" => "c490b1ed4df596b48eb68f630d89ca512945e2650840e7dace1119cc7e600aa9",
|
||||
"tar.gz" => "d2747bcf2cc94f652ac216f522904863a22042c66fabcf82ad7449d261d7a45b",
|
||||
"tar.xz" => "b91dbd3c53f9895e8f7b29e5fed25a64dd3a76b454f6ef7265e73c96b4303f30",
|
||||
);
|
||||
|
||||
$RELEASES = array(
|
||||
|
||||
20
releases/5_5_33.php
Normal file
20
releases/5_5_33.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
// $Id$
|
||||
$_SERVER['BASE_PAGE'] = 'releases/5_5_33.php';
|
||||
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
|
||||
site_header("PHP 5.5.33 Release Announcement");
|
||||
?>
|
||||
<h1>PHP 5.5.33 Release Announcement</h1>
|
||||
|
||||
<p>The PHP development team announces the immediate availability of PHP
|
||||
5.5.33. This is a security release. Two security bugs were fixed in this release.
|
||||
|
||||
All PHP 5.5 users are encouraged to upgrade to this version.
|
||||
</p>
|
||||
|
||||
<p>For source downloads of PHP 5.5.33 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
|
||||
Windows 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.5.33">ChangeLog</a>.
|
||||
</p>
|
||||
|
||||
<?php site_footer(); ?>
|
||||
Reference in New Issue
Block a user