- release 1.5.0RC2
[m6w6/ext-http] / package2.xml
index 82714db72d35c82e456bfb984c3ecd3ac8f9b7dc..f0351e2b821d0c0f96c560022f5ba1881b857b91 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-01-23</date>
+ <date>2007-02-09</date>
  <version>
-  <release>1.5.0dev</release>
+  <release>1.5.0RC2</release>
   <api>1.5.0</api>
  </version>
  <stability>
@@ -39,9 +39,12 @@ support. Parallel requests are available for PHP 5 and greater.
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-+ Added HttpMessage::fromEnv(int type[, string class_name = "HttpMessage"]) (Clay Loveless)
-+ Added --enable-http-persistent-handles (per-process persistent cURL handles) (Clay Loveless)
-+ Added http_persistent_handles_count(), http_persistent_handles_clean([string name]), http_persistent_handles_ident([string ident])
+o Improved new persistent handles functionality
+  - Removed --enable-http-persistent-handles
+  + Added http.persistent.handles.limit system INI option which controls
+    the maximum amount of idle persistent handles kept around (per provider);
+      0 means every handle is destroyed after usage (i.e. disabled),
+      -1 means virtually unlimited maximum amount of idle handles (default)
 ]]></notes>
  <contents>
   <dir name="/">
@@ -77,7 +80,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_handles_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"/>
@@ -109,7 +112,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_handles_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"/>
@@ -216,6 +219,7 @@ support. Parallel requests are available for PHP 5 and greater.
     <file role="test" name="parse_message_004.phpt"/>
     <file role="test" name="parse_message_005.phpt"/>
     <file role="test" name="parse_params_001.phpt"/>
+    <file role="test" name="persistent_handles_001.phpt"/>
     <file role="test" name="redirect_011_logging.phpt"/>
     <file role="test" name="redirect_011.phpt"/>
     <file role="test" name="redirect_012_logging.phpt"/>
@@ -291,11 +295,6 @@ support. Parallel requests are available for PHP 5 and greater.
    prompt="whether to depend on extensions which have been built shared"
    default="yes"
   />
-  <configureoption
-   name="enable-http-persistent-handles"
-   prompt="whether to enable per-process persistent cURL handles"
-   default="no"
-  />
   <filelist>
    <install as="http.ini" name="docs/http.ini"/>
    <install as="examples/tutorial.txt" name="docs/examples/tutorial.txt"/>