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