summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS38
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h6
3 files changed, 26 insertions, 20 deletions
diff --git a/NEWS b/NEWS
index 982d82c3ce..ecd71802a5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,14 +1,8 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2015, PHP 5.5.26
+?? ??? 2015, PHP 5.5.27
- Core:
- . Fixed bug #69566 (Conditional jump or move depends on uninitialised value
- in extension trait). (jbboehr at gmail dot com)
- . Fixed bug #66048 (temp. directory is cached during multiple requests).
- (Julien)
- . Fixed bug #69628 (complex GLOB_BRACE fails on Windows).
- (Christoph M. Becker)
. Fixed bug #69703 (Use __builtin_clzl on PowerPC).
(dja at axtens dot net, Kalle)
. Fixed bug #69732 (can induce segmentation fault with basic php code).
@@ -16,6 +10,27 @@
. Fixed #69642 (Windows 10 reported as Windows 8).
(Christian Wenz, Anatol Belski)
+- SimpleXML:
+ . Refactored the fix for bug #66084 (simplexml_load_string() mangles empty
+ node name). (Christoph Michael Becker)
+
+- SPL:
+ . Fixed bug #69737 (Segfault when SplMinHeap::compare produces fatal error).
+ (Stas)
+ . Fixed bug #67805 (SplFileObject setMaxLineLength). (Willian Gustavo Veiga).
+
+11 Jun 2015, PHP 5.5.26
+
+- Core:
+ . Fixed bug #69566 (Conditional jump or move depends on uninitialised value
+ in extension trait). (jbboehr at gmail dot com)
+ . Fixed bug #66048 (temp. directory is cached during multiple requests).
+ (Julien)
+ . Fixed bug #69628 (complex GLOB_BRACE fails on Windows).
+ (Christoph M. Becker)
+ . Improved fix for bug #69545 (Integer overflow in ftp_genlist()
+ resulting in heap overflow). (Max Spelsberg)
+
- GD:
. Fixed bug #69479 (GD fails to build with newer libvpx). (Remi)
@@ -39,15 +54,6 @@
. Fixed bug #69549 (Memory leak with opcache.optimization_level=0xFFFFFFFF).
(Laruence, Dmitry)
-- SimpleXML:
- . Refactored the fix for bug #66084 (simplexml_load_string() mangles empty
- node name). (Christoph Michael Becker)
-
-- SPL:
- . Fixed bug #69737 (Segfault when SplMinHeap::compare produces fatal error).
- (Stas)
- . Fixed bug #67805 (SplFileObject setMaxLineLength). (Willian Gustavo Veiga).
-
- Sqlite3:
. Upgrade bundled sqlite to 3.8.10.2. (CVE-2015-3414, CVE-2015-3415,
CVE-2015-3416) (Kaplan)
diff --git a/configure.in b/configure.in
index ba1ecb7609..cc36598bfd 100644
--- a/configure.in
+++ b/configure.in
@@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=5
-PHP_RELEASE_VERSION=26
+PHP_RELEASE_VERSION=27
PHP_EXTRA_VERSION="-dev"
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index 2aa246653a..4ebff7f9ac 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -2,7 +2,7 @@
/* edit configure.in to change version number */
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 5
-#define PHP_RELEASE_VERSION 26
+#define PHP_RELEASE_VERSION 27
#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.26-dev"
-#define PHP_VERSION_ID 50526
+#define PHP_VERSION "5.5.27-dev"
+#define PHP_VERSION_ID 50527