updated UPGRADING and NEWS

This commit is contained in:
Anatol Belski 2015-06-08 10:15:03 +02:00
parent b8d8c75c4c
commit 4cdfbbd399
2 changed files with 8 additions and 0 deletions

4
NEWS
View File

@ -145,6 +145,10 @@
- LiteSpeed:
. Updated LiteSpeed SAPI code from V5.5 to V6.6. (George Wang)
- libxml:
. Fixed handling of big lines in error messages with libxml >= 2.9.0.
(Christoph M. Becker)
- Mcrypt:
. Fixed possible read after end of buffer and use after free. (Dmitry)
. Removed mcrypt_generic_end() alias. (Nikita)

View File

@ -461,6 +461,10 @@ Other
IntlDateFormatter::setTimeZoneID(). Use datefmt_set_timezone() and
IntlDateFormatter::setTimeZone() instead.
- libxml:
. Added LIBXML_BIGLINES parser option. It's available starting with libxml 2.9.0
and adds suppport for line numbers >16-bit in the error reporting.
- Mcrypt
. Removed deprecated mcrypt_generic_end() alias in favor of
mcrypt_generic_deinit().