- release 1.5.5
authorMichael Wallner <mike@php.net>
Tue, 4 Sep 2007 16:04:55 +0000 (16:04 +0000)
committerMichael Wallner <mike@php.net>
Tue, 4 Sep 2007 16:04:55 +0000 (16:04 +0000)
KnownIssues.txt
config.w32
package.xml
package2.xml
php_http.h

index c6565b23402306b054364d18706e1a2263ab973e..ca7e2ccfb1296317874ee351606a5bb7a1a7f8ca 100644 (file)
@@ -16,3 +16,5 @@ Internals:
        Inflating raw deflated data causes a re-initialization of the inflate
                stream where the corresponding window bits are modified to tell libz
                to not check for zlib header bytes.  This is not preventable AFAICS.
+       LFS dependant parts of libcurl are left out because of off_t,
+               respectively off64_t confusion.
index 95c1e994bb95deb9569f13ec704d87738a93b08d..1a9b6b0e08e23af0fa35ebfe1351786081dd99e2 100644 (file)
@@ -109,7 +109,6 @@ if (PHP_HTTP != "no") {
                AC_DEFINE("HAVE_CURL_SHARE_STRERROR", 1, "");
                AC_DEFINE("HAVE_CURL_EASY_STRERROR", 1, "");
                AC_DEFINE("HAVE_CURL_EASY_RESET", 1, "");
-               AC_DEFINE("HAVE_CURL_GETFORMDATA", 1, "");
                AC_DEFINE("HAVE_CURL_FORMGET", 1, "");
                AC_DEFINE("HAVE_CURL_MULTI_SETOPT", 1, "");
                AC_DEFINE("HAVE_CURL_MULTI_TIMEOUT", 1, "");
index 85f4df5b9a0a31f8474de0507889acac6a592345..db0f04c2d63edcacf00980930ce0bc8c7c5c2cbe 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.5.1">
+<package version="1.0" packagerversion="1.6.1">
  <name>pecl_http</name>
  <summary>Extended HTTP Support</summary>
  <description>This HTTP extension aims to provide a convenient and powerful 
@@ -23,11 +23,14 @@ support. Parallel requests are available for PHP 5 and greater.
   </maintainer>
   </maintainers>
  <release>
-  <version>1.5.4</version>
-  <date>2007-06-28</date>
+  <version>1.5.5</version>
+  <date>2007-09-04</date>
   <license>BSD, revised</license>
   <state>stable</state>
-  <notes>* Fixed bug #11359 HttpMessage::toMessageTypeObject() does not populate POST fields
+  <notes>* Fixed Bug #11929 (http_negotiate does not return default value on non-match)
+* Fixed SSL library detection for libcurl &gt;= 7.16.2
+- Removed max_recv_speed and max_send_speed request options
+  again, due to LFS dependence
   </notes>
   <deps>
    <dep type="php" rel="ge" version="4.3"/>
index 73aa5afcc7fc77d3bb3855997479c23494bf6556..2fcea57dad71725d83a7fb5b294d9c6b844c060c 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>2007-06-28</date>
+ <date>2007-09-04</date>
  <version>
-  <release>1.5.4</release>
+  <release>1.5.5</release>
   <api>1.5.0</api>
  </version>
  <stability>
@@ -39,7 +39,10 @@ support. Parallel requests are available for PHP 5 and greater.
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-* Fixed bug #11359 HttpMessage::toMessageTypeObject() does not populate POST fields
+* Fixed Bug #11929 (http_negotiate does not return default value on non-match)
+* Fixed SSL library detection for libcurl >= 7.16.2
+- Removed max_recv_speed and max_send_speed request options
+  again, due to LFS dependence
 ]]></notes>
  <contents>
   <dir name="/">
index a5c9856d15ecde5f53201079dd96a09ab20a1c63..9290a2566049e3609ab16c8f6bec188c680bf417 100644 (file)
@@ -15,7 +15,7 @@
 #ifndef PHP_EXT_HTTP_H
 #define PHP_EXT_HTTP_H
 
-#define PHP_EXT_HTTP_VERSION "1.5.4"
+#define PHP_EXT_HTTP_VERSION "1.5.5"
 
 #ifdef HAVE_CONFIG_H
 #      include "config.h"