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