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