From: Anatol Belski Date: Fri, 6 Jan 2017 17:39:47 +0000 (+0100) Subject: update NEWS and UPGRADING X-Git-Tag: php-7.1.2RC1~144 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dccfd8ee18298f97c1e817d093f099a7328f7c3b;p=php update NEWS and UPGRADING --- diff --git a/NEWS b/NEWS index caa9269cf0..d563dcc17b 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,9 @@ PHP NEWS - OpenSSL: . Fixed bug #71519 (add serial hex to return value array). (xrobau) +- PDO_Firebird: + . Implemented FR #72583 (All data are fetched as strings). (Dorin Marcoci) + - Phar: . Fixed bug #70417 (PharData::compress() doesn't close temp file). (cmb) diff --git a/UPGRADING b/UPGRADING index 575cb8e2d4..cc2bc14f0e 100644 --- a/UPGRADING +++ b/UPGRADING @@ -339,6 +339,13 @@ PHP 7.1 UPGRADE NOTES . Attempting to read an invalid or write to a readonly property will throw an instance of Error instead of resulting in a fatal error. +- PDO_Firebird + As of PHP 7.1.3, the fetched data for integer fields is aware of the Firebird + datatypes. Previously all integers was fetched as strings, starting with + aforementioned PHP version intger fields are translated to the PHP integer + datatype. The 64-bit integers are still fetched as strings in 32-bit PHP + builds. + - Reflection: . Failure to retrieve a reflection object or retrieve an object property will now throw an instance of Error instead of resulting in a fatal error.