mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
RELEASE-NOTES: synced with b261c44e8
... and bump next release version to 7.58.0
This commit is contained in:
parent
b261c44e8c
commit
4fb85b87b2
@ -1,4 +1,4 @@
|
|||||||
Curl and libcurl 7.57.1
|
Curl and libcurl 7.58.0
|
||||||
|
|
||||||
Public curl releases: 172
|
Public curl releases: 172
|
||||||
Command line options: 211
|
Command line options: 211
|
||||||
@ -8,7 +8,8 @@ Curl and libcurl 7.57.1
|
|||||||
|
|
||||||
This release includes the following changes:
|
This release includes the following changes:
|
||||||
|
|
||||||
o
|
o new libssh-powered SSH SCP/SFTP back-end
|
||||||
|
o curl-config: add --ssl-backends [10]
|
||||||
|
|
||||||
This release includes the following bugfixes:
|
This release includes the following bugfixes:
|
||||||
|
|
||||||
@ -16,6 +17,16 @@ This release includes the following bugfixes:
|
|||||||
o examples/xmlstream.c: don't switch off CURL_GLOBAL_SSL [2]
|
o examples/xmlstream.c: don't switch off CURL_GLOBAL_SSL [2]
|
||||||
o SSL: Avoid magic allocation of SSL backend specific data [3]
|
o SSL: Avoid magic allocation of SSL backend specific data [3]
|
||||||
o lib: don't export all symbols, just everything curl_* [4]
|
o lib: don't export all symbols, just everything curl_* [4]
|
||||||
|
o libssh2: send the correct CURLE error code on scp file not found
|
||||||
|
o libssh2: return CURLE_UPLOAD_FAILED on failure to upload
|
||||||
|
o openssl: enable pkcs12 in boringssl builds [5]
|
||||||
|
o libssh2: remove dead code from SSH_SFTP_QUOTE [6]
|
||||||
|
o sasl_getmesssage: make sure we have a long enough string to pass [7]
|
||||||
|
o conncache: fix several lock issues [8]
|
||||||
|
o threaded-shared-conn.c: new example
|
||||||
|
o conncache: only allow multiplexing within same multi handle [9]
|
||||||
|
o configure: check for netinet/in6.h [11]
|
||||||
|
o URL: tolerate backslash after drive letter for FILE: [12]
|
||||||
|
|
||||||
This release includes the following known bugs:
|
This release includes the following known bugs:
|
||||||
|
|
||||||
@ -24,8 +35,11 @@ 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:
|
||||||
|
|
||||||
Daniel Stenberg, Dima Tisnek, Johannes Schindelin, W. Mark Kubacki,
|
ahodesuka on github, Daniel Stenberg, David Benjamin, Dima Tisnek,
|
||||||
(4 contributors)
|
guitared on github, Jan Ehrhardt, Johannes Schindelin, Matthew Kerwin,
|
||||||
|
Nikos Mavrogiannopoulos, Oleg Pudeyev, Patrick Dawson, Randall S. Becker,
|
||||||
|
Ray Satiro, W. Mark Kubacki,
|
||||||
|
(14 contributors)
|
||||||
|
|
||||||
Thanks! (and sorry if I forgot to mention someone)
|
Thanks! (and sorry if I forgot to mention someone)
|
||||||
|
|
||||||
@ -35,3 +49,12 @@ References to bug reports and discussions on issues:
|
|||||||
[2] = https://curl.haxx.se/mail/lib-2017-12/0000.html
|
[2] = https://curl.haxx.se/mail/lib-2017-12/0000.html
|
||||||
[3] = https://curl.haxx.se/bug/?i=2119
|
[3] = https://curl.haxx.se/bug/?i=2119
|
||||||
[4] = https://curl.haxx.se/bug/?i=2127
|
[4] = https://curl.haxx.se/bug/?i=2127
|
||||||
|
[5] = https://curl.haxx.se/bug/?i=2134
|
||||||
|
[6] = https://curl.haxx.se/bug/?i=2143
|
||||||
|
[7] = https://curl.haxx.se/bug/?i=2150
|
||||||
|
[8] = https://curl.haxx.se/bug/?i=2132
|
||||||
|
[9] = https://curl.haxx.se/bug/?i=2152
|
||||||
|
[10] = https://curl.haxx.se/bug/?i=2128
|
||||||
|
[11] = https://curl.haxx.se/bug/?i=2146
|
||||||
|
[12] = https://curl.haxx.se/bug/?i=2154
|
||||||
|
|
||||||
|
@ -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.57.1-DEV"
|
#define LIBCURL_VERSION "7.58.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 57
|
#define LIBCURL_VERSION_MINOR 58
|
||||||
#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 comparions by programs. The LIBCURL_VERSION_NUM define will
|
parsing and comparions 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 0x073901
|
#define LIBCURL_VERSION_NUM 0x073A00
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 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
|
||||||
|
Loading…
Reference in New Issue
Block a user