]> granicus.if.org Git - php/commitdiff
Update NEWS/UPGRADING
authorDaniel Lowrey <rdlowrey@php.net>
Fri, 24 Apr 2015 15:19:58 +0000 (09:19 -0600)
committerDaniel Lowrey <rdlowrey@php.net>
Fri, 24 Apr 2015 15:19:58 +0000 (09:19 -0600)
NEWS
UPGRADING

diff --git a/NEWS b/NEWS
index b5e04600fc3afc6d62c7f16a321f8caf84404d0e..909c5585fce413c3d364e02e2d639a6f750106ed 100644 (file)
--- a/NEWS
+++ b/NEWS
   . 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! >>>
index 1722b72a379987c743be76262fb4aec016c1805a..9dea5900b5630420ace712b5d9f1ef77ee7f210c 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -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
 ========================================