update
[m6w6/ext-http] / package2.xml
index 48ee7808c615b45488861951ae6ae083665f8b8b..13f94207dc24aa515da7efee957f53ecaf890a66 100644 (file)
@@ -24,7 +24,7 @@ support. Parallel requests are available for PHP-5 and greater.
 
 PHP-5 classes:
 HttpUtil, HttpMessage, HttpRequest, HttpRequestPool, 
-HttpDeflateStream, HttpInflateStream
+HttpDeflateStream, HttpInflateStream, HttpQueryString
 
 PHP-5.1 classes:
 HttpResponse
@@ -37,8 +37,8 @@ HttpResponse
  </lead>
  <date>2006-00-00</date>
  <version>
-  <release>0.22.0-dev</release>
-  <api>0.22.0</api>
+  <release>0.23.0</release>
+  <api>0.23.0</api>
  </version>
  <stability>
   <release>beta</release>
@@ -46,14 +46,22 @@ HttpResponse
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-+ Added HTTP 'protocol' version request option. (Ilia)
++ Added 'etag' request option.
++ Added missing accessors to response status text to HttpMessage and HttpRequest classes.
 
-- Don't pretend anylonger to understand 'compress' Content-Encoding.
-- Changed http_redirect() to PHPs behaviour by default.
-- Sending an User-Agent can now prevented by setting 'useragent' to NULL or empty string. (Ilia)
+* Fixed PHP-4.4 and PHP-5.0 build.
+
+- Don't pretend anylonger to understand 'compress' Content-Encoding
+- Sending an User-Agent can now be prevented by setting 'useragent' to NULL or empty string. (Ilia)
+- Changed http_redirect() to PHPs behaviour by default
+- Changed configure to enable curl and zlib functionality by default
+- Changed http_build_url() to accept a flag that defines what parts and how they are replaced/merged
 
 * Decreased the per-request calls to curl_easy_setopt()
-* Fixed ZTS + gnutls build
+* Fixed gnutls ZTS build
+* Fixed openssl ZTS issues with other libraries using openssl
+* Fixed some issues with http_get_request_body()
+* Fixed bug #6645 - doesn't compile with zlib 1.2.2 (undefined Z_FIXED)
 ]]></notes>
  <contents>
   <dir name="/">
@@ -61,6 +69,7 @@ HttpResponse
    <file role="doc" name="CREDITS"/>
    <file role="doc" name="EXPERIMENTAL"/>
    <file role="doc" name="KnownIssues.txt"/>
+   <file role="doc" name="http.ini"/>
    <file role="doc" name="docs/functions.html"/>
    <file role="doc" name="docs/examples/extract.php"/>
    <file role="doc" name="docs/examples/tutorial.txt"/>
@@ -98,6 +107,7 @@ HttpResponse
    <file role="src" name="php_http_deflatestream_object.h"/>
    <file role="src" name="php_http_inflatestream_object.h"/>
    <file role="src" name="php_http_message_object.h"/>
+   <file role="src" name="php_http_querystring_object.h"/>
    <file role="src" name="php_http_request_object.h"/>
    <file role="src" name="php_http_requestpool_object.h"/>
    <file role="src" name="php_http_response_object.h"/>
@@ -123,6 +133,7 @@ HttpResponse
    <file role="src" name="http_deflatestream_object.c"/>
    <file role="src" name="http_inflatestream_object.c"/>
    <file role="src" name="http_message_object.c"/>
+   <file role="src" name="http_querystring_object.c"/>
    <file role="src" name="http_request_object.c"/>
    <file role="src" name="http_requestpool_object.c"/>
    <file role="src" name="http_response_object.c"/>
@@ -137,6 +148,7 @@ HttpResponse
     <file role="test" name="allowed_methods_001_logging.phpt"/>
     <file role="test" name="allowed_methods_002.phpt"/>
     <file role="test" name="allowed_methods_002_logging.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"/>
     <file role="test" name="build_url_003.phpt"/>
@@ -170,6 +182,11 @@ HttpResponse
     <file role="test" name="HttpMessage_001.phpt"/>
     <file role="test" name="HttpMessage_002.phpt"/>
     <file role="test" name="HttpMessage_003.phpt"/>
+    <file role="test" name="HttpMessage_004.phpt"/>
+    <file role="test" name="HttpMessage_005.phpt"/>
+    <file role="test" name="HttpMessage_006.phpt"/>
+    <file role="test" name="HttpQueryString_001.phpt"/>
+    <file role="test" name="HttpQueryString_002.phpt"/>
     <file role="test" name="HttpRequest_001.phpt"/>
     <file role="test" name="HttpRequest_002.phpt"/>
     <file role="test" name="HttpRequest_003.phpt"/>
@@ -211,6 +228,7 @@ HttpResponse
     <file role="test" name="redirect_012_logging.phpt"/>
     <file role="test" name="redirect_013.phpt"/>
     <file role="test" name="redirect_013_logging.phpt"/>
+    <file role="test" name="request_etag.phpt"/>
     <file role="test" name="request_gzip.phpt"/>
     <file role="test" name="request_methods.phpt"/>
     <file role="test" name="send_data_001.phpt"/>
@@ -280,6 +298,7 @@ HttpResponse
    default="yes"
   />
   <filelist>
+   <install as="http.ini" name="docs/http.ini"/>
    <install as="functions.html" name="docs/functions.html"/>
    <install as="examples/extract.php" name="docs/examples/extract.php"/>
    <install as="examples/tutorial.txt" name="docs/examples/tutorial.txt"/>