From ff2148e3f14ab76babbabc7a759fc80fefd1e769 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 2 Oct 2023 11:03:03 +0200 Subject: [PATCH] release 4.2.4 * Fix Error using ssl array in options : Could not set option tlsauthtype (see gh issue #131) * Fix arginfo wargnings of the internal curl client user handler * Disable libidn support for v1.36-v1.38 due to broken locale detection --- CHANGELOG.md | 7 +++++++ package.xml | 9 ++++++--- php_http.h | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8b483b..48f701d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # ChangeLog v4 +## 4.2.4, 2023-10-02 + +* Fix Error using ssl array in options : Could not set option tlsauthtype + (see gh issue #131) +* Fix arginfo wargnings of the internal curl client user handler +* Disable libidn support for v1.36-v1.38 due to broken locale detection + ## 4.2.3, 2022-06-10 * Fix http\Client::requeue() not updating response callback diff --git a/package.xml b/package.xml index 73e8c18..f9e4832 100644 --- a/package.xml +++ b/package.xml @@ -31,9 +31,9 @@ https://mdref.m6w6.name/http mike@php.net yes - 2022-06-10 + 2023-10-02 - 4.2.3 + 4.2.4 4.2.0 @@ -42,7 +42,10 @@ https://mdref.m6w6.name/http BSD-2-Clause diff --git a/php_http.h b/php_http.h index 58fdc27..cfa1160 100644 --- a/php_http.h +++ b/php_http.h @@ -13,7 +13,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define PHP_PECL_HTTP_VERSION "4.2.3" +#define PHP_PECL_HTTP_VERSION "4.2.4" extern zend_module_entry http_module_entry; #define phpext_http_ptr &http_module_entry -- 2.30.2