]> granicus.if.org Git - php/commitdiff
NEWS and UPGRADING entries for PR #1309
authorAntony Dovgal <tony2001@php.net>
Fri, 29 May 2015 15:16:07 +0000 (18:16 +0300)
committerAntony Dovgal <tony2001@php.net>
Fri, 29 May 2015 15:16:07 +0000 (18:16 +0300)
NEWS
UPGRADING

diff --git a/NEWS b/NEWS
index 2cd1ee95b6029b2531ebb9d10910a47396636a84..81242d12a8ca2953aed68bf3481e233b82df3dd6 100644 (file)
--- a/NEWS
+++ b/NEWS
   . Fixed bug #69686 (password_verify reports back error on PHP7 will null
     string). (Anthony)
   . Added Windows support for getrusage(). (Kalle)
+  . Removed hardcoded limit on number of pipes in proc_open(). (Tony)
 
 - Streams:
   . Fixed bug #68532 (convert.base64-encode omits padding bytes).
index 288639b70e853859d58d43e815ce7f6d3955c923..6d05701948cf5a580e638d615711266789c76f6e 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -577,6 +577,10 @@ Other
     acceptable classes: 
     unserialize($foo, ["allowed_classes" => ["MyClass", "MyClass2"]);
 
+- proc_open():
+  The maximum number of pipes used by proc_open() was previously limited by
+  hardcoded value of 16. This limit is now removed and the number of pipes is
+  effectively limited by the amount of memory available to PHP.
 
 ========================================
 6. New Functions