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