RELEASE-NOTES: synced with 63198a4750

This commit is contained in:
Daniel Stenberg 2016-11-25 00:31:48 +01:00
parent 63198a4750
commit 54789f9444
1 changed files with 27 additions and 5 deletions

View File

@ -12,6 +12,7 @@ This release includes the following changes:
o vtls: support TLS 1.3 via CURL_SSLVERSION_TLSv1_3
o curl: introduce the --tlsv1.3 option to force TLS 1.3
o curl: Add --retry-connrefused [11]
o proxy: Support HTTPS proxy and SOCKS+HTTP(s)
This release includes the following bugfixes:
@ -34,6 +35,18 @@ This release includes the following bugfixes:
o realloc: use Curl_saferealloc to avoid common mistakes [12]
o openssl: make sure to fail in the unlikely event that PRNG seeding fails
o URL-parser: for file://[host]/ URLs, the [host] must be localhost [13]
o timeval: prefer time_t to hold seconds instead of long
o Curl_rand: fixed and moved to rand.c [14]
o curl: add --fail-early [15]
o glob: fix [a-c] globbing regression [16]
o darwinssl: fix SSL client certificate not found on MacOS Sierra [17]
o curl.1: Clarify --dump-header only writes received headers
o http2: Fix address sanitizer memcpy warning
o http2: Use huge HTTP/2 windows [18]
o connects: Don't mix unix domain sockets with regular ones
o url: Fix conn reuse for local ports and interfaces [19]
o x509: Limit ASN.1 structure sizes to 256K
o checksrc: add more checks
This release includes the following known bugs:
@ -42,11 +55,14 @@ 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:
Adam Piggott, Andrei Sedoi, Bruce Stephens, Dan Fandrich, Daniel Hwang,
Daniel Stenberg, Frank Gevaerts, Isaac Boukris, Jakub Zakrzewski,
Kamil Dudka, Mauro Rappa, Mike Crowe, Neal Poole, Peter Wu, Ray Satiro,
Ricki Hirner, Tatsuhiro Tsujikawa, Tony Kelman,
(18 contributors)
Adam Piggott, afrind on github, Alex Chan, Alex Rousskov, Andrei Sedoi,
Bruce Stephens, Dan Fandrich, Daniel Hwang, Daniel Stenberg, Dave Reisner,
David Schweikert, Dmitry Kurochkin, Frank Gevaerts, Isaac Boukris,
Jakub Zakrzewski, Kamil Dudka, Marcel Raad, Mauro Rappa, Mike Crowe,
Neal Poole, Nick Zitzmann, Okhin Vasilij, Patrick Monnerat, Peter Wu,
Ray Satiro, Ricki Hirner, Tatsuhiro Tsujikawa, Thomas Glanzmann, Tony Kelman,
Vasy Okhin,
(30 contributors)
Thanks! (and sorry if I forgot to mention someone)
@ -65,3 +81,9 @@ References to bug reports and discussions on issues:
[11] = https://curl.haxx.se/bug/?i=1064
[12] = https://curl.haxx.se/mail/lib-2016-11/0087.html
[13] = https://curl.haxx.se/mail/lib-2016-11/0104.html
[14] = https://curl.haxx.se/mail/lib-2016-11/0119.html
[15] = https://curl.haxx.se/mail/archive-2016-11/0038.html
[16] = https://github.com/curl/curl/commit/ee4f76606cfa4ee068bf28edd37c8dae7e8db317#commitcomment-19823146
[17] = https://curl.haxx.se/bug/?i=1105
[18] = https://curl.haxx.se/bug/?i=1102
[19] = https://curl.haxx.se/mail/lib-2016-11/0137.html