]> granicus.if.org Git - php/commitdiff
NEWS/UPGRADING for changes in sockets, intl
authorGustavo Lopes <glopes@nebm.ist.utl.pt>
Sun, 3 Feb 2013 00:59:35 +0000 (01:59 +0100)
committerGustavo Lopes <glopes@nebm.ist.utl.pt>
Sun, 3 Feb 2013 00:59:35 +0000 (01:59 +0100)
NEWS
UPGRADING

diff --git a/NEWS b/NEWS
index e79cffed237492bda01eb74add99dfb81bfa0a4b..11ae31cf44fb2ca1774947e7e351363fa83da305 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -16,6 +16,14 @@ PHP                                                                        NEWS
   . Implemented FR #46439 - added CURLFile for safer file uploads.
     (Stas)
 
+- Intl:
+  . Cherry-picked UConverter wrapper, which had accidentaly been committed only
+    to master.
+
+- Sockets:
+  . Added recvmsg() and sendmsg() wrappers. (Gustavo)
+    See https://wiki.php.net/rfc/sendrecvmsg
+
 24 Jan 2013, PHP 5.5.0 Alpha 4
 
 - Core:
index 22ad969157cf9af3e03b937f5316eda1f0bc2c36..790803e39573702285419e6e750b05dfdaee5c4f 100755 (executable)
--- a/UPGRADING
+++ b/UPGRADING
@@ -157,6 +157,8 @@ PHP 5.5 UPGRADE NOTES
   Expires headers. (see https://wiki.php.net/rfc/cookie_max-age)
 - curl_setopt now accepts new option CURLOPT_SAFE_UPLOAD and CURLFile object for
   safer file uploads (see https://wiki.php.net/rfc/curl-file-upload)
+- Functions in the socket extension now do not emit warnings when the errno is
+  EAGAIN, EWOULDBLOCK or EINPROGRESS.
 
 ========================================
 5. New Functions
@@ -257,6 +259,11 @@ PHP 5.5 UPGRADE NOTES
   - IntlDateFormatter::getTimeZone()
   - IntlDateFormatter::setTimeZone()
 
+- Sockets:
+  - socket_sendmsg()
+  - socket_recvmsg()
+  - socket_cmsg_space()
+
 - SPL:
   - SplFixedArray::__wakeup()
 
@@ -271,6 +278,7 @@ PHP 5.5 UPGRADE NOTES
   - IntlBreakIterator
   - IntlRuleBasedBreakIterator
   - IntlCodePointBreakIterator
+  - UConverter
 
 - cURL:
   - CURLFile