summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2015-05-14 01:13:33 +0200
committerFerenc Kovacs <tyrael@php.net>2015-05-14 01:13:33 +0200
commit2610d63a482e708ba28cf8e056f47412445a6c53 (patch)
treed295108bfdf91f7c9b363aeacb5a553076aba8d1
parentf75d2139cdaeb705d8970909f2dee697cbdd1788 (diff)
downloadphp-git-PHP-5.6.9.tar.gz
5.6.9 is readyphp-5.6.9PHP-5.6.9
-rw-r--r--NEWS21
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 23 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index b14ce1b645..7640a0ddd5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-30 Apr 2015, PHP 5.6.9RC1
+14 May 2015, PHP 5.6.9
- Core:
. Fixed bug #69467 (Wrong checked for the interface by using Trait).
@@ -15,6 +15,15 @@ PHP NEWS
(Nikita)
. Fixed bug #69472 (php_sys_readlink ignores misc errors from
GetFinalPathNameByHandleA). (Jan Starke)
+ . Fixed bug #69364 (PHP Multipart/form-data remote dos Vulnerability). (Stas)
+ . Fixed bug #69403 (str_repeat() sign mismatch based memory corruption).
+ (Stas)
+ . Fixed bug #69418 (CVE-2006-7243 fix regressions in 5.4+). (Stas)
+ . Fixed bug #69522 (heap buffer overflow in unpack()). (Stas)
+
+- FTP:
+ . Fixed bug #69545 (Integer overflow in ftp_genlist() resulting in heap
+ overflow). (Stas)
- ODBC:
. Fixed bug #69354 (Incorrect use of SQLColAttributes with ODBC 3.0).
@@ -28,6 +37,16 @@ PHP NEWS
. Fixed bug #69402 (Reading empty SSL stream hangs until timeout).
(Daniel Lowrey)
+- PCNTL:
+ . Fixed bug #68598 (pcntl_exec() should not allow null char). (Stas)
+
+- PCRE
+ . Upgraded pcrelib to 8.37.
+
+- Phar:
+ . Fixed bug #69453 (Memory Corruption in phar_parse_tarfile when entry
+ filename starts with null). (Stas)
+
16 Apr 2015, PHP 5.6.8
- Core:
diff --git a/configure.in b/configure.in
index 57d80c4876..5ca2916f48 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=6
PHP_RELEASE_VERSION=9
-PHP_EXTRA_VERSION="RC1"
+PHP_EXTRA_VERSION=""
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 591912921c..1235ffc8ec 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 6
#define PHP_RELEASE_VERSION 9
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.6.9RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.6.9"
#define PHP_VERSION_ID 50609