summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-07-18 23:04:22 +0200
committerAnatol Belski <ab@php.net>2016-07-18 23:04:22 +0200
commit2170841e57d627f08e4fc6ba9d040fc194ec6840 (patch)
tree741cb96e203c420b36955634e1c16b8274ffbcf9
parentcb42fc347c096bf3fd4efc20e2127d7c286effe1 (diff)
downloadphp-git-2170841e57d627f08e4fc6ba9d040fc194ec6840.tar.gz
update NEWS and UPGRADING
-rw-r--r--NEWS3
-rw-r--r--UPGRADING2
2 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index c4e07074e5..77583677f4 100644
--- a/NEWS
+++ b/NEWS
@@ -24,6 +24,7 @@ PHP NEWS
. Fixed bug #29368 (The destructor is called when an exception is thrown from
the constructor). (Dmitry)
. Implemented RFC: RNG Fixes. (Leigh)
+ . Implemented email validation as per RFC 6531. (Leo Feyer, Anatol)
- COM:
. Fixed bug #72569 (DOTNET/COM array parameters broke in PHP7). (Anatol)
@@ -53,6 +54,8 @@ PHP NEWS
- Mbstring:
. Deprecated mb_ereg_replace() eval option. (Rouven Weßling, cmb)
+ . Fixed bug #69151 (mb_ereg should reject ill-formed byte sequence).
+ (Masaki Kagaya)
- MCrypt:
. Deprecated ext/mcrypt. (Scott Arciszewski, cmb)
diff --git a/UPGRADING b/UPGRADING
index ca5ed47586..1854e57ced 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -146,6 +146,8 @@ PHP 7.1 UPGRADE NOTES
- file_get_contents() accepts a negative seek offset if the stream is seekable.
- tempnam() throws a notice when failing back to the system temp dir.
- getopt() has an extra by-ref parameter : optind
+- mb_ereg() and mb_ereg_replace() reject illegal byte sequences
+- FILTER_FLAG_EMAIL_RFC6531 can be used with filter_var() for email validation
========================================
6. New Functions