Skip to content

Commit 03821e6

Browse files
committed
5.4.35
1 parent da5baad commit 03821e6

File tree

6 files changed

+104
-4
lines changed

6 files changed

+104
-4
lines changed

ChangeLog-5.php

+22
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,28 @@
152152
</ul>
153153
<!-- }}} --></section>
154154

155+
<section class="version" id="5.4.35"><!-- {{{ 5.4.35 -->
156+
<h3>Version 5.4.35</h3>
157+
<b>13-Nov-2014</b>
158+
<ul><li>Core:
159+
<ul>
160+
<li><?php bugfix(68365); ?> (zend_mm_heap corrupted after memory overflow in zend_hash_copy).</li>
161+
</ul></li>
162+
<li>Fileinfo:
163+
<ul>
164+
<li><?php bugfix(68283); ?> (fileinfo: out-of-bounds read in elf note headers). (CVE-2014-3710)</li>
165+
</ul></li>
166+
<li>GMP:
167+
<ul>
168+
<li><?php bugfix(63595); ?> (GMP memory management conflicts with other libraries using GMP).</li>
169+
</ul></li>
170+
<li>PDO_pgsql:
171+
<ul>
172+
<li><?php bugfix(66584); ?> (Segmentation fault on statement deallocation).</li>
173+
</ul></li>
174+
</ul>
175+
<!-- }}} --></section>
176+
155177
<section class="version" id="5.5.18"><!-- {{{ 5.5.18 -->
156178
<h3>Version 5.5.18</h3>
157179
<?php release_date('16-Oct-2014'); ?>

archive/archive.xml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<uri>http://php.net/contact</uri>
1010
<email>[email protected]</email>
1111
</author>
12+
<xi:include href="entries/2014-11-13-3.xml"/>
1213
<xi:include href="entries/2014-11-13-2.xml"/>
1314
<xi:include href="entries/2014-11-13-1.xml"/>
1415
<xi:include href="entries/2014-11-05-1.xml"/>

archive/entries/2014-11-13-3.xml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<entry xmlns="http://www.w3.org/2005/Atom">
3+
<title>PHP 5.4.35 Released</title>
4+
<id>http://php.net/archive/2014.php#id2014-11-13-3</id>
5+
<published>2014-11-13T22:11:34-08:00</published>
6+
<updated>2014-11-13T22:11:34-08:00</updated>
7+
<category term="frontpage" label="PHP.net frontpage news"/>
8+
<category term="releases" label="New PHP release"/>
9+
<link href="http://php.net/index.php#id2014-11-13-3" rel="alternate" type="text/html"/>
10+
<link href="http://php.net/archive/2014.php#id2014-11-13-3" rel="via" type="text/html"/>
11+
<content type="xhtml">
12+
<div xmlns="http://www.w3.org/1999/xhtml">
13+
<p>The PHP development team announces the immediate availability of PHP
14+
5.4.35. 4 security-related bugs were fixed in this release, including the fix for CVE-2014-3710.
15+
16+
All PHP 5.4 users are encouraged to upgrade to this version.
17+
</p>
18+
19+
<p>For source downloads of PHP 5.4.35 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
20+
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
21+
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.4.35">ChangeLog</a>.
22+
</p>
23+
</div>
24+
</content>
25+
</entry>

include/releases.inc

+31
Original file line numberDiff line numberDiff line change
@@ -721,6 +721,37 @@ $OLDRELEASES = array (
721721
'date' => '20 Jun 2013',
722722
'museum' => true,
723723
),
724+
'5.4.34' =>
725+
array (
726+
'announcement' =>
727+
array (
728+
'English' => '/releases/5_4_34.php',
729+
),
730+
'source' =>
731+
array (
732+
0 =>
733+
array (
734+
'filename' => 'php-5.4.34.tar.bz2',
735+
'name' => 'PHP 5.4.34 (tar.bz2)',
736+
'md5' => '1afe3a10cefec9618acb785ef5064bf9',
737+
'date' => '16 Oct 2014',
738+
),
739+
1 =>
740+
array (
741+
'filename' => 'php-5.4.34.tar.gz',
742+
'name' => 'PHP 5.4.34 (tar.gz)',
743+
'md5' => '718ce85dc1bca0c925a9013638be4ae9',
744+
'date' => '16 Oct 2014',
745+
),
746+
2 =>
747+
array (
748+
'link' => 'http://windows.php.net/download/#php-5.4',
749+
'name' => 'Windows 5.4.34 binaries and source',
750+
),
751+
),
752+
'date' => '16 Oct 2014',
753+
'museum' => false,
754+
),
724755
'5.4.33' =>
725756
array (
726757
'announcement' =>

include/version.inc

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ $PHP_5_5_MD5 = array(
4141
$PHP_5_4_RC = false; // Current RC version (e.g., '5.6.7RC1') or false
4242
$PHP_5_4_RC_DATE = '4 Sep 2014';
4343

44-
$PHP_5_4_VERSION = "5.4.34";
45-
$PHP_5_4_DATE = "16 Oct 2014";
44+
$PHP_5_4_VERSION = "5.4.35";
45+
$PHP_5_4_DATE = "13 Nov 2014";
4646
$PHP_5_4_MD5 = array(
47-
"tar.bz2" => "1afe3a10cefec9618acb785ef5064bf9",
48-
"tar.gz" => "718ce85dc1bca0c925a9013638be4ae9",
47+
"tar.bz2" => "489cc8336488fb2e722ffa3c08f9c864",
48+
"tar.gz" => "da7bed3b65033c7f096c96572cd9ea45",
4949
);
5050

5151
/* PHP 5.3 Release */

releases/5_4_35.php

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
// $Id$
3+
$_SERVER['BASE_PAGE'] = 'releases/5_4_35.php';
4+
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
5+
site_header("PHP 5.4.35 Release Announcement");
6+
?>
7+
8+
<h1>PHP 5.4.35 Release Announcement</h1>
9+
10+
<p>The PHP development team announces the immediate availability of PHP
11+
5.4.35. 4 security-related bugs were fixed in this release, including the fix for CVE-2014-3710.
12+
13+
All PHP 5.4 users are encouraged to upgrade to this version.
14+
</p>
15+
16+
<p>For source downloads of PHP 5.4.35 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
17+
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
18+
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.4.35">ChangeLog</a>.
19+
</p>
20+
21+
<?php site_footer(); ?>

0 commit comments

Comments
 (0)