RELEASE-NOTES: changed encoding to UTF-8 like previous releases
[platform/upstream/curl.git] / RELEASE-NOTES
1 Curl and libcurl 7.34.1
2
3  Public curl releases:         137
4  Command line options:         161
5  curl_easy_setopt() options:   206
6  Public functions in libcurl:  58
7  Known libcurl bindings:       42
8  Contributors:                 1104
9
10 This release includes the following changes:
11
12  o imap/pop3/smtp: Added support for SASL authentication downgrades
13  o imap/pop3/smtp: Extended the login options to support multiple auth mechanisms
14  o TheArtOfHttpScripting: major update, converted layout and more
15  o mprintf: Added support for I, I32 and I64 size specifiers
16  o makefile: Added support for VC7, VC11 and VC12
17
18 This release includes the following bugfixes:
19
20  o curl_easy_setopt: Fixed OAuth 2.0 Bearer option name [1]
21  o pop3: Fixed APOP being determined by CAPA response rather than by timestamp
22  o Curl_pp_readresp: zero terminate line [2]
23  o FILE: don't wait due to CURLOPT_MAX_RECV_SPEED_LARGE [3]
24  o docs: mention CURLOPT_MAX_RECV/SEND_SPEED_LARGE don't work for FILE://
25  o pop3: Fixed auth preference not being honored when CAPA not supported
26  o imap: Fixed auth preference not being honored when CAPABILITY not supported
27  o threaded resolver: Use pthread_t * for curl_thread_t [4]
28  o FILE: we don't support paused transfers using this protocol [5]
29  o connect: Try all addresses in first connection attempt [6]
30  o curl_easy_setopt.3: Added SMTP information to CURLOPT_INFILESIZE_LARGE
31  o OpenSSL: Fix forcing SSLv3 connections [7]
32  o openssl: allow explicit sslv2 selection [8]
33  o FTP parselist: fix "total" parser [9]
34  o conncache: fix possible dereference of null pointer
35  o multi.c: fix possible dereference of null pointer
36  o mk-ca-bundle: introduces -d and warns about using this script
37  o ConnectionExists: fix NTLM check for new connection [10]
38  o trynextip: fix build for non-IPV6 capable systems [11]
39  o Curl_updateconninfo: don't do anything for UDP "connections" [12]
40  o darwinssl: un-break Leopard build after PKCS#12 change [13]
41  o threaded-resolver: never use NULL hints with getaddrinf [14]
42  o multi_socket: remind app if timeout didn't run
43  o OpenSSL: deselect weak ciphers by default [15]
44  o error message: Sensible message on timeout when transfer size unknown [16]
45  o curl_easy_setopt.3: mention how to unset CURLOPT_INFILESIZE*
46  o win32: Fixed use of deprecated function 'GetVersionInfoEx' for VC12 [17]
47  o configure: fix gssapi linking on HP-UX [18]
48  o chunked-parser: abort on overflows, allow 64 bit chunks
49  o chunked parsing: relax the CR strictness [19]
50  o cookie: max-age fixes [20]
51  o progress bar: always update when at 100%
52  o progress bar: increase update frequency to 10Hz
53  o tool: Fixed incorrect return code if command line parser runs out of memory
54  o tool: Fixed incorrect return code if password prompting runs out of memory
55  o HTTP POST: omit Content-Length if data size is unknown [21]
56  o GnuTLS: disable insecure ciphers
57  o GnuTLS: honor --slv2 and the --tlsv1[.N] switches
58  o multi: Fixed a memory leak on OOM condition
59  o netrc: Fixed a memory and file descriptor leak on OOM
60  o getpass: fix password parsing from console [22]
61
62 This release includes the following known bugs:
63
64  o see docs/KNOWN_BUGS (http://curl.haxx.se/docs/knownbugs.html)
65
66 This release would not have looked like this without help, code, reports and
67 advice from friends like these:
68
69   Abram Pousada, Barry Abrahamson, Björn Stenberg, Cédric Deltheil, Chen Prog,
70   Christian Weisgerber, Colin Hogben, Dan Fandrich, Daniel Stenberg,
71   Fabian Frank, Guenter Knauf, He Qin, Iida Yosiaki, Jeff Hodges,
72   Justin Maggard, Leif W, Luke Dashjr, Maks Naumov, Marc Hoersken,
73   Michael Osipov, Michal Górny and Anthony G. Basile, Mohammad AlSaleh,
74   Nick Zitzmann, Paras S, Petr Novak, Priyanka Shah, Steve Holme,
75   Tobias Markus, Viktor Szakáts,
76
77         Thanks! (and sorry if I forgot to mention someone)
78
79 References to bug reports and discussions on issues:
80
81  [1] = http://curl.haxx.se/bug/view.cgi?id=1313
82  [2] = http://curl.haxx.se/mail/lib-2013-12/0113.html
83  [3] = http://curl.haxx.se/bug/view.cgi?id=1312
84  [4] = http://curl.haxx.se/bug/view.cgi?id=1314
85  [5] = http://curl.haxx.se/bug/view.cgi?id=1286
86  [6] = http://curl.haxx.se/bug/view.cgi?id=1315
87  [7] = http://curl.haxx.se/mail/lib-2014-01/0002.html
88  [8] = http://curl.haxx.se/mail/lib-2014-01/0013.html
89  [9] = http://curl.haxx.se/mail/lib-2014-01/0019.html
90  [10] = http://curl.haxx.se/mail/lib-2014-01/0046.html
91  [11] = http://curl.haxx.se/bug/view.cgi?id=1322
92  [12] = http://curl.haxx.se/mail/archive-2014-01/0016.html
93  [13] = http://curl.haxx.se/mail/lib-2013-12/0150.html
94  [14] = http://curl.haxx.se/mail/lib-2014-01/0061.html
95  [15] = http://curl.haxx.se/bug/view.cgi?id=1323
96  [16] = http://curl.haxx.se/mail/lib-2014-01/0115.html
97  [17] = http://curl.haxx.se/mail/lib-2014-01/0134.html
98  [18] = http://curl.haxx.se/bug/view.cgi?id=1321
99  [19] = http://curl.haxx.se/mail/archive-2014-01/0000.html
100  [20] = http://curl.haxx.se/mail/lib-2014-01/0130.html
101  [21] = http://curl.haxx.se/mail/lib-2014-01/0103.html
102  [22] = https://github.com/bagder/curl/pull/87