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