mirror of
https://github.com/curl/curl.git
synced 2025-01-30 14:22:33 +08:00
RELEASE-NOTES: synced
This commit is contained in:
parent
b40e4c0d47
commit
39a9de3cec
@ -4,7 +4,7 @@ curl and libcurl 7.81.0
|
||||
Command line options: 244
|
||||
curl_easy_setopt() options: 295
|
||||
Public functions in libcurl: 86
|
||||
Contributors: 2548
|
||||
Contributors: 2549
|
||||
|
||||
This release includes the following changes:
|
||||
|
||||
@ -13,6 +13,7 @@ This release includes the following changes:
|
||||
This release includes the following bugfixes:
|
||||
|
||||
o azure: make the "w/o HTTP/SMTP/IMAP" build disable SSL proper [12]
|
||||
o BINDINGS.md: add cURL client for PostgreSQL [68]
|
||||
o cmake: don't set _USRDLL on a static Windows build [22]
|
||||
o cmake: private identifiers use CURL_ instead of CMAKE_ prefix [40]
|
||||
o config.d: update documentation to match the path search
|
||||
@ -25,17 +26,20 @@ This release includes the following bugfixes:
|
||||
o curl_easy_cleanup.3: remove from multi handle first [3]
|
||||
o curl_easy_escape.3: call curl_easy_cleanup in example [58]
|
||||
o curl_easy_unescape.3: call curl_easy_cleanup in example [57]
|
||||
o curl_multi_perform/socket_action.3: clarify what errors mean [70]
|
||||
o curl_share_setopt.3: split out options into their own manpages [14]
|
||||
o CURLOPT_STDERR.3: does not work with libcurl as a win32 DLL [51]
|
||||
o digest: compute user:realm:pass digest w/o userhash [45]
|
||||
o docs/checksrc: Add documentation for STRERROR [18]
|
||||
o docs/cmdline-opts: do not say "protocols: all" [26]
|
||||
o docs/INSTALL.md: typo fix : added missing "get" verb [31]
|
||||
o docs/URL-SYNTAX.md: space is not fine in a given URL
|
||||
o docs: address proselint nits [16]
|
||||
o docs: consistent manpage SYNOPSIS [47]
|
||||
o docs: Update the Reducing Size section
|
||||
o FAQ: typo fix : "yout" ➤ "your" [30]
|
||||
o gen.pl: improve example output format [29]
|
||||
o hash: lazy-alloc the table in Curl_hash_add() [54]
|
||||
o http2:set_transfer_url() return early on OOM [53]
|
||||
o HTTP3: update quiche build instructions [37]
|
||||
o http: enable haproxy support for hyper backend [20]
|
||||
@ -46,10 +50,12 @@ This release includes the following bugfixes:
|
||||
o Makefile.m32: rename -winssl option to -schannel and tidy up [33]
|
||||
o mbedTLS: add support for CURLOPT_CAINFO_BLOB [44]
|
||||
o mbedTLS: include NULL byte in blob data length for CURLOPT_CAINFO_BLOB [38]
|
||||
o multi: cleanup the socket hash when destroying it [55]
|
||||
o multi: handle errors returned from socket/timer callbacks [52]
|
||||
o multi: shut down CONNECT in Curl_detach_connnection [2]
|
||||
o netrc.d: edit the .netrc example to look nicer [24]
|
||||
o openldap: implement STARTTLS [56]
|
||||
o openldap: process search query response messages one by one [50]
|
||||
o openssl: check the return value of BIO_new() [43]
|
||||
o openssl: remove `RSA_METHOD_FLAG_NO_CHECK` handling if unavailable
|
||||
o openssl: remove usage of deprecated `SSL_get_peer_certificate`
|
||||
@ -62,9 +68,16 @@ This release includes the following bugfixes:
|
||||
o rustls: read of zero bytes might be okay [9]
|
||||
o rustls: remove comment about checking handshaking [15]
|
||||
o rustls: remove incorrect EOF check [10]
|
||||
o test1156: enable for hyper [65]
|
||||
o test1156: fixup the stdout check for Windows [60]
|
||||
o test1525: tweaked for hyper [64]
|
||||
o test1526: enable for hyper [63]
|
||||
o test1527: enable for hyper [62]
|
||||
o test1528: enable for hyper [61]
|
||||
o test1554: adjust for hyper [49]
|
||||
o test1556: adjust for hyper [48]
|
||||
o test302[12]: run only with the libssh2 backend [8]
|
||||
o test661: enable for hyper [66]
|
||||
o tests/CI.md: add more information on CI environments [39]
|
||||
o tftp: mark protocol as not possible to do over CONNECT [25]
|
||||
o tool_findfile: updated search for a file in the homedir [46]
|
||||
@ -91,9 +104,10 @@ advice from friends like these:
|
||||
Florian Van Heghe, Glenn Strauss, Jacob Hoffman-Andrews, Jeff Luszcz,
|
||||
jeffrson on github, Jun Tseng, Kevin Burke, Marcelo Juchem, Marcel Raad,
|
||||
Mark Dodgson, nimaje on github, Patrick Monnerat, Paul Howarth, Ray Satiro,
|
||||
Rikard Falkeborn, Ryan Sleevi, Stan Hu, Stefan Eissing, Stephane Pellegrino,
|
||||
Stephen M. Coakley, Viktor Szakats, Vincent Grande, Wyatt O'Day,
|
||||
(35 contributors)
|
||||
RekGRpth on github, Rikard Falkeborn, Ryan Sleevi, Stan Hu, Stefan Eissing,
|
||||
Stephane Pellegrino, Stephen M. Coakley, Viktor Szakats, Vincent Grande,
|
||||
Wyatt O'Day,
|
||||
(36 contributors)
|
||||
|
||||
References to bug reports and discussions on issues:
|
||||
|
||||
@ -146,10 +160,22 @@ References to bug reports and discussions on issues:
|
||||
[47] = https://curl.se/bug/?i=8062
|
||||
[48] = https://curl.se/bug/?i=8105
|
||||
[49] = https://curl.se/bug/?i=8104
|
||||
[50] = https://curl.se/bug/?i=8101
|
||||
[51] = https://curl.se/bug/?i=8103
|
||||
[52] = https://curl.se/bug/?i=8083
|
||||
[53] = https://curl.se/bug/?i=8100
|
||||
[54] = https://curl.se/bug/?i=8132
|
||||
[55] = https://curl.se/bug/?i=8129
|
||||
[56] = https://curl.se/bug/?i=8065
|
||||
[57] = https://curl.se/bug/?i=8097
|
||||
[58] = https://curl.se/bug/?i=8097
|
||||
[59] = https://curl.se/bug/?i=8094
|
||||
[60] = https://curl.se/bug/?i=8134
|
||||
[61] = https://curl.se/bug/?i=8128
|
||||
[62] = https://curl.se/bug/?i=8128
|
||||
[63] = https://curl.se/bug/?i=8128
|
||||
[64] = https://curl.se/bug/?i=8128
|
||||
[65] = https://curl.se/bug/?i=8127
|
||||
[66] = https://curl.se/bug/?i=8126
|
||||
[68] = https://curl.se/bug/?i=8125
|
||||
[70] = https://curl.se/bug/?i=8120
|
||||
|
Loading…
Reference in New Issue
Block a user