package.xml updates
[m6w6/ext-http] / package2.xml
index b9e136e811990c0c24bd55e77e0733f97500ee5c..94c963772dd825374f4ce5d41c01e826b62b27b7 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-12-04</date>
+ <date>2009-02-16</date>
  <version>
-  <release>1.4.0RC1</release>
-  <api>1.4.0</api>
+  <release>1.7.0-dev</release>
+  <api>1.7.0</api>
  </version>
  <stability>
   <release>beta</release>
@@ -39,23 +39,39 @@ support. Parallel requests are available for PHP 5 and greater.
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-* Improved response performance
-+ Added "ipresolve" request option
-+ Added HTTP_IPRESOLVE_{ANY|V4|V6}, HttpRequest::IPRESOLVE_{ANY|V4|V6} constants
-+ Added missing HTTP_SSL_VERSION_{ANY|TLSv1|SSLv2|SSLv3}, HttpRequest::SSL_VERSION_{ANY|TLSv1|SSLv2|SSLv3} constants
-+ Added factory methods to HttpMessage, HttpQueryString, HttpRequest, HttpRequestDataShare, HttpDeflateStream, HttpInflateStream
-* Fixed aborted PUT request when empty put data was set with HttpRequest::setPutData()
-* Fixed crash when using non-associative arrays as request headers
-* Fixed crash when serializing incomplete HttpMessage objects
-* Fixed bug #9282: libcurl version error in configure (keith at iveys dot org)
-* Fixed crash when retrieving the response message from an unserialized HttpRequest object
-- Removed obsolete HTML function reference
+* Implement Request #14408 (Add a customizable timeout for HttpRequestPool::socketSelect)
+* Implement Request #15775 (recursive http_request_body_encode)
+* Added request options:
+ - proxytunnel: enable tunelling through the HTTP proxy
+ - postredir: enforcing RFC conformig POST after redirect (libcurl >= 7.17.1)
+ - address_scope: RFC4007 zone_id (libcurl >= 7.19.0)
+ - noproxy: comma separatet list of hosts (* means all hosts) not to use a proxy for (libcurl >= 7.19.4)
+ - ssl->issuercert: validate peer certificate issuer (libcurl >= 7.19.0)
+ - ssl->crlfile: require CRL check (libcurl >= 7.19.0 with openssl)
+ - ssl->certinfo: enable the certinfo gatherer (libcurl >= 7.19.1 with openssl)
+* Added postredir request options constants:
+ - HTTP_POSTREDIR_301
+ - HTTP_POSTREDIR_302
+ - HTTP_POSTREDIR_ALL
+* Added authtype request option constant:
+ - HTTP_AUTH_DIGEST_IE
+* Added proxytype request option constants:
+ - HTTP_PROXY_SOCKS4A
+ - HTTP_PROXY_SOCKS5_HOSTNAME
+ - HTTP_PROXY_HTTP_1_0
+* Added request info members:
+ - redirect_url (libcurl >= 7.18.2)
+ - primary_ip (libcurl >= 7.19.0)
+ - appconnect_time (libcurl >= 7.19.0)
+ - certinfo (libcurl >= 7.19.1 with openssl)
+ - condition_unmet (libcurl >= 7.19.4)
 ]]></notes>
  <contents>
   <dir name="/">
    <file role="doc" name="LICENSE"/>
    <file role="doc" name="CREDITS"/>
    <file role="doc" name="KnownIssues.txt"/>
+   <file role="doc" name="ThanksTo.txt"/>
    <file role="doc" name="docs/http.ini"/>
    <file role="doc" name="docs/examples/tutorial.txt"/>
    
@@ -84,6 +100,7 @@ support. Parallel requests are available for PHP 5 and greater.
    <file role="src" name="php_http_headers_api.h"/>
    <file role="src" name="php_http_info_api.h"/>
    <file role="src" name="php_http_message_api.h"/>
+   <file role="src" name="php_http_persistent_handle_api.h"/>
    <file role="src" name="php_http_querystring_api.h"/>
    <file role="src" name="php_http_request_api.h"/>
    <file role="src" name="php_http_request_int.h"/>
@@ -115,6 +132,7 @@ support. Parallel requests are available for PHP 5 and greater.
    <file role="src" name="http_headers_api.c"/>
    <file role="src" name="http_info_api.c"/>
    <file role="src" name="http_message_api.c"/>
+   <file role="src" name="http_persistent_handle_api.c"/>
    <file role="src" name="http_querystring_api.c"/>
    <file role="src" name="http_request_api.c"/>
    <file role="src" name="http_request_info.c"/>
@@ -150,6 +168,7 @@ support. Parallel requests are available for PHP 5 and greater.
     <file role="test" name="log.inc"/>
     <file role="test" name="allowed_methods_002_logging.phpt"/>
     <file role="test" name="allowed_methods_002.phpt"/>
+    <file role="test" name="bug_15800.phpt"/>
     <file role="test" name="build_str_001.phpt"/>
     <file role="test" name="build_url_001.phpt"/>
     <file role="test" name="build_url_002.phpt"/>
@@ -181,6 +200,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"/>
@@ -220,7 +241,11 @@ support. Parallel requests are available for PHP 5 and greater.
     <file role="test" name="parse_message_003.phpt"/>
     <file role="test" name="parse_message_004.phpt"/>
     <file role="test" name="parse_message_005.phpt"/>
+    <file role="test" name="parse_message_006.phpt"/>
     <file role="test" name="parse_params_001.phpt"/>
+    <file role="test" name="persistent_handles_001.phpt"/>
+    <file role="test" name="persistent_handles_002.phpt"/>
+    <file role="test" name="persistent_handles_003.phpt"/>
     <file role="test" name="redirect_011_logging.phpt"/>
     <file role="test" name="redirect_011.phpt"/>
     <file role="test" name="redirect_012_logging.phpt"/>