From: Aaron Piotrowski Date: Tue, 5 Jul 2016 21:09:21 +0000 (-0500) Subject: Update NEWS and UPGRADING with missed DBA changes X-Git-Tag: php-7.1.0beta1~168 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=210b6a2528bb4981dbd9897861386c451618334d;p=php Update NEWS and UPGRADING with missed DBA changes --- diff --git a/NEWS b/NEWS index 9935ee655f..778e7c3ebc 100644 --- a/NEWS +++ b/NEWS @@ -28,6 +28,11 @@ PHP NEWS a fatal error. (Aaron Piotrowski) . Export date_get_interface_ce() for extension use. (Jeremy Mikola) +- DBA: + . Data modification functions (e.g.: dba_insert()) now throw an instance of + Error instead of triggering a catchable fatal error if the key is does not + contain exactly two elements. (Aaron Piotrowski) + - DOM: . Invalid schema or RelaxNG validation contexts will throw an instance of Error instead of resulting in a fatal error. (Aaron Piotrowski) diff --git a/UPGRADING b/UPGRADING index a791b28a88..b2e5552ec3 100644 --- a/UPGRADING +++ b/UPGRADING @@ -156,6 +156,11 @@ PHP 7.1 UPGRADE NOTES instance of Error from __wakeup() or __set_state() instead of resulting in a fatal error. +- DBA: + . Data modification functions (e.g.: dba_insert()) now throw an instance of + Error instead of triggering a catchable fatal error if the key is does not + contain exactly two elements. + - DOM: . Invalid schema or RelaxNG validation contexts will throw an instance of Error instead of resulting in a fatal error.