diff options
author | Ferenc Kovacs <tyrael@php.net> | 2016-03-30 22:33:04 +0200 |
---|---|---|
committer | Ferenc Kovacs <tyrael@php.net> | 2016-03-30 22:33:04 +0200 |
commit | 43416cfc065b9d1d7d35db7ad42534759d01e77a (patch) | |
tree | c57965ceefc6b0831d68ad85086bbdfd0c98912a | |
parent | 0b92349da714b5cb1987e7454cc06b99dc44089f (diff) | |
download | php-git-43416cfc065b9d1d7d35db7ad42534759d01e77a.tar.gz |
PHP 5.6.20
-rw-r--r-- | NEWS | 20 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 22 insertions, 4 deletions
@@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -17 Mar 2016, PHP 5.6.20RC1 +31 Mar 2016, PHP 5.6.20 - CLI Server: . Fixed bug #69953 (Support MKCALENDAR request method). (Christoph) @@ -15,9 +15,19 @@ PHP NEWS - Date: . Fixed bug #71635 (DatePeriod::getEndDate segfault). (Thomas Punt) +- Fileinfo: + . Fixed bug #71527 (Buffer over-write in finfo_open with malformed magic + file). (Anatol) + +- Mbstring: + . Fixed bug #71906 (AddressSanitizer: negative-size-param (-1) in + mbfl_strcut). (Stas) + - ODBC: . Fixed bug #47803, #69526 (Executing prepared statements is succesfull only for the first two statements). (einavitamar at gmail dot com, Anatol) + . Fixed bug #71860 (Invalid memory write in phar on filename with \0 in + name). (Stas) - PDO_DBlib: . Bug #54648 (PDO::MSSQL forces format of datetime fields). @@ -29,6 +39,14 @@ PHP NEWS . Fixed bug #71504 (Parsing of tar file with duplicate filenames causes memory leak). (Jos Elstgeest) +- SNMP: + . Fixed bug #71704 (php_snmp_error() Format String Vulnerability). + (andrew at jmpesp dot org) + +- Standard + . Fixed bug #71798 (Integer Overflow in php_raw_url_encode). + (taoguangchen at icloud dot com, Stas) + 03 Mar 2016, PHP 5.6.19 - CLI server: diff --git a/configure.in b/configure.in index 7483815a53..5cf5e466ab 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=20 -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 f4abe8666e..762ed44e83 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 20 -#define PHP_EXTRA_VERSION "RC1" -#define PHP_VERSION "5.6.20RC1" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "5.6.20" #define PHP_VERSION_ID 50620 |