1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
This commit is contained in:
Stanislav Malyshev
2014-02-06 21:15:48 -08:00
parent ce79b0a42d
commit ef60ce4e1b
6 changed files with 105 additions and 6 deletions

View File

@@ -55,6 +55,29 @@ function peclbugl($number) { echo "<a href=\"http://pecl.php.net/bugs/bug.php?
</ul>
<!-- }}} --></section>
<section class="version" id="5.4.25"><!-- {{{ 5.4.25 -->
<h3>Version 5.4.25</h3>
<b>06-Feb-2014</b>
<ul><li>Core:
<ul>
<li><?php bugfix(66286); ?> (Incorrect object comparison with inheritance).</li>
<li><?php bugfix(66509); ?> (copy() arginfo has changed starting from 5.4).</li>
</ul></li>
<li>mysqlnd:
<ul>
<li><?php bugfix(66283); ?> (Segmentation fault after memory_limit).</li>
</ul></li>
<li>PDO_pgsql:
<ul>
<li><?php bugfix(62479); ?> (PDO-psql cannot connect if password contains spaces).</li>
</ul></li>
<li>Session:
<ul>
<li><?php bugfix(66481); ?> (Calls to session_name() segfault when session.name is null).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.5.8"><!-- {{{ 5.5.8 -->
<h3>Version 5.5.8</h3>
<b>9-Jan-2014</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/2014-02-06-1.xml"/>
<xi:include href="entries/2014-02-05-4.xml"/>
<xi:include href="entries/2014-02-05-3.xml"/>
<xi:include href="entries/2014-02-05-2.xml"/>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 5.4.25 Released!</title>
<id>http://php.net/archive/2014.php#id2014-02-06-1</id>
<published>2014-02-06T21:14:31-08:00</published>
<updated>2014-02-06T21:14:31-08:00</updated>
<category term="frontpage" label="PHP.net frontpage news"/>
<category term="releases" label="New PHP release"/>
<link href="http://php.net/index.php#id2014-02-06-1" rel="alternate" type="text/html"/>
<link href="http://php.net/archive/2014.php#id2014-02-06-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.4.25. 5 bugs were fixed in this release.
All PHP 5.4 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.4.25 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.4.25">ChangeLog</a>.
</p>
</div>
</content>
</entry>

View File

@@ -327,6 +327,37 @@ $OLDRELEASES = array (
'date' => '20 Jun 2013',
'museum' => true,
),
'5.4.24' =>
array (
'announcement' =>
array (
'English' => '/releases/5_4_24.php',
),
'source' =>
array (
0 =>
array (
'filename' => 'php-5.4.24.tar.bz2',
'name' => 'PHP 5.4.24 (tar.bz2)',
'md5' => 'acef880cc808b85e216897ee88187ee1',
'date' => '9 Jan 2014',
),
1 =>
array (
'filename' => 'php-5.4.24.tar.gz',
'name' => 'PHP 5.4.24 (tar.gz)',
'md5' => '5f91782611a4bd665a3df162b43237c2',
'date' => '9 Jan 2014',
),
2 =>
array (
'link' => 'http://windows.php.net/download/#php-5.4',
'name' => 'Windows 5.4.24 binaries and source',
),
),
'date' => '9 Jan 2014',
'museum' => false,
),
'5.4.23' =>
array (
'announcement' =>
@@ -352,7 +383,7 @@ $OLDRELEASES = array (
2 =>
array (
'link' => 'http://windows.php.net/download/#php-5.4',
'name' => 'Windows 5.4.22 binaries and source',
'name' => 'Windows 5.4.23 binaries and source',
),
),
'date' => '12 Dec 2013',

View File

@@ -26,14 +26,14 @@ $PHP_5_5_MD5 = array(
"tar.xz" => "139e2ac02fddd4c80cc31de000c6f7e3",
);
/* PHP 5.4 Release */
$PHP_5_4_RC = '5.4.25RC1'; // Current RC version (e.g., '5.6.7RC1') or false
$PHP_5_4_RC = false; // Current RC version (e.g., '5.6.7RC1') or false
$PHP_5_4_RC_DATE = '23 Jan 2014';
$PHP_5_4_VERSION = "5.4.24";
$PHP_5_4_DATE = "9 Jan 2014";
$PHP_5_4_VERSION = "5.4.25";
$PHP_5_4_DATE = "6 Feb 2014";
$PHP_5_4_MD5 = array(
"tar.bz2" => "acef880cc808b85e216897ee88187ee1",
"tar.gz" => "5f91782611a4bd665a3df162b43237c2",
"tar.bz2" => "5dca494468e77528e145f8d3f07b389e",
"tar.gz" => "5fa2bd02d639154471602b286e223015",
);
/* PHP 5.3 Release */

20
releases/5_4_25.php Normal file
View File

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