Skip to content

Commit

Permalink
prepare v4.2.5
Browse files Browse the repository at this point in the history
* Fix incompatible pointer types (32-bit) (see gh issue #134)
* Fix glitch in CURL_VERSION_TLSAUTH_SRP autoconf probe (see gh issue #133)
  • Loading branch information
m6w6 committed Feb 5, 2024
1 parent 25e50bf commit 1457873
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# ChangeLog v4

## 4.2.5, 2024-02-05

* Fix incompatible pointer types (32-bit) (see gh issue #134)
* Fix glitch in CURL_VERSION_TLSAUTH_SRP autoconf probe (see gh issue #133)

## 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
* 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
Expand All @@ -19,7 +24,7 @@

* Fixed failing tests with PHP-8.1 (see gh issue #120)
* Fixed configure reliably finding the right libcurl features available
* Fixed cookie handling with libcurl 7.77+ and consistently across all
* Fixed cookie handling with libcurl 7.77+ and consistently across all
supported libcurl versions (follow-up to gh issue #116)

## 4.2.0, 2021-08-30
Expand Down Expand Up @@ -66,7 +71,7 @@
* http\Client\Curl\Versions\NGHTTP2
* http\Client\Curl\Versions\QUIC
* http\Client\Curl\Versions\ZSTD

## 4.0.0, 2021-01-13

Changes from beta1:
Expand All @@ -76,7 +81,7 @@ Changes from beta1:
## 4.0.0beta1, 2020-09-23

* PHP 8 compatibility
- Drop ext-propro support:
- Drop ext-propro support:
PHP 8 removes the object get/set API from the ZendEngine, which renders
that extension dysfunctional. As a consequence, the header property of
http\Message and derived classes cannot be modified in place, and thus
Expand Down
10 changes: 4 additions & 6 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ https://mdref.m6w6.name/http
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2023-10-02</date>
<date>2024-02-05</date>
<version>
<release>4.2.4</release>
<release>4.2.5</release>
<api>4.2.0</api>
</version>
<stability>
Expand All @@ -42,10 +42,8 @@ https://mdref.m6w6.name/http
</stability>
<license uri="http://copyfree.org/content/standard/licenses/2bsd/license.txt">BSD-2-Clause</license>
<notes><![CDATA[
* 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
* Fix incompatible pointer types (32-bit) (see gh issue #134)
* Fix glitch in CURL_VERSION_TLSAUTH_SRP autoconf probe (see gh issue #133)
]]></notes>
<contents>
<dir name="/">
Expand Down
4 changes: 2 additions & 2 deletions php_http.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
#ifndef PHP_EXT_HTTP_H
#define PHP_EXT_HTTP_H

#define PHP_PECL_HTTP_VERSION "4.2.4"
#define PHP_PECL_HTTP_VERSION "4.2.5"

extern zend_module_entry http_module_entry;
#define phpext_http_ptr &http_module_entry

extern int http_module_number;

#endif /* PHP_EXT_HTTP_H */
#endif /* PHP_EXT_HTTP_H */

/*
* Local variables:
Expand Down

0 comments on commit 1457873

Please sign in to comment.