Skip to content

Commit

Permalink
prepare for 5.6.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrael committed Nov 25, 2015
1 parent bc7530b commit cb80afc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 Nov 2015, PHP 5.6.16RC1
26 Nov 2015, PHP 5.6.16

- Core:
. Fixed bug #70828 (php-fpm 5.6 with opcache crashes when referencing a
non-existent constant). (Laruence)
. Fixed bug #70748 (Segfault in ini_lex () at Zend/zend_ini_scanner.l).
(Laruence)

- 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)

- OCI8:
. Fixed bug #68298 (OCI int overflow) (Senthil).
. Fixed bug #68298 (OCI int overflow). (Senthil)

- PDO_DBlib:
. Fixed bug #69757 (Segmentation fault on nextRowset).
Expand All @@ -20,7 +25,7 @@ PHP NEWS
attribute). (Matteo)

- SPL:
. Fixed bug #70852 Segfault getting NULL offset of an ArrayObject.
. Fixed bug #70852 (Segfault getting NULL offset of an ArrayObject).
(Reeze Xia)

29 Oct 2015, PHP 5.6.15
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=6
PHP_RELEASE_VERSION=16
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`

Expand Down
4 changes: 2 additions & 2 deletions main/php_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 6
#define PHP_RELEASE_VERSION 16
#define PHP_EXTRA_VERSION "RC1"
#define PHP_VERSION "5.6.16RC1"
#define PHP_EXTRA_VERSION ""
#define PHP_VERSION "5.6.16"
#define PHP_VERSION_ID 50616

0 comments on commit cb80afc

Please sign in to comment.