RELEASE-NOTES: synced

and bumped curlver to 7.77.0
This commit is contained in:
Daniel Stenberg 2021-04-15 08:23:42 +02:00
parent 40d2d39f86
commit ccaaa534d0
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 13 additions and 56 deletions

View File

@ -1,10 +1,10 @@
curl and libcurl 7.76.1 curl and libcurl 7.77.0
Public curl releases: 199 Public curl releases: 200
Command line options: 240 Command line options: 240
curl_easy_setopt() options: 288 curl_easy_setopt() options: 288
Public functions in libcurl: 85 Public functions in libcurl: 85
Contributors: 2366 Contributors: 2367
This release includes the following changes: This release includes the following changes:
@ -12,27 +12,8 @@ This release includes the following changes:
This release includes the following bugfixes: This release includes the following bugfixes:
o configure: disable min version set for Darwin [19] o cookie: CURLOPT_COOKIEFILE set to NULL switches off cookies [1]
o configure: include <time.h> unconditionally [16] o rustls: only return CURLE_AGAIN when TLS session is fully drained [2]
o configure: remove use of RETSIGTYPE [17]
o docs/HTTP3.md: update the build instruction using gnutls [20]
o examples/hiperfifo.c: check event_initialized before delete [11]
o file: support GETing directories again [10]
o github/workflow: add "security-extended" to codeql-analysis.yml [14]
o h2: allow 100 streams by default [9]
o hostip: fix builds that disable all asynchronous DNS [1]
o http_proxy: only loop on 407 + close if we have credentials [8]
o install: add instructions for Apple Darwin platforms [18]
o lib: remove unused HAVE_INET_NTOA_R* defines [15]
o libssh: get rid of PATH_MAX [7]
o ngtcp2+gnutls: clear credentials when freed [5]
o ngtcp2: Use ALPN h3-29 for now [21]
o ntlm: fix negotiated flags usage [12]
o ntlm: support version 2 on 32-bit platforms [13]
o openssl: fix CURLOPT_SSLCERT_BLOB without CURLOPT_SSLCERT_KEY [2]
o TLS: fix HTTP/2 selection [3]
o tool_progress: fix progress meter final update in parallel mode [6]
o typecheck-gcc: make the ssl-ctx-cb check use SSL_CTX pointers [4]
This release includes the following known bugs: This release includes the following known bugs:
@ -41,34 +22,10 @@ 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:
Anthony Shaw, Benbuck Nason, Cesar Eduardo Barros, Cherish98 on github, Daniel Stenberg, Jacob Hoffman-Andrews, Javier Blazquez, Stefan Karpinski,
Christian Schmitz, Daniel Kurečka, Daniel Stenberg, David Hu, Emil Engler, (4 contributors)
Gilles Vollant, Jochem Broekhoff, Jürgen Gmach, Kenneth Davidson,
locpyl-tidnyd on github, Luke Granger-Brown, Marcel Raad, Michael Forney,
Muhammed Yavuz Nuzumlalı, Patrick Monnerat, Ray Satiro, romamik om github,
Tatsuhiro Tsujikawa, Viktor Szakats,
(23 contributors)
References to bug reports and discussions on issues: References to bug reports and discussions on issues:
[1] = https://curl.se/bug/?i=6831 [1] = https://curl.se/bug/?i=6889
[2] = https://curl.se/bug/?i=6816 [2] = https://curl.se/bug/?i=6894
[3] = https://curl.se/bug/?i=6825
[4] = https://curl.se/bug/?i=6818
[5] = https://curl.se/bug/?i=6824
[6] = https://curl.se/bug/?i=6840
[7] = https://curl.se/bug/?i=6829
[8] = https://curl.se/bug/?i=6828
[9] = https://curl.se/bug/?i=6852
[10] = https://curl.se/bug/?i=6845
[11] = https://curl.se/bug/?i=6876
[12] = https://curl.se/bug/?i=6813
[13] = https://curl.se/bug/?i=6849
[14] = https://curl.se/bug/?i=6815
[15] = https://curl.se/bug/?i=6867
[16] = https://curl.se/bug/?i=6859
[17] = https://curl.se/bug/?i=6861
[18] = https://curl.se/bug/?i=6860
[19] = https://curl.se/bug/?i=6838
[20] = https://curl.se/bug/?i=6857
[21] = https://curl.se/bug/?i=6864

View File

@ -30,13 +30,13 @@
/* This is the version number of the libcurl package from which this header /* This is the version number of the libcurl package from which this header
file origins: */ file origins: */
#define LIBCURL_VERSION "7.76.1-DEV" #define LIBCURL_VERSION "7.77.0-DEV"
/* The numeric version number is also available "in parts" by using these /* The numeric version number is also available "in parts" by using these
defines: */ defines: */
#define LIBCURL_VERSION_MAJOR 7 #define LIBCURL_VERSION_MAJOR 7
#define LIBCURL_VERSION_MINOR 76 #define LIBCURL_VERSION_MINOR 77
#define LIBCURL_VERSION_PATCH 1 #define LIBCURL_VERSION_PATCH 0
/* This is the numeric version of the libcurl version number, meant for easier /* This is the numeric version of the libcurl version number, meant for easier
parsing and comparisons by programs. The LIBCURL_VERSION_NUM define will parsing and comparisons by programs. The LIBCURL_VERSION_NUM define will
@ -57,7 +57,7 @@
CURL_VERSION_BITS() macro since curl's own configure script greps for it CURL_VERSION_BITS() macro since curl's own configure script greps for it
and needs it to contain the full number. and needs it to contain the full number.
*/ */
#define LIBCURL_VERSION_NUM 0x074c01 #define LIBCURL_VERSION_NUM 0x074d00
/* /*
* This is the date and time when the full source package was created. The * This is the date and time when the full source package was created. The