Skip to content

Commit 5f7c191

Browse files
author
Julien Pauli
committed
5.5.27 now
1 parent b347f2c commit 5f7c191

File tree

3 files changed

+26
-20
lines changed

3 files changed

+26
-20
lines changed

NEWS

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,36 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? 2015, PHP 5.5.26
3+
?? ??? 2015, PHP 5.5.27
44

55
- Core:
6-
. Fixed bug #69566 (Conditional jump or move depends on uninitialised value
7-
in extension trait). (jbboehr at gmail dot com)
8-
. Fixed bug #66048 (temp. directory is cached during multiple requests).
9-
(Julien)
10-
. Fixed bug #69628 (complex GLOB_BRACE fails on Windows).
11-
(Christoph M. Becker)
126
. Fixed bug #69703 (Use __builtin_clzl on PowerPC).
137
(dja at axtens dot net, Kalle)
148
. Fixed bug #69732 (can induce segmentation fault with basic php code).
159
(Dmitry)
1610
. Fixed #69642 (Windows 10 reported as Windows 8).
1711
(Christian Wenz, Anatol Belski)
1812

13+
- SimpleXML:
14+
. Refactored the fix for bug #66084 (simplexml_load_string() mangles empty
15+
node name). (Christoph Michael Becker)
16+
17+
- SPL:
18+
. Fixed bug #69737 (Segfault when SplMinHeap::compare produces fatal error).
19+
(Stas)
20+
. Fixed bug #67805 (SplFileObject setMaxLineLength). (Willian Gustavo Veiga).
21+
22+
11 Jun 2015, PHP 5.5.26
23+
24+
- Core:
25+
. Fixed bug #69566 (Conditional jump or move depends on uninitialised value
26+
in extension trait). (jbboehr at gmail dot com)
27+
. Fixed bug #66048 (temp. directory is cached during multiple requests).
28+
(Julien)
29+
. Fixed bug #69628 (complex GLOB_BRACE fails on Windows).
30+
(Christoph M. Becker)
31+
. Improved fix for bug #69545 (Integer overflow in ftp_genlist()
32+
resulting in heap overflow). (Max Spelsberg)
33+
1934
- GD:
2035
. Fixed bug #69479 (GD fails to build with newer libvpx). (Remi)
2136

@@ -39,15 +54,6 @@
3954
. Fixed bug #69549 (Memory leak with opcache.optimization_level=0xFFFFFFFF).
4055
(Laruence, Dmitry)
4156

42-
- SimpleXML:
43-
. Refactored the fix for bug #66084 (simplexml_load_string() mangles empty
44-
node name). (Christoph Michael Becker)
45-
46-
- SPL:
47-
. Fixed bug #69737 (Segfault when SplMinHeap::compare produces fatal error).
48-
(Stas)
49-
. Fixed bug #67805 (SplFileObject setMaxLineLength). (Willian Gustavo Veiga).
50-
5157
- Sqlite3:
5258
. Upgrade bundled sqlite to 3.8.10.2. (CVE-2015-3414, CVE-2015-3415,
5359
CVE-2015-3416) (Kaplan)

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
119119

120120
PHP_MAJOR_VERSION=5
121121
PHP_MINOR_VERSION=5
122-
PHP_RELEASE_VERSION=26
122+
PHP_RELEASE_VERSION=27
123123
PHP_EXTRA_VERSION="-dev"
124124
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
125125
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`

main/php_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* edit configure.in to change version number */
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 5
5-
#define PHP_RELEASE_VERSION 26
5+
#define PHP_RELEASE_VERSION 27
66
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.5.26-dev"
8-
#define PHP_VERSION_ID 50526
7+
#define PHP_VERSION "5.5.27-dev"
8+
#define PHP_VERSION_ID 50527

0 commit comments

Comments
 (0)