mirror of
https://github.com/moparisthebest/curl
synced 2025-01-11 05:58:01 -05:00
RELEASE-NOTES: synced
This commit is contained in:
parent
78cef06847
commit
036ebac013
@ -1,14 +1,14 @@
|
|||||||
curl and libcurl 7.68.0
|
curl and libcurl 7.68.0
|
||||||
|
|
||||||
Public curl releases: 187
|
Public curl releases: 187
|
||||||
Command line options: 226
|
Command line options: 227
|
||||||
curl_easy_setopt() options: 269
|
curl_easy_setopt() options: 269
|
||||||
Public functions in libcurl: 81
|
Public functions in libcurl: 81
|
||||||
Contributors: 2056
|
Contributors: 2056
|
||||||
|
|
||||||
This release includes the following changes:
|
This release includes the following changes:
|
||||||
|
|
||||||
o
|
o curl: add --parallel-immediate [29]
|
||||||
|
|
||||||
This release includes the following bugfixes:
|
This release includes the following bugfixes:
|
||||||
|
|
||||||
@ -23,6 +23,7 @@ This release includes the following bugfixes:
|
|||||||
o configure: fix typo in help text [4]
|
o configure: fix typo in help text [4]
|
||||||
o copyrights: fix copyright year range [25]
|
o copyrights: fix copyright year range [25]
|
||||||
o curl: fix -T globbing [16]
|
o curl: fix -T globbing [16]
|
||||||
|
o docs: Change 'experiemental' to 'experimental' [30]
|
||||||
o doh: improced both encoding and decoding [11]
|
o doh: improced both encoding and decoding [11]
|
||||||
o examples: add multi-poll.c [14]
|
o examples: add multi-poll.c [14]
|
||||||
o lib: Move lib/ssh.h -> lib/vssh/ssh.h [9]
|
o lib: Move lib/ssh.h -> lib/vssh/ssh.h [9]
|
||||||
@ -32,12 +33,16 @@ This release includes the following bugfixes:
|
|||||||
o ngtcp2: increase QUIC window size when data is consumed [12]
|
o ngtcp2: increase QUIC window size when data is consumed [12]
|
||||||
o ngtcp2: use overflow buffer for extra HTTP/3 data [5]
|
o ngtcp2: use overflow buffer for extra HTTP/3 data [5]
|
||||||
o ntlm: USE_WIN32_CRYPTO check removed to get USE_NTLM2SESSION set [3]
|
o ntlm: USE_WIN32_CRYPTO check removed to get USE_NTLM2SESSION set [3]
|
||||||
|
o openssl: Revert to less sensitivity for SYSCALL errors [26]
|
||||||
|
o openssl: improve error message for SYSCALL during connect [27]
|
||||||
o openssl: prevent recursive function calls from ctx callbacks [18]
|
o openssl: prevent recursive function calls from ctx callbacks [18]
|
||||||
o pause: avoid updating socket if done was already called [22]
|
o pause: avoid updating socket if done was already called [22]
|
||||||
|
o projects: Fix Visual Studio wolfSSL configurations
|
||||||
o quiche: reject HTTP/3 headers in the wrong order [17]
|
o quiche: reject HTTP/3 headers in the wrong order [17]
|
||||||
o remove_handle: clear expire timers after multi_done() [20]
|
o remove_handle: clear expire timers after multi_done() [20]
|
||||||
o strerror: Fix an error looking up some Windows error strings
|
o strerror: Fix an error looking up some Windows error strings
|
||||||
o system.h: fix for MCST lcc compiler [23]
|
o system.h: fix for MCST lcc compiler [23]
|
||||||
|
o test1175: verify symbols-in-versions and libcurl-errors.3 in sync [28]
|
||||||
o test1558: use double slash after file: [21]
|
o test1558: use double slash after file: [21]
|
||||||
o test1560: require IPv6 for IPv6 aware URL parsing [24]
|
o test1560: require IPv6 for IPv6 aware URL parsing [24]
|
||||||
|
|
||||||
@ -48,12 +53,14 @@ This release includes the following known bugs:
|
|||||||
This release would not have looked like this without help, code, reports and
|
This release would not have looked like this without help, code, reports and
|
||||||
advice from friends like these:
|
advice from friends like these:
|
||||||
|
|
||||||
3dyd on github, Anderson Sasaki, Andreas Falkenhahn, Christian Schmitz,
|
3dyd on github, Anderson Sasaki, Andreas Falkenhahn, Bjoern Franke,
|
||||||
Cynthia Coan, Daniel Stenberg, Gergely Nagy, Javier Blazquez, Kamil Dudka,
|
Christian Schmitz, Christoph M. Becker, Cynthia Coan, Dan Fandrich,
|
||||||
Leonardo Taccari, Marcel Raad, Massimiliano Fantuzzi, Max Kellermann,
|
Daniel Gustafsson, Daniel Stenberg, Gergely Nagy, Javier Blazquez,
|
||||||
Melissa Mears, Ray Satiro, Richard Bowker, SLDiggie on github,
|
Kamil Dudka, Leonardo Taccari, Marcel Raad, Massimiliano Fantuzzi,
|
||||||
Tatsuhiro Tsujikawa, Wyatt O'Day,
|
Max Kellermann, Melissa Mears, Paulo Roberto Tomasi, Ray Satiro,
|
||||||
(19 contributors)
|
Richard Bowker, SLDiggie on github, Tatsuhiro Tsujikawa, Tom van der Woerdt,
|
||||||
|
Victor Magierski, Wyatt O'Day,
|
||||||
|
(26 contributors)
|
||||||
|
|
||||||
Thanks! (and sorry if I forgot to mention someone)
|
Thanks! (and sorry if I forgot to mention someone)
|
||||||
|
|
||||||
@ -84,3 +91,8 @@ References to bug reports and discussions on issues:
|
|||||||
[23] = https://curl.haxx.se/bug/?i=4576
|
[23] = https://curl.haxx.se/bug/?i=4576
|
||||||
[24] = https://curl.haxx.se/bug/?i=4556
|
[24] = https://curl.haxx.se/bug/?i=4556
|
||||||
[25] = https://curl.haxx.se/bug/?i=4549
|
[25] = https://curl.haxx.se/bug/?i=4549
|
||||||
|
[26] = https://curl.haxx.se/bug/?i=4624
|
||||||
|
[27] = https://curl.haxx.se/bug/?i=4593
|
||||||
|
[28] = https://curl.haxx.se/bug/?i=4628
|
||||||
|
[29] = https://curl.haxx.se/bug/?i=4500
|
||||||
|
[30] = https://curl.haxx.se/bug/?i=4618
|
||||||
|
Loading…
Reference in New Issue
Block a user