]> granicus.if.org Git - php/commitdiff
Added information about Zend Extension API chabges
authorDmitry Stogov <dmitry@zend.com>
Tue, 29 Sep 2015 11:08:03 +0000 (14:08 +0300)
committerDmitry Stogov <dmitry@zend.com>
Tue, 29 Sep 2015 11:08:03 +0000 (14:08 +0300)
NEWS
UPGRADING

diff --git a/NEWS b/NEWS
index 371f91c9f424c0da93f4248afa0bc68ddd44a202..c538fe10e3d4c86db0b5e30691e9446b9c0e4ee2 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,7 @@ PHP                                                                        NEWS
 01 Oct 2015, PHP 7.0.0 RC 4
 
 - Core:
+  . Added zend_internal_function.reserved[] fields. (Dmitry)
   . Fixed bug #70557 (Memleak on return type verifying failed). (Laruence)
   . Fixed bug #70555 (fun_get_arg() on unsetted vars return UNKNOW). (Laruence)
   . Fixed bug #70548 (Redundant information printed in case of uncaught engine
index 80f0bb52a74398674a3b868cee86416e91c49bcc..7f9c60f2be13fae37ef09d87d43a7a5689197b38 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -795,3 +795,11 @@ out, that the corresponding SDK isn't available anymore.
     always say "integer" and "float" instead of "long" and "double".
   . Output buffering now continues to work for an aborted connection if
     ignore_user_abort is set to true.
+  . Zend Extensions API was extended with zend_extension.op_array_persist_calc()
+    and zend_extensions.op_array_persist() handlers. They allow to store (or
+    reset) associated with op_array addition information in Opcache Shared
+    Memory.
+  . zend_internal_function.reserved[] array was introduced to allow association
+    of aditional information with internal functions. In PHP-5 it was possible
+    to use zend_function.op_array.reserved[] even for internal functions, but
+    now we don't allocate extra space.