From: Anatol Belski Date: Wed, 21 Dec 2016 15:10:38 +0000 (+0100) Subject: add UPGRADING and NEWS items X-Git-Tag: php-7.2.0alpha1~772 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e6faf2306a798bb312da51d2dc37f20cb07c0f2;p=php add UPGRADING and NEWS items --- diff --git a/NEWS b/NEWS index 1ecd9d582f..acd9b0e231 100644 --- a/NEWS +++ b/NEWS @@ -23,6 +23,8 @@ PHP NEWS php.exe). (Michele Locati) . Implemented "Convert numeric keys in object/array casts" RFC, fixes bugs #53838, #61655, #66173, #70925, #72254, etc. (Andrea) + . Raised minimum supported Windows versions to Windows 7/Server 2008 R2. + (Anatol) - Date: . Fixed bug #69587 (DateInterval properties and isset). (jhdxr) diff --git a/UPGRADING b/UPGRADING index 40dee1f38a..0b291ebf72 100644 --- a/UPGRADING +++ b/UPGRADING @@ -35,6 +35,7 @@ PHP 7.2 UPGRADE NOTES /^(0|(-?[1-9][0-9]*))$/ where PHP_INT_MIN <= n <= PHP_INT_MAX) to integer keys. This fixes the behaviour of previous versions, where numeric string property names would become inaccessible string keys. + . Minimum supported Windows versions are Windows 7/Server 2008 R2. - Session: . Removed register_globals related code and "!" can be used as $_SESSION key name. diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS index e13dc22010..95e9318b25 100644 --- a/UPGRADING.INTERNALS +++ b/UPGRADING.INTERNALS @@ -23,7 +23,8 @@ PHP 7.1 INTERNALS UPGRADE NOTES b. Windows build system changes - * nice() now have a Windows alternative that is implemented in win32/nice.c, using + . Minimum supported Windows versions are Windows 7/Server 2008 R2. + . nice() now have a Windows alternative that is implemented in win32/nice.c, using SetPriorityClass(). See the implementation for more in-depth details. This also defines HAVE_NICE.