summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-11-04 22:03:18 +0100
committerDaniel Stenberg <daniel@haxx.se>2017-11-04 22:03:18 +0100
commitd2146c598aa8f9746af55f133a6017b4fe541f7c (patch)
tree5b9bc49a3d2099c67ff938b72371bafd8fe2060f
parentee8016b3de0b0e3e9a352a1123c5e6272848aa55 (diff)
downloadcurl-d2146c598aa8f9746af55f133a6017b4fe541f7c.tar.gz
RELEASE-NOTES: synced with ee8016b3d
-rw-r--r--RELEASE-NOTES40
1 files changed, 36 insertions, 4 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index bd97a6ce2..307e4be94 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -25,6 +25,23 @@ This release includes the following bugfixes:
o setopt: fix CURLOPT_SSH_AUTH_TYPES option read
o appveyor: add a win32 build
o Curl_timeleft: change return type to timediff_t [11]
+ o cmake: Export libcurl and curl targets to use by other cmake projects [13]
+ o curl: in -F option arg, comma is a delimiter for files only [14]
+ o curl: improved ";type=" handling in -F option arguments
+ o timeval: use mach_absolute_time() on MacOS [15]
+ o curlx: the timeval functions are no longer provided as curlx_* [16]
+ o mkhelp.pl: do not generate comment with current date [17]
+ o memdebug: use send/recv signature for curl_dosend/curl_dorecv [18]
+ o cookie: avoid NULL dereference [19]
+ o url: fix CURLOPT_POSTFIELDSIZE arg value check to allow -1 [20]
+ o include: remove conncache.h inclusion from where its not needed
+ o CURLOPT_MAXREDIRS: allow -1 as a value [21]
+ o tests: Fixed torture tests on tests 556 and 650
+ o http2: Fixed OOM handling in upgrade request
+ o url: fix CURLOPT_DNS_CACHE_TIMEOUT arg value check to allow -1
+ o CURLOPT_INFILESIZE: accept -1 [22]
+ o curl: pass through [] in URLs instead of calling globbing error [23]
+ o curl: speed up handling of many URLs [24]
This release includes the following known bugs:
@@ -33,10 +50,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:
- Alessandro Ghedini, Daniel Bankhead, Daniel Stenberg, Gisle Vanem,
- Marcel Raad, Martin Storsjö, Max Dymond, moohoorama on github, Paul Howarth,
- Peter Piekarski, Ray Satiro, Rob Cotrone,
- (12 contributors)
+ Alessandro Ghedini, Andrew Lambert, arainchik on github, cbartl on github,
+ Dan Fandrich, Daniel Bankhead, Daniel Stenberg, Dmitri Tikhonov, Gisle Vanem,
+ Jakub Zakrzewski, Juro Bystricky, Marcel Raad, Martin Storsjo, Max Dymond,
+ moohoorama on github, omau on github, Patrick Monnerat, Paul Howarth,
+ Pavel Gushchin, Per Lundberg, Peter Piekarski, Petr Voytsik, Ray Satiro,
+ Rob Cotrone,
+ (24 contributors)
Thanks! (and sorry if I forgot to mention someone)
@@ -54,3 +74,15 @@ References to bug reports and discussions on issues:
[10] = https://curl.haxx.se/bug/?i=2023
[11] = https://curl.haxx.se/bug/?i=2021
[12] = https://curl.haxx.se/bug/?i=1934
+ [13] = https://curl.haxx.se/bug/?i=1879
+ [14] = https://curl.haxx.se/bug/?i=2022
+ [15] = https://curl.haxx.se/bug/?i=2033
+ [16] = https://curl.haxx.se/bug/?i=2034
+ [17] = https://curl.haxx.se/bug/?i=2026
+ [18] = https://curl.haxx.se/bug/?i=2031
+ [19] = https://curl.haxx.se/bug/?i=2032
+ [20] = https://curl.haxx.se/mail/lib-2017-11/0000.html
+ [21] = https://curl.haxx.se/bug/?i=2038
+ [22] = https://curl.haxx.se/bug/?i=2047
+ [23] = https://curl.haxx.se/bug/?i=2044
+ [24] = https://curl.haxx.se/bug/?i=1959