History log of /curl/RELEASE-NOTES (Results 2001 – 2025 of 2421)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 74a6921b 18-Aug-2006 Daniel Stenberg

Armel Asselin fixed a crash in the FTP code when using SINGLECWD mode and
files in the root directory.


# 490cccba 18-Aug-2006 Daniel Stenberg

Andrew Biggs pointed out a "Expect: 100-continue" flaw where libcurl didn't
send the whole request at once, even though the Expect: header was disabled
by the application. An effect of this c

Andrew Biggs pointed out a "Expect: 100-continue" flaw where libcurl didn't
send the whole request at once, even though the Expect: header was disabled
by the application. An effect of this change is also that small (< 1024
bytes) POSTs are now always sent without Expect: header since we deem it
more costly to bother about that than the risk that we send the data in
vain.

show more ...


# ba9ea943 16-Aug-2006 Daniel Stenberg

related info


# 1eedad27 08-Aug-2006 Daniel Stenberg

Armel Asselin made the CURLOPT_PREQUOTE option work fine even when
CURLOPT_NOBODY is set true. PREQUOTE is then run roughly at the same place
in the command sequence as it would have run if t

Armel Asselin made the CURLOPT_PREQUOTE option work fine even when
CURLOPT_NOBODY is set true. PREQUOTE is then run roughly at the same place
in the command sequence as it would have run if there would've been a
transfer.

show more ...


# a4ebf5b5 08-Aug-2006 Daniel Stenberg

Fixed a flaw in the "Expect: 100-continue" treatment. If you did two POSTs
on a persistent connection and allowed the first to use that header, you
could not disable it for the second request.


# 824b7802 07-Aug-2006 Daniel Stenberg

start working towards 7.15.6


Revision tags: curl-7_15_5
# 8a38c72c 02-Aug-2006 Daniel Stenberg

Mark Lentczner fixed how libcurl was not properly doing chunked encoding
if the header "Transfer-Encoding: chunked" was set by the application.
http://curl.haxx.se/bug/view.cgi?id=1531838


# ee642859 01-Aug-2006 Daniel Stenberg

Maciej Karpiuk fixed a crash that would occur if we passed Curl_strerror()
an unknown error number on glibc systems.
http://curl.haxx.se/bug/view.cgi?id=1532289


# a88deadd 27-Jul-2006 Daniel Stenberg

Yves Lejeune fixed so that replacing Content-Type: when doing multipart
formposts work exactly the way you want it (and the way you'd assume it
works)


# 4d4151f6 26-Jul-2006 Daniel Stenberg

David McCreedy added --ftp-ssl-reqd which makes curl *require* SSL for both
control and data connection, as the existing --ftp-ssl option only requests
it.


# 518becfe 26-Jul-2006 Daniel Stenberg

curl_multi_assign() and CURLMOPT_SOCKETFUNCTION proto change


# 2527b530 25-Jul-2006 Daniel Stenberg

Dan Nelson added the CURLOPT_FTP_ALTERNATIVE_TO_USER libcurl option and curl
tool option named --ftp-alternative-to-user. It provides a mean to send a
particular command if the normal USER/PA

Dan Nelson added the CURLOPT_FTP_ALTERNATIVE_TO_USER libcurl option and curl
tool option named --ftp-alternative-to-user. It provides a mean to send a
particular command if the normal USER/PASS approach fails.

show more ...


# f36adcdb 25-Jul-2006 Daniel Stenberg

Georg Horn made the transfer timeout error message include more details


# 06d05b18 17-Jul-2006 Daniel Stenberg

Jari Sundell did some excellent research and bug tracking, figured out that
we did wrong and patched it: When nodes were removed from the splay tree,
and we didn't properly remove it from the

Jari Sundell did some excellent research and bug tracking, figured out that
we did wrong and patched it: When nodes were removed from the splay tree,
and we didn't properly remove it from the splay tree when an easy handle was
removed from a multi stack and thus we could wrongly leave a node in the
splay tree pointing to (bad) memory.

show more ...


# daef1cf3 14-Jul-2006 Daniel Stenberg

David McCreedy fixed a flaw where the CRLF counter wasn't properly cleared
for FTP ASCII transfers.


# 28611704 08-Jul-2006 Daniel Stenberg

Ates Goral pointed out that libcurl's cookie parser did case insensitive
string comparisons on the path which is incorrect and provided a patch that
fixes this. I edited test case 8 to includ

Ates Goral pointed out that libcurl's cookie parser did case insensitive
string comparisons on the path which is incorrect and provided a patch that
fixes this. I edited test case 8 to include details that test for this.

show more ...


# ca319f63 07-Jul-2006 Daniel Stenberg

Ingmar Runge provided a source snippet that caused a crash. The reason for
the crash was that libcurl internally was a bit confused about who owned the
DNS cache at all times so if you create

Ingmar Runge provided a source snippet that caused a crash. The reason for
the crash was that libcurl internally was a bit confused about who owned the
DNS cache at all times so if you created an easy handle that uses a shared
DNS cache and added that to a multi handle it would crash. Now we keep more
careful internal track of exactly what kind of DNS cache each easy handle
uses: None, Private (allocated for and used only by this single handle),
Shared (points to a cache held by a shared object), Global (points to the
global cache) or Multi (points to the cache within the multi handle that is
automatically shared between all easy handles that are added with private
caches).

show more ...


# e5cf6a20 07-Jul-2006 Daniel Stenberg

yassl can be used now


# 8bed4534 04-Jul-2006 Daniel Stenberg

Toshiyuki Maezawa fixed a problem where you couldn't override the
Proxy-Connection: header when using a proxy and not doing CONNECT.


# 23206062 28-Jun-2006 Daniel Stenberg

changed wording on the curl_multi_fdset() problem and moved the -K change from
bugfixes


# 37f4877e 24-Jun-2006 Daniel Stenberg

Michael Wallner added curl_formget(), which allows an application to extract
(serialise) a previously built formpost (as with curl_formadd()).


# a8ac6f1d 23-Jun-2006 Daniel Stenberg

Arve Knudsen found a flaw in curl_multi_fdset() for systems where
curl_socket_t is unsigned (like Windows) that could cause it to wrongly
return a max fd of -1.


# dfe1884c 22-Jun-2006 Daniel Stenberg

Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and
CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed
to send or receive data. This kind of adds the the command

Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and
CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed
to send or receive data. This kind of adds the the command line tool's
option --limit-rate to the library.

The rate limiting logic in the curl app is now removed and is instead
provided by libcurl itself. Transfer rate limiting will now also work for -d
and -F, which it didn't before.

show more ...


# 72f80b88 19-Jun-2006 Daniel Stenberg

make -K on a bad file now displays a warning


# 4c6c7684 12-Jun-2006 Daniel Stenberg

starting the journey towards the next release


1...<<81828384858687888990>>...97