- changelog
authorMichael Wallner <mike@php.net>
Sun, 5 Nov 2006 19:01:49 +0000 (19:01 +0000)
committerMichael Wallner <mike@php.net>
Sun, 5 Nov 2006 19:01:49 +0000 (19:01 +0000)
package.xml
package2.xml
php_http.h

index cfabd60eab17a07e24c87bf051a685b11c3f7310..13f2f735219b7967eb3651d2ee03e0769d268e81 100644 (file)
@@ -23,17 +23,14 @@ support. Parallel requests are available for PHP 5 and greater.
   </maintainer>
   </maintainers>
  <release>
-  <version>1.3.3</version>
-  <date>2006-10-27</date>
+  <version>1.4.0dev</version>
+  <date>2006-11-05</date>
   <license>BSD, revised</license>
   <state>stable</state>
-  <notes>* Fixed HttpResponse::setHeader(&quot;name&quot;, {omitted|NULL|&quot;&quot;}) not unsetting header
-* Fixed array parameters to allow NULL in HttpRequest::__construct(),
-  HttpRequest::getResposeCookie(), HttpMessage::setHeaders(),
-  http_parse_cookie(), http_post_fields().
-* Fixed possible leak in http_send_data() and HttpResponse::setData()
-* Fixed build --without-http-curl-requests (bug #8872)
-* Fixed build with PHP &lt; 4.3.10 (bug #9067)
+  <notes>+ Added &quot;ipresolve&quot; request option
++ Added HTTP_IPRESOLVE_{ANY|V4|V6}, HttpRequest::IPRESOLVE_{ANY|V4|V6} constants
+* Fixed crash when using non-associative arrays as request headers
+* Fixed crash when serializing incomplete HttpMessage objects
   </notes>
   <deps>
    <dep type="php" rel="ge" version="4.3"/>
index b4e55bafb919ae2950765d7f9f215aa43239f236..adfef3146d0a8618980d6fa4cee7ef10dad406d7 100644 (file)
@@ -28,10 +28,10 @@ support. Parallel requests are available for PHP 5 and greater.
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
- <date>2006-10-25</date>
+ <date>2006-11-05</date>
  <version>
-  <release>1.3.3</release>
-  <api>1.3.0</api>
+  <release>1.4.0dev</release>
+  <api>1.4.0</api>
  </version>
  <stability>
   <release>stable</release>
@@ -39,13 +39,10 @@ support. Parallel requests are available for PHP 5 and greater.
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-* Fixed HttpResponse::setHeader("name", {omitted|NULL|""}) not unsetting header
-* Fixed array parameters to allow NULL in HttpRequest::__construct(),
-  HttpRequest::getResposeCookie(), HttpMessage::setHeaders(),
-  http_parse_cookie(), http_post_fields().
-* Fixed possible leak in http_send_data() and HttpResponse::setData()
-* Fixed build --without-http-curl-requests (bug #8872)
-* Fixed build with PHP < 4.3.10 (bug #9067)
++ Added "ipresolve" request option
++ Added HTTP_IPRESOLVE_{ANY|V4|V6}, HttpRequest::IPRESOLVE_{ANY|V4|V6} constants
+* Fixed crash when using non-associative arrays as request headers
+* Fixed crash when serializing incomplete HttpMessage objects
 ]]></notes>
  <contents>
   <dir name="/">
index c8a1145735ace3712f1277496420d23ecbbd811e..61fd4c8c6c0fe979884d63516b637777b0395ad1 100644 (file)
@@ -15,7 +15,7 @@
 #ifndef PHP_EXT_HTTP_H
 #define PHP_EXT_HTTP_H
 
-#define PHP_EXT_HTTP_VERSION "1.3.4dev"
+#define PHP_EXT_HTTP_VERSION "1.4.0dev"
 
 #ifdef HAVE_CONFIG_H
 #      include "config.h"