From: Michael Wallner Date: Fri, 3 Feb 2006 09:39:32 +0000 (+0000) Subject: - prepare v.22 release X-Git-Tag: RELEASE_0_22_0~2 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=c7a5f1c64f8d4597fabf313c4597736836239815 - prepare v.22 release --- diff --git a/docs/functions.html b/docs/functions.html index 808a435..bbe1dbc 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -1297,7 +1297,7 @@ http.cache_log is set.

-

Generated at: Mon, 30 Jan 2006 21:47:53 +0100

+

Generated at: Fri, 03 Feb 2006 10:38:18 +0100

diff --git a/package.xml b/package.xml index b3dd944..0061452 100644 --- a/package.xml +++ b/package.xml @@ -1,6 +1,6 @@ - + pecl_http Extended HTTP Support This HTTP extension aims to provide a convenient and powerful @@ -16,7 +16,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 @@ -30,23 +30,28 @@ HttpResponse - 0.21.0 - 2006-01-03 + 0.22.0 + 2006-02-03 BSD, revised beta - ! Encodings functionality requires libz version 1.2.0.4 or greater + + Added HTTP 'protocol' version request option. (Ilia) ++ Added optional class_name param to HttpMessage::fromString() ++ Added HttpMessage::toMessageTypeObject(), HttpMessage::detach(), HttpMessage::prepend() ++ Added Iterator interface to HttpMessage ++ Added http_get_request_body_stream() ++ Added HttpQueryString class -+ Added HttpDeflateStream and HttpInflateStream classes -+ Added ob_deflatehandler and ob_inflatehandler -+ Added HttpRequest::getRawRequestMessage and ::getRawResponseMessage -+ Added 'resetcookies' request option (libcurl > 7.14.1) +- 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 -- Changed all methods and properties with "URI" in their name to "URL" -- Changed HttpRequest properties to be private - -* Fixed a lot of memory corruptions within HttpRequest - -Special thanks for this release go to Ilia Alshanetsky. +* Decreased the per-request calls to curl_easy_setopt() +* 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) @@ -108,6 +113,11 @@ Special thanks for this release go to Ilia Alshanetsky. + + + + + @@ -203,6 +213,7 @@ Special thanks for this release go to Ilia Alshanetsky. + @@ -231,6 +242,7 @@ Special thanks for this release go to Ilia Alshanetsky. + diff --git a/package2.xml b/package2.xml index e073f93..925d2e6 100644 --- a/package2.xml +++ b/package2.xml @@ -37,7 +37,7 @@ HttpResponse 2006-00-00 - 0.22.0-dev + 0.22.0 0.22.0 @@ -53,10 +53,10 @@ HttpResponse + Added http_get_request_body_stream() + Added HttpQueryString class -- Don't pretend anylonger to understand 'compress' Content-Encoding. -- Changed http_redirect() to PHPs behaviour by default. +- 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) -- Enable curl and zlib functionality by default in configure +- 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() diff --git a/php_http.h b/php_http.h index e41c51c..3c98bd0 100644 --- a/php_http.h +++ b/php_http.h @@ -15,7 +15,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define PHP_EXT_HTTP_VERSION "0.22.0-dev" +#define PHP_EXT_HTTP_VERSION "0.22.0" #ifdef HAVE_CONFIG_H # include "config.h"