From 17b1405b20f7ea916995c224992b0ec592f73039 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 18 May 2020 11:38:02 +0200 Subject: RELEASE-NOTES: synced --- RELEASE-NOTES | 52 ++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 8 deletions(-) (limited to 'RELEASE-NOTES') diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 81a5de815..a694a3bed 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -2,13 +2,14 @@ curl and libcurl 7.71.0 Public curl releases: 192 Command line options: 232 - curl_easy_setopt() options: 270 + curl_easy_setopt() options: 275 Public functions in libcurl: 82 - Contributors: 2175 + Contributors: 2178 This release includes the following changes: o CURLOPT_SSL_OPTIONS: optional use of Windows' CA store (with openssl) [10] + o setopt: support certificate options in memory with struct curl_blob [41] o tool: Add option --retry-all-errors to retry on any error [27] This release includes the following bugfixes: @@ -17,43 +18,60 @@ This release includes the following bugfixes: o appveyor: disable flaky test 1501 and ignore broken 1056 o appveyor: disable test 1139 instead of ignoring it o asyn-*: remove support for never-used NULL entry pointers [19] + o checksrc: enhance the ASTERISKSPACE and update code accordingly [52] o cirrus: disable SFTP and SCP tests [7] o CMake: add ENABLE_ALT_SVC option o CMake: add HTTP/3 support (ngtcp2+nghttp3, quiche) [34] + o CMake: add libssh build support [37] o CMake: do not build test programs by default [30] o CMake: fix runtests.pl with CMake, add new test targets [29] + o configure: the wolfssh backend does not provide SCP [57] o connect: make happy eyeballs work for QUIC (again) [16] + o curl.1: Quote globbed URLs [51] o doc: add missing closing parenthesis in CURLINFO_SSL_VERIFYRESULT.3 [5] o doc: Rename VERSIONS to VERSIONS.md as it already has Markdown syntax [20] o docs/HTTP3: add qlog to the quiche build instruction + o docs/options-in-versions: which version added each cmdline option [53] + o docs: unify protocol lists [54] o dynbuf: introduce internal generic dynamic buffer functions [17] o easy: fix dangling pointer on easy_perform fail [26] o examples: remove asiohiper.cpp [4] + o ftp: make domore_getsock() return the secondary socket properly + o ftp: shut down the secondary connection properly when SSL is used [43] o GnuTLS: Backend support for CURLINFO_SSL_VERIFYRESULT [9] + o http2: keep trying to send pending frames after req.upload_done [40] o http2: simplify and clean up trailer handling [6] o libcurl.pc: Merge Libs.private into Libs for static-only builds [28] o libssh2: set the expected total size in SCP upload init [2] o libtest/cmake: Remove commented code [13] o list-only.d: this option existed already in 4.0 o ngtcp2: introduce qlog support [23] + o OpenSSL: have CURLOPT_CRLFILE imply CURLSSLOPT_NO_PARTIALCHAIN [55] o quiche: enable qlog output [14] o runtests: remove sleep calls [18] o runtests: show elapsed test time with higher precision (ms) o select: fix overflow protection in Curl_socket_check [22] o sockfilt: make select_ws stop waiting on exit signal event + o source cleanup: remove all custom typedef structs [42] o test1177: look for curl.h in source directory [1] o test1238: avoid tftpd being busy for tests shortly following [33] o test613.pl: make tests 613 and 614 work with OpenSSH for Windows [8] o test75: Remove precheck test + o tests: add https-proxy support to the test suite [49] o tests: add support for SSH server variant specific transfer paths [24] o tests: make test 1248 + 1249 use %NOLISTENPORT [3] o tests: pick a random port number for SSH [12] o tests: run stunnel for HTTPS and FTPS on dynamic ports [11] + o tool: fixup a few --help descriptions [56] + o tool: support UTF-16 command line on Windows [46] o travis: add "qlog" as feature in the quiche build o travis: Add ngtcp2 and quiche tests for CMake + o travis: upgrade to bionic, clang-9, improve readability [35] + o url: make the updated credentials URL-encoded in the URL [48] o url: reject too long input when parsing credentials [25] o url: sort the protocol schemes in rough popularity order [32] o urlapi: accept :: as a valid IPv6 address [15] + o vauth/cleartext: fix theoretical integer overflow [50] o write-out.d: added "response_code" This release includes the following known bugs: @@ -63,12 +81,13 @@ This release includes the following known bugs: This release would not have looked like this without help, code, reports and advice from friends like these: - Dan Fandrich, Daniel Stenberg, Emil Engler, Gilles Vollant, James Le Cuirot, - Kamil Dudka, Kane York, Lucas Pardue, Marcel Raad, Marc Hörsken, - Michael Kaufmann, Murugan Balraj, Pavel Volgarev, Peter Wang, Peter Wu, - Ray Satiro, Rikard Falkeborn, rl1987 on github, Samuel Marks, - Thomas Bouzerar, - (20 contributors) + Brian Carpenter, Dan Fandrich, Daniel Stenberg, Emil Engler, Gilles Vollant, + Gregory Jefferis, James Le Cuirot, Jeroen Ooms, John Simpson, Kamil Dudka, + Kane York, Lucas Pardue, Marcel Raad, Marc Hörsken, Michael Kaufmann, + Murugan Balraj, Neal Poole, Pavel Volgarev, Peter Wang, Peter Wu, Ray Satiro, + Rikard Falkeborn, rl1987 on github, Samuel Marks, Thomas Bouzerar, + Vyron Tsingaras, + (26 contributors) Thanks! (and sorry if I forgot to mention someone) @@ -107,3 +126,20 @@ References to bug reports and discussions on issues: [32] = https://curl.haxx.se/bug/?i=5377 [33] = https://curl.haxx.se/bug/?i=5364 [34] = https://curl.haxx.se/bug/?i=5359 + [35] = https://curl.haxx.se/bug/?i=5370 + [37] = https://curl.haxx.se/bug/?i=5372 + [40] = https://curl.haxx.se/bug/?i=1410 + [41] = https://curl.haxx.se/bug/?i=5357 + [42] = https://curl.haxx.se/bug/?i=5338 + [43] = https://curl.haxx.se/bug/?i=5340 + [46] = https://curl.haxx.se/bug/?i=3784 + [48] = https://github.com/jeroen/curl/issues/224 + [49] = https://curl.haxx.se/bug/?i=5399 + [50] = https://curl.haxx.se/bug/?i=5391 + [51] = https://github.com/curl/curl/issues/5388 + [52] = https://curl.haxx.se/bug/?i=5386 + [53] = https://curl.haxx.se/bug/?i=5381 + [54] = https://curl.haxx.se/bug/?i=5384 + [55] = https://curl.haxx.se/bug/?i=5374 + [56] = https://curl.haxx.se/bug/?i=5379 + [57] = https://curl.haxx.se/bug/?i=5387 -- cgit v1.2.3