summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2016-01-06 16:07:57 +0100
committerFerenc Kovacs <tyrael@php.net>2016-01-06 16:14:47 +0100
commite808a7687ecd82ea18d6a83cb1f003a84831c0e2 (patch)
treedafb4a0ccfda67c6b192a326f392ead04f4c98e9
parente9ae4f079570306bef3b221935cdd240c8c1c7e5 (diff)
downloadphp-git-PHP-5.6.17.tar.gz
prepare for 5.6.17php-5.6.17PHP-5.6.17
-rw-r--r--NEWS21
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 22 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 184833eb3a..71410b911c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-10 Dec 2015, PHP 5.6.17RC1
+07 Jan 2016, PHP 5.6.17
- Core:
. Fixed bug #66909 (configure fails utf8_to_mutf7 test). (Michael Orlitzky)
@@ -13,6 +13,13 @@ PHP NEWS
. Fixed bug #61751 (SAPI build problem on AIX: Undefined symbol:
php_register_internal_extensions). (Lior Kaplan)
+- FPM:
+ . Fixed bug #70755 (fpm_log.c memory leak and buffer overflow). (Stas)
+
+- GD:
+ . Fixed bug #70976 (Memory Read via gdImageRotateInterpolated Array Index
+ Out of Bounds). (emmanuel dot law at gmail dot com).
+
- Mysqlnd:
. Fixed bug #68077 (LOAD DATA LOCAL INFILE / open_basedir restriction).
(Laruence)
@@ -27,6 +34,16 @@ PHP NEWS
- PDO_Firebird:
. Fixed bug #60052 (Integer returned as a 64bit integer on X64_86). (Mariuz)
+- WDDX:
+ . Fixed bug #70661 (Use After Free Vulnerability in WDDX Packet Deserialization).
+ (taoguangchen at icloud dot com)
+ . Fixed bug #70741 (Session WDDX Packet Deserialization Type Confusion
+ Vulnerability). (taoguangchen at icloud dot com)
+
+- XMLRPC:
+ . Fixed bug #70728 (Type Confusion Vulnerability in PHP_to_XMLRPC_worker()).
+ (Julien)
+
26 Nov 2015, PHP 5.6.16
- Core:
@@ -38,7 +55,7 @@ PHP NEWS
- Mysqlnd:
. Fixed bug #68344 (MySQLi does not provide way to disable peer certificate
validation) by introducing MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT
- connection flag. (Andrey)
+ connection flag. (Andrey)
- OCI8:
. Fixed bug #68298 (OCI int overflow). (Senthil)
diff --git a/configure.in b/configure.in
index 6121519dfb..80cd9e1f90 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=17
-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 e318c738b7..9492fa1c07 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 17
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.6.17RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.6.17"
#define PHP_VERSION_ID 50617