Commit: 3b2420b8e7502b28ec1b9eebd46fade5e8203407 Author: Rasmus Lerdorf <[email protected]> Thu, 6 Jan 2011 21:51:27 +0000 Parents: 2b969a6824178bf92dab4da5ac8b558a8251b3fd Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=3b2420b8e7502b28ec1b9eebd46fade5e8203407 Log: Push new releases Changed paths: M archive/archive.xml A archive/entries/2011-01-06-1.xml M include/releases.inc Diff: diff --git a/archive/archive.xml b/archive/archive.xml index 7ea42af..512b419 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/2011-01-06-1.xml"/> <xi:include href="entries/2010-12-16-1.xml"/> <xi:include href="entries/2010-12-10-1.xml"/> <xi:include href="entries/2010-12-09-1.xml"/> diff --git a/archive/entries/2011-01-06-1.xml b/archive/entries/2011-01-06-1.xml new file mode 100644 index 0000000..bfae07a --- /dev/null +++ b/archive/entries/2011-01-06-1.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<entry xmlns="http://www.w3.org/2005/Atom"> + <title>PHP 5.3.5 and 5.2.17 Released!</title> + <id>http://www.php.net/archive/2011.php#id2011-01-06-1</id> + <published>2011-01-06T13:34:56-08:00</published> + <updated>2011-01-06T13:34:56-08:00</updated> + <category term="frontpage" label="PHP.net frontpage news"/> + <link href="http://www.php.net/index.php#id2011-01-06-1" rel="alternate" type="text/html"/> + <link href="http://www.php.net/archive/2011.php#id2011-01-06-1" rel="via" type="text/html"/> + <content type="xhtml"> + <div xmlns="http://www.w3.org/1999/xhtml"> + <p> + The PHP development team would like to announce the immediate + availability of PHP <a href="http://www.php.net/releases/5_3_5.php">5.3.5</a> and <a href="http://www.php.net/releases/5_2_17.php">5.2.17</a>. + </p> + <p> + This release resolves a critical issue, reported as PHP bug #53632, + where conversions from string to double might cause the PHP interpreter + to hang on systems using x87 FPU registers. + </p> + <p> + The problem is known to only affect x86 32-bit PHP processes, regardless + of whether the system hosting PHP is 32-bit or 64-bit. You can test + whether your system is affected by running <a href="/distributions/test_bug53632.txt">this script</a> + from command line. + </p> + <p> + All users of PHP are strongly advised to update to these versions + immediately. + </p> + </div> + </content> +</entry> diff --git a/include/releases.inc b/include/releases.inc index 3c614d9..950fe0e 100644 --- a/include/releases.inc +++ b/include/releases.inc @@ -2,6 +2,32 @@ $OLDRELEASES = array ( 5 => array ( + '5.3.5' => + array ( + 'announcement' => + array ( + 'English' => '/releases/5_3_5.php', + ), + 'source' => + array ( + 0 => + array ( + 'filename' => 'php-5.3.5.tar.bz2', + 'name' => 'PHP 5.3.5 (tar.bz2)', + 'md5' => '8aaf20c95e91f25c5b6a591e5d6d61b9', + 'date' => '06 January 2010', + ), + 1 => + array ( + 'filename' => 'php-5.3.5.tar.gz', + 'name' => 'PHP 5.3.5 (tar.gz)', + 'md5' => 'fb727a3ac72bf0ce37e1a20468a7bb81', + 'date' => '06 January 2010', + ), + ), + 'date' => NULL, + 'museum' => false, + ), '5.3.4' => array ( 'announcement' => @@ -28,6 +54,32 @@ $OLDRELEASES = array ( 'date' => NULL, 'museum' => false, ), + '5.2.17' => + array ( + 'announcement' => + array ( + 'English' => '/releases/5_2_17.php', + ), + 'source' => + array ( + 0 => + array ( + 'filename' => 'php-5.2.17.tar.bz2', + 'name' => 'PHP 5.2.17 (tar.bz2)', + 'md5' => '1de8b6adaabf63c042929a3cd1175c33', + 'date' => '6 January 2011', + ), + 1 => + array ( + 'filename' => 'php-5.2.17.tar.gz', + 'name' => 'PHP 5.2.17 (tar.gz)', + 'md5' => '0f636e17a75550f0197354cb5d7c79fb', + 'date' => '6 January 2011', + ), + ), + 'date' => '6 January 2011', + 'museum' => true, + ), '5.2.16' => array ( 'announcement' => -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
