svn: /web/php/trunk/ ChangeLog-5.php include/releases.inc include/version.inc releases/5_3_5.php
[email protected] (Johannes Schlüter)
| Newsgroups | php.webmaster |
|---|---|
| Message-ID | <[email protected]> |
johannes Thu, 06 Jan 2011 14:27:26 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=307159
Log:
- PHP 5.3.5 pieces (except front page news)
Changed paths:
U web/php/trunk/ChangeLog-5.php
U web/php/trunk/include/releases.inc
U web/php/trunk/include/version.inc
A web/php/trunk/releases/5_3_5.php
Modified: web/php/trunk/ChangeLog-5.php
===================================================================
--- web/php/trunk/ChangeLog-5.php 2011-01-06 12:51:35 UTC (rev 307158)
+++ web/php/trunk/ChangeLog-5.php 2011-01-06 14:27:26 UTC (rev 307159)
@@ -11,6 +11,18 @@
<h1>PHP 5 ChangeLog</h1>
+<a name="5.3.5"></a><!-- {{{ 5.3.5 -->
+<h3>Version 5.3.5</h3>
+<b>06-Jan-2010</b>
+<ul>
+
+<li><?php bugfix(53632); ?> (PHP hangs on numeric value 2.2250738585072011e-308). (Rasmus, Scott)</li>
+
+</ul>
+
+<hr />
+<!-- }}} -->
+
<a name="5.2.16"></a><!-- {{{ 5.2.16 -->
<h3>Version 5.2.16</h3>
<b>16-Dec-2010</b>
Modified: web/php/trunk/include/releases.inc
===================================================================
--- web/php/trunk/include/releases.inc 2011-01-06 12:51:35 UTC (rev 307158)
+++ web/php/trunk/include/releases.inc 2011-01-06 14:27:26 UTC (rev 307159)
@@ -2,10 +2,36 @@
$OLDRELEASES = array (
5 =>
array (
- '5.2.15' =>
+ '5.3.4' =>
array (
'announcement' =>
array (
+ 'English' => '/releases/5_3_4.php',
+ ),
+ 'source' =>
+ array (
+ 0 =>
+ array (
+ 'filename' => 'php-5.3.4.tar.bz2',
+ 'name' => 'PHP 5.3.4 (tar.bz2)',
+ 'md5' => '2c069d8f690933e3bf6a8741ed818150',
+ 'date' => '09 December 2010',
+ ),
+ 1 =>
+ array (
+ 'filename' => 'php-5.3.4.tar.gz',
+ 'name' => 'PHP 5.3.4 (tar.gz)',
+ 'md5' => 'b69b36132899c5ca3bf155efa0218676',
+ 'date' => '09 December 2010',
+ ),
+ ),
+ 'date' => NULL,
+ 'museum' => false,
+ ),
+ '5.2.15' =>
+ array (
+ 'announcement' =>
+ array (
'English' => '/releases/5_2_15.php',
),
'source' =>
Modified: web/php/trunk/include/version.inc
===================================================================
--- web/php/trunk/include/version.inc 2011-01-06 12:51:35 UTC (rev 307158)
+++ web/php/trunk/include/version.inc 2011-01-06 14:27:26 UTC (rev 307159)
@@ -20,12 +20,12 @@
$PHP_5_3_RC = false; // '5.3.4RC2'; // false;
$PHP_5_3_RC_DATE = '02 December 2010';
-$PHP_5_3_VERSION = "5.3.4";
-$PHP_5_3_DATE = "09 December 2010";
+$PHP_5_3_VERSION = "5.3.5";
+$PHP_5_3_DATE = "06 January 2010";
$PHP_5_3_MD5 = array(
- "tar.bz2" => "2c069d8f690933e3bf6a8741ed818150",
- "tar.gz" => "b69b36132899c5ca3bf155efa0218676",
+ "tar.bz2" => "8aaf20c95e91f25c5b6a591e5d6d61b9",
+ "tar.gz" => "fb727a3ac72bf0ce37e1a20468a7bb81",
);
/* PHP 5.2 Release */
Added: web/php/trunk/releases/5_3_5.php
===================================================================
--- web/php/trunk/releases/5_3_5.php (rev 0)
+++ web/php/trunk/releases/5_3_5.php 2011-01-06 14:27:26 UTC (rev 307159)
@@ -0,0 +1,33 @@
+<?php
+// $Id$
+$_SERVER['BASE_PAGE'] = 'releases/5_3_5.php';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
+site_header("PHP 5.3.5 Release Announcement");
+?>
+
+<h1>PHP 5.3.5 Release Announcement</h1>
+<p>
+The PHP development team would like to announce the immediate
+availability of PHP 5.3.5.</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="http://php.net/~johannes/test_bug53632.php.txt">this script</a>
+from command line.</p>
+
+<p>All users of PHP are strongly advised to update to these versions
+immediately.</p>
+
+<p>
+<b>Security Enhancements and Fixes in PHP 5.3.4:</b>
+</p>
+<ul>
+ <li>Fixed bug #53632 (PHP hangs on numeric value 2.2250738585072011e-308)</li>
+</ul>
+
+<?php site_footer(); ?>
Property changes on: web/php/trunk/releases/5_3_5.php
___________________________________________________________________
Added: svn:keywords
+ Id Rev Revision
Added: svn:eol-style
+ native