From: Daniel Lowrey Date: Fri, 24 Apr 2015 15:19:58 +0000 (-0600) Subject: Update NEWS/UPGRADING X-Git-Tag: PRE_PHP7_NSAPI_REMOVAL~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32dcbd10ee1e27faad35ff852982ee56b07d5f06;p=php Update NEWS/UPGRADING --- diff --git a/NEWS b/NEWS index b5e04600fc..909c5585fc 100644 --- a/NEWS +++ b/NEWS @@ -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! >>> diff --git a/UPGRADING b/UPGRADING index 1722b72a37..9dea5900b5 100644 --- 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 ========================================