release 1.6.4
authorMichael Wallner <mike@php.net>
Fri, 24 Jul 2009 12:39:27 +0000 (12:39 +0000)
committerMichael Wallner <mike@php.net>
Fri, 24 Jul 2009 12:39:27 +0000 (12:39 +0000)
package.xml
package2.xml
php_http.h

index cc5c3e8cf95bb0a5ccc93d873eac6270b55ee12e..02518349bbdd11e815fe047f3cc5d6bb8c52fed0 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
-<package version="1.0" packagerversion="1.7.1">
+<package version="1.0" packagerversion="1.8.1">
  <name>pecl_http</name>
  <summary>Extended HTTP Support</summary>
  <description>This HTTP extension aims to provide a convenient and powerful 
@@ -23,16 +23,16 @@ support. Parallel requests are available for PHP 5 and greater.
   </maintainer>
   </maintainers>
  <release>
-  <version>1.6.3</version>
-  <date>2009-02-12</date>
+  <version>1.6.4</version>
+  <date>2009-07-24</date>
   <license>BSD, revised</license>
   <state>stable</state>
-  <notes>* Fixed bug #15495 (HttpMessage::setHttpVersion segfault)
-* Fixed bug #15497 (HttpInflateStream::finish segfault)
-* Fixed bug #15499 (HttpRequest::addHeaders segfault)
-* Fixed bug #15509 (HttpMessage::rewind memory leaks)
-* Fixed bug #15800 (Double free when zval is separated in convert_to_*)
-* Fixed bug #15813 (Requests not removed from multi stack when fatal errors occur with fcgi)
+  <notes>* Fixed PHP4 build
+* Fixed PHP5.3 issue in the negotiation API
+* Fixed HttpMessage::toMessageTypeObject() to honor non-string arguments
+* Fixed memory leaks and unterminated string issues with HttpMessage
+* Fixed bug #16577 typo in http_request_object.c (HttpRequest::addBody)
+* Fixed bug #16700 child classes of HttpMessage cannot not have array properties
   </notes>
   <deps>
    <dep type="php" rel="ge" version="4.3"/>
@@ -98,6 +98,8 @@ support. Parallel requests are available for PHP 5 and greater.
     <file role="test" name="HttpMessage_005.phpt"/>
     <file role="test" name="HttpMessage_006.phpt"/>
     <file role="test" name="HttpMessage_007.phpt"/>
+    <file role="test" name="HttpMessage_008.phpt"/>
+    <file role="test" name="HttpMessage_009_bug16700.phpt"/>
     <file role="test" name="HttpQueryString_001.phpt"/>
     <file role="test" name="HttpQueryString_002.phpt"/>
     <file role="test" name="HttpQueryString_003.phpt"/>
index 060f638ae4e5b77600aa92fa81b473fc59dd3825..36b8a8b50cba6b41a6d6cabfdf468caa3f3663f7 100644 (file)
@@ -28,9 +28,9 @@ support. Parallel requests are available for PHP 5 and greater.
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
- <date>2009-03-17</date>
+ <date>2009-07-24</date>
  <version>
-  <release>1.6.4dev</release>
+  <release>1.6.4</release>
   <api>1.6.0</api>
  </version>
  <stability>
@@ -40,9 +40,11 @@ support. Parallel requests are available for PHP 5 and greater.
  <license>BSD, revised</license>
  <notes><![CDATA[
 * Fixed PHP4 build
-* Fixed HttpMessage::toMessageTypeObject() to nonor non-string arguments
+* Fixed PHP5.3 issue in the negotiation API
+* Fixed HttpMessage::toMessageTypeObject() to honor non-string arguments
 * Fixed memory leaks and unterminated string issues with HttpMessage
-* Fixed bug ##16577 typo in http_request_object.c (HttpRequest::addBody)
+* Fixed bug #16577 typo in http_request_object.c (HttpRequest::addBody)
+* Fixed bug #16700 child classes of HttpMessage cannot not have array properties
 ]]></notes>
  <contents>
   <dir name="/">
@@ -179,6 +181,7 @@ support. Parallel requests are available for PHP 5 and greater.
     <file role="test" name="HttpMessage_006.phpt"/>
     <file role="test" name="HttpMessage_007.phpt"/>
     <file role="test" name="HttpMessage_008.phpt"/>
+    <file role="test" name="HttpMessage_009_bug16700.phpt"/>
     <file role="test" name="HttpQueryString_001.phpt"/>
     <file role="test" name="HttpQueryString_002.phpt"/>
     <file role="test" name="HttpQueryString_003.phpt"/>
index 8ca1f55cd093213089b80894aac8064b392edddc..5ff14887a53b6829539d6de4926b2187aaba130b 100644 (file)
@@ -15,7 +15,7 @@
 #ifndef PHP_EXT_HTTP_H
 #define PHP_EXT_HTTP_H
 
-#define PHP_HTTP_VERSION "1.6.4-dev"
+#define PHP_HTTP_VERSION "1.6.4"
 
 #ifdef HAVE_CONFIG_H
 #      include "config.h"