aboutsummaryrefslogtreecommitdiff
path: root/RELEASE-NOTES
AgeCommit message (Collapse)Author
2005-07-05Gisle Vanem came up with a nice little work-around for bug #1230118. ItDaniel Stenberg
seems the Windows (MSVC) libc time functions may return data one hour off if TZ is not set and automatic DST adjustment is enabled. This made curl_getdate() return wrong value, and it also concerned internal cookie expirations etc.
2005-07-04mention the strerror_r detection fix in configureDaniel Stenberg
2005-07-03Andrew Bushnell provided enough info for me to tell that we badly needed toDaniel Stenberg
fix the CONNECT authentication code with multi-pass auth methods (such as NTLM) as it didn't previously properly ignore response-bodies - in fact it stopped reading after all response headers had been received. This could lead to libcurl sending the next request and reading the body from the first request as response to the second request. (I also renamed the function, which wasn't strictly necessary but...) The best fix would to once and for all make the CONNECT code use the ordinary request sending/receiving code, treating it as any ordinary request instead of the special-purpose function we have now. It should make it better for multi-interface too. And possibly lead to less code... Added test case 265 for this. It doesn't work as a _really_ good test case since the test proxy is too stupid, but the test case helps when running the debugger to verify.
2005-06-28new Lua bindingDaniel Stenberg
2005-06-22David Shaw fixesDaniel Stenberg
2005-06-19possible windows memory leak fixed by GisleDaniel Stenberg
2005-06-03Andres Garcia's text mode fix for the 'data' partDaniel Stenberg
2005-05-31Todd Kulesza reported a flaw in the proxy option, since a numerical IPv6Daniel Stenberg
address was not possible to use. It is now, but requires it written RFC2732-style, within brackets - which incidently is how you enter numerical IPv6 addresses in URLs. Test case 263 added to verify.
2005-05-29recent changesDaniel Stenberg
2005-05-24recent actionDaniel Stenberg
2005-05-18three fixes since 7.14.0Daniel Stenberg
2005-05-16start working on 7.14.1Daniel Stenberg
2005-05-13uses select() instead of poll() even on Mac OS X 10.4Daniel Stenberg
2005-05-12-z bad use warning and NTLM proxy auth in reconnect fixDaniel Stenberg
2005-05-11the new HTTP headersDaniel Stenberg
2005-05-09new counterDaniel Stenberg
2005-05-09new mirror, added amount of contributorsDaniel Stenberg
2005-05-06one more command line option, fixed the AIX 4.3 enabled IPv6 build (it nowDaniel Stenberg
detects a bad Ipv6 situation and disables it automatically)
2005-05-02Added --trace-time that when used adds a time stamp to each trace line thatDaniel Stenberg
--trace, --trace-ascii and --verbose output. I also made the '>' display separate each line on the linefeed so that HTTP requests etc look nicer in the -v output.
2005-05-02two bugs, one changeDaniel Stenberg
2005-04-29more fixesDaniel Stenberg
2005-04-26fixingDaniel Stenberg
2005-04-232 days, 4 fixesDaniel Stenberg
2005-04-18two bugfixes of todayDaniel Stenberg
2005-04-12next release will be version 7.14.0 thanks to the added GnuTLS supportDaniel Stenberg
2005-04-10HTTP 304 response with Content-Length: headerDaniel Stenberg
2005-04-07GnuTLS!Daniel Stenberg
2005-04-05restart with a blank page againDaniel Stenberg
2005-04-04win resolve crash, win makefile fixDaniel Stenberg
2005-04-03fix of tonightDaniel Stenberg
2005-03-30fix configure's SSL-detection for msys/mingw (from Andres Garcia)Daniel Stenberg
2005-03-29Better connection keep-alive when POSTing with HTTP Digest or Negotiate.Daniel Stenberg
2005-03-29proxy multi auth fix, --proxy-anyauth, ftp-ssl and ftp response reading fixDaniel Stenberg
2005-03-18a Common Lisp bindingDaniel Stenberg
2005-03-16moreDaniel Stenberg
2005-03-14configure --enable-sspiDaniel Stenberg
2005-03-12found a common lisp bindingDaniel Stenberg
2005-03-12--form-stringDaniel Stenberg
2005-03-09configure, socks, debug, getdateDaniel Stenberg
2005-03-08Dominick Meglio reported that using CURLOPT_FILETIME when transferring a FTPDaniel Stenberg
file got a Last-Modified: header written to the data stream, corrupting the actual data. This was because some conditions from the previous FTP code was not properly brought into the new FTP code. I fixed and I added test case 520 to verify. (This bug was introduced in 7.13.1)
2005-03-04Added test case 235 that makes a resumed upload of a file that isn't presentDaniel Stenberg
on the remote side. This then converts the operation to an ordinary STOR upload. This was requested/pointed out by Ignacio Vazquez-Abrams. It also proved (and I fixed) a bug in the newly rewritten ftp code (and present in the 7.13.1 release) when trying to resume an upload and the servers returns an error to the SIZE command. libcurl then loops and sends SIZE commands infinitely.
2005-03-04starting overDaniel Stenberg
2005-03-04stand clear for release timeDaniel Stenberg
2005-03-04Dave Dribin made it possible to set CURLOPT_COOKIEFILE to "" to activateDaniel Stenberg
the cookie "engine" without having to provide an empty or non-existing file.
2005-03-04Rene Rebe fixed a -# crash when more data than expected was retrieved.Daniel Stenberg
2005-03-03new VB bindingDaniel Stenberg
2005-03-03mention buffer overflows fixedDaniel Stenberg
2005-02-18Ralph Mitchell reported a flaw when you used a proxy with auth, and youDaniel Stenberg
requested data from a host and then followed a redirect to another host. libcurl then didn't use the proxy-auth properly in the second request, due to the host-only check for original host name wrongly being extended to the proxy auth as well. Added test case 233 to verify the flaw and that the fix removed the problem.
2005-02-18socket leak, mingw buildDaniel Stenberg
2005-02-16Christopher R. Palmer reported a problem with HTTP-POSTing using "anyauth"Daniel Stenberg
that picks NTLM. Thanks to David Byron letting me test NTLM against his servers, I could quickly repeat and fix the problem. It turned out to be: When libcurl POSTs without knowing/using an authentication and it gets back a list of types from which it picks NTLM, it needs to either continue sending its data if it keeps the connection alive, or not send the data but close the connection. Then do the first step in the NTLM auth. libcurl didn't send the data nor close the connection but simply read the response-body and then sent the first negotiation step. Which then failed miserably of course. The fixed version forces a connection if there is more than 2000 bytes left to send.