]> granicus.if.org Git - php/commitdiff
5.5.27 now
authorJulien Pauli <jpauli@php.net>
Tue, 9 Jun 2015 08:29:29 +0000 (10:29 +0200)
committerJulien Pauli <jpauli@php.net>
Tue, 9 Jun 2015 08:33:29 +0000 (10:33 +0200)
NEWS
configure.in
main/php_version.h

diff --git a/NEWS b/NEWS
index 982d82c3ce84390ec76908fed96bbbb9acf6f54b..ecd71802a552284c242fccfac21696ae0862fca2 100644 (file)
--- 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).
   . 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)
 
   . 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)
index ba1ecb7609e240ba2441af4b27993bee29fc2e38..cc36598bfdcac64c171fb175eb476eed823bc831 100644 (file)
@@ -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`
index 2aa246653a3cc7ed1fb9ec1a2097d2e3edef2123..4ebff7f9ac38024b1f541b6fd740658e1e44af69 100644 (file)
@@ -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