From d975e363a950a3beec4751683f872bb7445b831e Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Fri, 28 Dec 2018 09:13:41 +0000 Subject: [PATCH] Start 0.53 version : FEATURES ADDED: * httpclient : add rawData support * httpclient : add getContent () method * httpclient : de-zip the content of the page if Content-Encoding = gzip CORRECTED BUGS: * renderer : if the output is not defined in domframework, do not generate an error to allow the loading of the class by the autoloader * authentication : do not try to log in debug an array like a string * httpclient : when the Content-Length is set to 0, waiting socket is not needed git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@4814 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- debian/changelog | 16 ++++++++++++++++ version.php | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 5d2d167..306fc7c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +domframework (0.53-1) testing; urgency=low + + FEATURES ADDED: + * httpclient : add rawData support + * httpclient : add getContent () method + * httpclient : de-zip the content of the page if Content-Encoding = gzip + + CORRECTED BUGS: + * renderer : if the output is not defined in domframework, do not generate an + error to allow the loading of the class by the autoloader + * authentication : do not try to log in debug an array like a string + * httpclient : when the Content-Length is set to 0, waiting socket is not + needed + + -- Dominique Fournier Fri, 28 Dec 2018 10:13:21 +0100 + domframework (0.52-1) testing; urgency=low FEATURES ADDED: diff --git a/version.php b/version.php index e434e14..fb765c8 100644 --- a/version.php +++ b/version.php @@ -11,4 +11,4 @@ if (!defined ("DOMFRAMEWORK_VERSION") || version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0) die ("Your DomFramework version is too old : 0.6 minimum\n"); */ -define ("DOMFRAMEWORK_VERSION", "0.52"); +define ("DOMFRAMEWORK_VERSION", "0.53");