]> granicus.if.org Git - php/commitdiff
5.5.9-dev now
authorJulien Pauli <jpauli@php.net>
Fri, 10 Jan 2014 09:01:30 +0000 (10:01 +0100)
committerJulien Pauli <jpauli@php.net>
Fri, 10 Jan 2014 09:01:30 +0000 (10:01 +0100)
NEWS
configure.in
main/php_version.h

diff --git a/NEWS b/NEWS
index 9112e0828ef501e164d0089c70ace0eeb2e13988..5979ab1e431e7b4a8026460de11acca4b3423b8f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,26 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2013, PHP 5.5.8
+?? ??? 2014, PHP 5.5.9
+
+- GD:
+  . Fixed bug #66356 (Heap Overflow Vulnerability in imagecrop()).
+    (Laruence, Remi)
+
+- OPCache:
+  . Fixed bug #66298 (ext/opcache/Optimizer/zend_optimizer.c has dos-style 
+    ^M as lineend). (Laruence)
+
+- Standard
+  . Fixed bug #66395 (basename function doesn't remove drive letter). (Anatol)
+
+- Sockets:
+  . Fixed bug #66381 (__ss_family was changed on AIX 5.3). (Felipe)
+
+- Zend Engine
+  . Fixed bug #66009 (Failed compilation of PHP extension with C++ std
+    library using VS 2012). (Anatol)
+
+09 Jan 2014, PHP 5.5.8
 
 - Core:
   . Disallowed JMP into a finally block. (Laruence)
@@ -29,8 +49,6 @@ PHP                                                                        NEWS
   . Fixed bug #66229 (128.0.0.0/16 isn't reserved any longer). (Adam)
 
 - GD:
-  . Fixed bug #66356 (Heap Overflow Vulnerability in imagecrop()).
-    (Laruence, Remi)
   . Fixed bug #64405 (Use freetype-config for determining freetype2 dir(s)).
     (Adam)
     
@@ -42,9 +60,7 @@ PHP                                                                        NEWS
   . Fixed bug #65486 (mysqli_poll() is broken on win x64). (Anatol)
 
 - OPCache:
-  . Fixed bug #66298 (ext/opcache/Optimizer/zend_optimizer.c has dos-style 
-    ^M as lineend). (Laruence)
-  . Fixed reavlidate_path=1 behavior to avoid caching of symlinks values.
+  . Fixed revalidate_path=1 behavior to avoid caching of symlinks values.
     (Dmitry)
   . Fixed Issue #140: "opcache.enable_file_override" doesn't respect
     "opcache.revalidate_freq". (Dmitry).
@@ -56,11 +72,7 @@ PHP                                                                        NEWS
   . Fixed bug #66112 (Use after free condition in SOAP extension).
     (martin dot koegler at brz dot gv dot at)
 
-- Standard
-  . Fixed bug #66395 (basename function doesn't remove drive letter). (Anatol)
-
 - Sockets:
-  . Fixed bug #66381 (__ss_family was changed on AIX 5.3). (Felipe)
   . Fixed bug #65923 (ext/socket assumes AI_V4MAPPED is defined). (Felipe)
 
 - XSL
@@ -70,10 +82,6 @@ PHP                                                                        NEWS
 - ZIP:
   . Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real). (Remi)
 
-- Zend Engine
-  . Fixed bug #66009 (Failed compilation of PHP extension with C++ std
-    library using VS 2012). (Anatol)
-
 12 Dec 2013, PHP 5.5.7
 
 - CLI server:
index 18221517bcb9c94b9455407560599d8977aba933..1f4080f25888586de52637c66c5ba24af6c6c89f 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=8
+PHP_RELEASE_VERSION=9
 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 8d30a367d368e44302b7f45f1445b4a8b3c57f34..784ef62e41f75c415fe9b0fdc41e3c4f746c154a 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 8
+#define PHP_RELEASE_VERSION 9
 #define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.8-dev"
-#define PHP_VERSION_ID 50508
+#define PHP_VERSION "5.5.9-dev"
+#define PHP_VERSION_ID 50509