prepare v4.2.5
[m6w6/ext-http] / CHANGELOG.md
1 # ChangeLog v4
2
3 ## 4.2.5, 2024-02-05
4
5 * Fix incompatible pointer types (32-bit) (see gh issue #134)
6 * Fix glitch in CURL_VERSION_TLSAUTH_SRP autoconf probe (see gh issue #133)
7
8 ## 4.2.4, 2023-10-02
9
10 * Fix Error using ssl array in options : Could not set option tlsauthtype
11 (see gh issue #131)
12 * Fix arginfo wargnings of the internal curl client user handler
13 * Disable libidn support for v1.36-v1.38 due to broken locale detection
14
15 ## 4.2.3, 2022-06-10
16
17 * Fix http\Client::requeue() not updating response callback
18
19 ## 4.2.2, 2022-02-25
20
21 * Fixed gh-issue #123: Segfault with libcurl 7.81
22
23 ## 4.2.1, 2021-09-13
24
25 * Fixed failing tests with PHP-8.1 (see gh issue #120)
26 * Fixed configure reliably finding the right libcurl features available
27 * Fixed cookie handling with libcurl 7.77+ and consistently across all
28 supported libcurl versions (follow-up to gh issue #116)
29
30 ## 4.2.0, 2021-08-30
31
32 * Fixed PHP-8.1 compatibility (see gh issues #114, #115 and #118)
33 * Fixed cookies failing with libcurl >= 7.77 (see gh issue #116)
34 * Fixed tests using $_ENV instead of getenv() to find executables in PATH (see gh issue #113)
35 * Added http\Env::reset(): resets internal HTTP request cache (see gh issue #90)
36
37 ## 4.1.0, 2021-04-21
38
39 * Added request options:
40 * http\Client\Curl::$abstract_unix_socket
41 * http\Client\Curl::$altsvc
42 * http\Client\Curl::$altsvc_ctrl
43 * http\Client\Curl::$aws_sigv4
44 * http\Client\Curl::$doh_url
45 * http\Client\Curl::$dns_shuffle_addresses
46 * http\Client\Curl::$haproxy_protocol
47 * http\Client\Curl::$hsts
48 * http\Client\Curl::$hsts_ctrl
49 * http\Client\Curl::$http09_allowed
50 * http\Client\Curl::$maxage_conn
51 * http\Client\Curl::$pinned_publickey
52 * http\Client\Curl::$proxy_ssl
53 * http\Client\Curl::$socks5_auth
54 * http\Client\Curl::$tcp_fastopen
55 * http\Client\Curl::$tls13_ciphers
56 * http\Client\Curl::$xoauth2_bearer
57 * Added request option constants:
58 * http\Client\Curl\AUTH_AWS_SIGV4
59 * http\Client\Curl\AUTH_BEARER
60 * http\Client\Curl\AUTH_NONE
61 * http\Client\Curl\HTTP_VERSION_2_PRIOR_KNOWLEDGE
62 * http\Client\Curl\HTTP_VERSION_3
63 * http\Client\Curl\SSL_VERSION_MAX_*
64 * http\Client\Curl\SSL_VERSION_TLSv1_3
65 * Added library version constants:
66 * http\Client\Curl\Versions\BROTLI
67 * http\Client\Curl\Versions\CAINFO
68 * http\Client\Curl\Versions\CAPATH
69 * http\Client\Curl\Versions\HYPER
70 * http\Client\Curl\Versions\ICONV
71 * http\Client\Curl\Versions\NGHTTP2
72 * http\Client\Curl\Versions\QUIC
73 * http\Client\Curl\Versions\ZSTD
74
75 ## 4.0.0, 2021-01-13
76
77 Changes from beta1:
78 * Fixed configure on systems which do not provide icu-config
79 * Fixed gh-issue #89: Cookie handling cannot be disabled since v3.2.1
80
81 ## 4.0.0beta1, 2020-09-23
82
83 * PHP 8 compatibility
84 - Drop ext-propro support:
85 PHP 8 removes the object get/set API from the ZendEngine, which renders
86 that extension dysfunctional. As a consequence, the header property of
87 http\Message and derived classes cannot be modified in place, and thus
88 by reference.