aboutsummaryrefslogtreecommitdiff
path: root/TODO-RELEASE
AgeCommit message (Collapse)Author
2007-01-03one issue less before releaseDaniel Stenberg
2006-12-06Sebastien Willemijns reported bug #1603712Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1603712) which is about connections getting cut off prematurely when --limit-rate is used. While I found no such problems in my tests nor in my reading of the code, I found that the --limit-rate code was severly flawed (since it was moved into the lib, since 7.15.5) when used with the easy interface and it didn't work as documented so I reworked it somewhat and now it works for my tests.
2006-12-05update after today's workDaniel Stenberg
2006-12-01CURLOPT_CLOSEPOLICY can't be setDaniel Stenberg
2006-11-30the extra copy of downloads should be fixed tooDaniel Stenberg
2006-11-29two moreDaniel Stenberg
2006-11-29Is CURLOPT_FORBID_REUSE broken?Daniel Stenberg
2006-11-27adding notes of what to work on and fix before next releaseDaniel Stenberg
2006-10-12Jeff Pohlmeyer has been working with the hiperfifo.c example source code,Daniel Stenberg
and while doing so it became apparent that the current timeout system for the socket API really was a bit awkward since it become quite some work to be sure we have the correct timeout set. Jeff then provided the new CURLMOPT_TIMERFUNCTION that is yet another callback the app can set to get to know when the general timeout time changes and thus for an application like hiperfifo.c it makes everything a lot easier and nicer. There's a CURLMOPT_TIMERDATA option too of course in good old libcurl tradition.
2006-10-06Bogdan Nicula's hanging test case was converted to test case 533 and the testDaniel Stenberg
now runs fine.
2006-10-05planned stuff to do before releaseDaniel Stenberg
2006-07-087.15.5 is planned for August 2006Daniel Stenberg
2006-04-26David McCreedy brought line end conversions when doing FTP ASCIIDaniel Stenberg
transfers. They are done on non-windows systems and translate CRLF to LF.
2006-04-1065 - curl_multi_socket() added but not extensively tested nor particularlyDaniel Stenberg
documented or pushed for.
2006-02-23the last planned fix is doneDaniel Stenberg
2006-02-16Shmulik Regev provided a fix for the DNS cache when using short life times,Daniel Stenberg
as previously it could be holding on to old cached entries longer than requested.
2006-02-16two items before releaseDaniel Stenberg
2005-10-117.15.0 in november?Daniel Stenberg
2005-08-19The big POST to HTTPS is probably not a bug.Daniel Stenberg
The CONNECT problem is now bug #25 planned to get fixed in next release.
2005-08-18Harshal Pradhan's use-after-free bug with ares is now known bug #24 to beDaniel Stenberg
fixed after 7.14.1
2005-08-08mention two other bugs we should fix before releaseDaniel Stenberg
2005-07-30Moved items from TODO-RELEASE to TODO since they're not really bound to happenDaniel Stenberg
in any specific release.
2005-05-04towards 7.14.0 - reallyDaniel Stenberg
2005-04-12next release will be version 7.14.0 thanks to the added GnuTLS supportDaniel Stenberg
2005-03-31the cookie API is better and more likely to happen in a separate releaseDaniel Stenberg
2005-03-29postpone theseDaniel Stenberg
2005-03-14two issues fixedDaniel Stenberg
2005-03-04stand clear for release timeDaniel Stenberg
2005-02-09David Byron fixed his SSL problems, initially mentioned here:Daniel Stenberg
http://curl.haxx.se/mail/lib-2005-01/0240.html. It turned out we didn't use SSL_pending() as we should. This was TODO-RELEASE issue #59.
2005-02-09issue #54 doneDaniel Stenberg
2005-02-017.13 coming upDaniel Stenberg
2005-01-30Let's add a cookie interface in 7.14Daniel Stenberg
2005-01-22added a few items I plan to doDaniel Stenberg
2004-12-25issue 54 - this takes sweatDaniel Stenberg
2004-12-22issue 47 in next release?Daniel Stenberg
2004-11-24HTTP "auth done right". See lib/README.httpauthDaniel Stenberg
2004-11-24decided to skip the MSVC makefile fixes, nobody seems to really want themDaniel Stenberg
and they are rather excessive
2004-11-23cut out release with no issue to fixDaniel Stenberg
2004-11-22issue 52 is fixed, I work on 51Daniel Stenberg
2004-11-21The FD_SETSIZE issue is already sorted, at least internally. We still needDaniel Stenberg
to provide a better multi-API to allow apps to avoid select().
2004-11-11added some details on what to comeDaniel Stenberg
2004-10-19CURLINFO_NUM_CONNECTS and moreDaniel Stenberg
2004-10-16today's changesDaniel Stenberg
2004-10-14Eric Vergnaud pointed out that libcurl didn't treat ?-letters in the user nameDaniel Stenberg
and password fields properly in URLs, like ftp://us?er:pass?word@site.com/. Added test 191 to verify the fix.
2004-10-14let's fix this tooDaniel Stenberg
2004-10-12one item fixed, one added for 7.12.2 and two more for 7.12.3Daniel Stenberg
2004-10-04closing in on releaseDaniel Stenberg
2004-10-01- Based on Fedor Karpelevitch's formpost path basename patch, file parts inDaniel Stenberg
formposts no longer include the path part. If you _really_ want them, you must provide your preferred full file name with CURLFORM_FILENAME. Added detection for libgen.h and basename() to configure. My custom basename() replacement function for systems without it, might be a bit too naive... Updated 6 test cases to make them work with the stripped paths.
2004-09-30- Larry Campbell added CURLINFO_OS_ERRNO to curl_easy_getinfo() that allows anDaniel Stenberg
app to retrieve the errno variable after a (connect) failure. It will make sense to provide this for more failures in a more generic way, but let's start like this.
2004-09-3048 - Harshal Pradhan's isspace() fix for 8bit cookie contentDaniel Stenberg