Update NEWS/UPGRADING

This commit is contained in:
Daniel Lowrey 2015-04-24 09:19:58 -06:00
parent 852904173e
commit 32dcbd10ee
2 changed files with 18 additions and 0 deletions

5
NEWS
View File

@ -216,4 +216,9 @@
. Fixed bug #64776 (The XSLT extension is not thread safe). (Mike)
. Removed xsl.security_prefs ini option. (Nikita)
- Zlib:
. Added deflate_init(), deflate_add(), inflate_init(), inflate_add()
functions allowing incremental/streaming compression/decompression.
(Daniel Lowrey & Bob Weinand)
<<< NOTE: Insert NEWS from last stable release here prior to actual release! >>>

View File

@ -580,6 +580,10 @@ Other
. Added intdiv() function for integer division.
. Added error_clear_last() function to reset error state.
- Zlib:
. Added deflate_init(), deflate_add(), inflate_init(), inflate_add()
functions allowing incremental/streaming compression/decompression.
========================================
7. New Classes and Interfaces
========================================
@ -619,6 +623,15 @@ For more details see https://wiki.php.net/rfc/removal_of_dead_sapis_and_exts
- Core
. PHP_INT_MIN added.
- Zlib
. These constants are added to control flush behavior with the new
incremental deflate_add() and inflate_add() functions:
. ZLIB_NO_FLUSH
. ZLIB_PARTIAL_FLUSH
. ZLIB_SYNC_FLUSH
. ZLIB_FULL_FLUSH
. ZLIB_BLOCK
========================================
11. Changes to INI File Handling
========================================