Commit: a9f9144ad8a70c9635f6b7fd297fb037895f11d0 Author: Julien Pauli <[email protected]> Thu, 12 Dec 2013 18:13:45 +0100 Parents: 1a863c9ecb5f7fd110dc8c496c6873e708eea3e6 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=a9f9144ad8a70c9635f6b7fd297fb037895f11d0 Log: PHP 5.5.7 release Changed paths: M ChangeLog-5.php M archive/archive.xml A archive/entries/2013-12-12-1.xml M include/releases.inc M include/version.inc A releases/5_5_7.php Diff: diff --git a/ChangeLog-5.php b/ChangeLog-5.php index e137817..23d815c 100644 --- a/ChangeLog-5.php +++ b/ChangeLog-5.php @@ -10,6 +10,37 @@ function peclbugl($number) { echo "<a href=\"http://pecl.php.net/bugs/bug.php? ?> <h1>PHP 5 ChangeLog</h1> +<section class="version" id="5.5.7"><!-- {{{ 5.5.7 --> +<h3>Version 5.5.7</h3> +<b>12-Dec-2013</b> +<ul><li>Core: +<ul> + <li><?php bugfix(66094); ?> (unregister_tick_function tries to cast a Closure to a string).</li> + <li><?php bugfix(65969); ?> (Chain assignment with T_LIST failure).</li> +</ul></li> +<li>CLI server: +<ul> + <li>Added some MIME types to the CLI web server.</li> + <li>Implemented FR #65917 (getallheaders() is not supported by the built-in web + server) - also implements apache_response_headers()</li> +</ul></li> +<li>OPCache: +<ul> + <li><?php bugfix(66176); ?> (Invalid constant substitution).</li> + <li><?php bugfix(65915); ?> (Inconsistent results with require return value).</li> + <li><?php bugfix(65559); ?> (Opcache: cache not cleared if changes occur while running).</li> +</ul></li> +<li>readline: +<ul> + <li><?php bugfix(65714); ?> (PHP cli forces the tty to cooked mode).</li> +</ul></li> +<li>Openssl: +<ul> + <li>Fixed memory corruption in openssl_x509_parse() (CVE-2013-6420).</li> +</ul></li> +</ul> +<!-- }}} --></section> + <section class="version" id="5.5.6"><!-- {{{ 5.5.6 --> <h3>Version 5.5.6</h3> <b>14-Nov-2013</b> diff --git a/archive/archive.xml b/archive/archive.xml index 00ab295..83bbf97 100644 --- a/archive/archive.xml +++ b/archive/archive.xml @@ -9,6 +9,7 @@ <uri>http://php.net/contact</uri> <email>[email protected]</email> </author> + <xi:include href="entries/2013-12-12-1.xml"/> <xi:include href="entries/2013-12-10-1.xml"/> <xi:include href="entries/2013-11-20-1.xml"/> <xi:include href="entries/2013-11-14-3.xml"/> diff --git a/archive/entries/2013-12-12-1.xml b/archive/entries/2013-12-12-1.xml new file mode 100644 index 0000000..c21b459 --- /dev/null +++ b/archive/entries/2013-12-12-1.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<entry xmlns="http://www.w3.org/2005/Atom"> + <title>PHP 5.5.7 </title> + <id>http://php.net/archive/2013.php#id2013-12-12-1</id> + <published>2013-12-12T17:07:20+00:00</published> + <updated>2013-12-12T17:07:20+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#id2013-12-12-1" rel="alternate" type="text/html"/> + <link href="http://php.net/archive/2013.php#id2013-12-12-1" 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.7. This release fixes some bugs against + PHP 5.5.6 and it also includes a fix for CVE-2013-6420 in OpenSSL extension. All users are strongly encouraged + to upgrade.</p> + + <p>For source downloads of PHP 5.5.7 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>, + Windows binaries are located on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. + The list of changes can be found in the <a href="http://www.php.net/ChangeLog-5.php#5.5.7">ChangeLog</a>. + </div> + </content> +</entry> diff --git a/include/releases.inc b/include/releases.inc index 50790d9..96051b8 100644 --- a/include/releases.inc +++ b/include/releases.inc @@ -2,7 +2,45 @@ $OLDRELEASES = array ( 5 => array ( - '5.5.5' => + '5.5.6' => + array ( + 'announcement' => + array ( + 'English' => '/releases/5_5_6.php', + ), + 'source' => + array ( + 0 => + array ( + 'filename' => 'php-5.5.6.tar.bz2', + 'name' => 'PHP 5.5.6 (tar.bz2)', + 'md5' => '1472b1f968a2a4ae8b26f3134a116011', + 'date' => '14 Nov 2013', + ), + 1 => + array ( + 'filename' => 'php-5.5.6.tar.gz', + 'name' => 'PHP 5.5.6 (tar.gz)', + 'md5' => '82968eac50c523ecf7a05855cb5c3d0a', + 'date' => '14 Nov 2013', + ), + 2 => + array ( + 'filename' => 'php-5.5.6.tar.xz', + 'name' => 'PHP 5.5.6 (tar.xz)', + 'md5' => '77ad90035931aacb95d11318b09c12ca', + 'date' => '14 Nov 2013', + ), + 3 => + array ( + 'link' => 'http://windows.php.net/download/#php-5.5', + 'name' => 'Windows 5.5.6 binaries and source', + ), + ), + 'date' => '14 Nov 2013', + 'museum' => false, + ), + '5.5.5' => array ( 'announcement' => array ( diff --git a/include/version.inc b/include/version.inc index cce5385..a52e8ab 100644 --- a/include/version.inc +++ b/include/version.inc @@ -15,15 +15,15 @@ * ), * );6 Dec /* PHP 5.5 Release */ -$PHP_5_5_RC = '5.5.7RC1'; // Current RC version (e.g., '5.6.7RC1') or false +$PHP_5_5_RC = false; // Current RC version (e.g., '5.6.7RC1') or false $PHP_5_5_RC_DATE = '28 Nov 2013'; -$PHP_5_5_VERSION = "5.5.6"; -$PHP_5_5_DATE = "14 Nov 2013"; +$PHP_5_5_VERSION = "5.5.7"; +$PHP_5_5_DATE = "12 Dec 2013"; $PHP_5_5_MD5 = array( - "tar.bz2" => "1472b1f968a2a4ae8b26f3134a116011", - "tar.gz" => "82968eac50c523ecf7a05855cb5c3d0a", - "tar.xz" => "77ad90035931aacb95d11318b09c12ca", + "tar.bz2" => "19d1ca0a58e192bcc133f700c7e78037", + "tar.gz" => "c8e1eda750819e6c8682f06d381f3971", + "tar.xz" => "0c02437f661105221e99a301a5275a41", ); /* PHP 5.4 Release */ $PHP_5_4_RC = '5.4.23RC1'; // Current RC version (e.g., '5.6.7RC1') or false diff --git a/releases/5_5_7.php b/releases/5_5_7.php new file mode 100644 index 0000000..ccdb0e9 --- /dev/null +++ b/releases/5_5_7.php @@ -0,0 +1,20 @@ +<?php +// $Id$ +$_SERVER['BASE_PAGE'] = 'releases/5_5_7.php'; +include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc'; +site_header("PHP 5.5.7 Release Announcement"); +?> + +<h1>PHP 5.5.7 Release Announcement</h1> + +<p>The PHP Development Team announces the immediate availability of PHP 5.5.7. +This release fixes some bugs against PHP 5.5.6, and fixes CVE-2013-6420.</p> + +<p>All PHP users are encouraged to upgrade to this new version.</p> + +<p>For source downloads of PHP 5.5.7, 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.7">ChangeLog</a>. +</p> + +<?php site_footer(); ?> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
