History log of /curl/RELEASE-NOTES (Results 1551 – 1575 of 2421)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# f7cce151 09-Sep-2008 Dan Fandrich

Mike Revi discovered some swapped speed switches documented in the curl man
page.


# 2816902f 08-Sep-2008 Daniel Stenberg

Dmitry Kurochkin fixed pipelining over proxy using the multi interface


# f72a26d3 08-Sep-2008 Daniel Stenberg

- Stefan Krause pointed out that libcurl would wrongly send away cookies to
sites in cases where the cookie clearly has a very old expiry date. The
condition was simply that libcurl's dat

- Stefan Krause pointed out that libcurl would wrongly send away cookies to
sites in cases where the cookie clearly has a very old expiry date. The
condition was simply that libcurl's date parser would fail to convert the
date and it would then count as a (timed-based) match. Starting now, a
missed date due to an unsupported date format or date range will now cause
the cookie to not match.

show more ...


# 91ff9380 05-Sep-2008 Dan Fandrich

Improved the logic the decides whether to use HTTP 1.1 features or not in a
request.

Detect cases where an upload must be sent chunked and the server supports
only HTTP 1.0 and retur

Improved the logic the decides whether to use HTTP 1.1 features or not in a
request.

Detect cases where an upload must be sent chunked and the server supports
only HTTP 1.0 and return CURLE_UPLOAD_FAILED.

show more ...


# 18110b51 05-Sep-2008 Daniel Stenberg

- Martin Drasar provided the CURLOPT_POSTREDIR patch. It renames
CURLOPT_POST301 (but adds a define for backwards compatibility for you who
don't define CURL_NO_OLDIES). This option allow

- Martin Drasar provided the CURLOPT_POSTREDIR patch. It renames
CURLOPT_POST301 (but adds a define for backwards compatibility for you who
don't define CURL_NO_OLDIES). This option allows you to now also change the
libcurl behavior for a HTTP response 302 after a POST to not use GET in the
subsequent request (when CURLOPT_FOLLOWLOCATION is enabled). I edited the
patch somewhat before commit. The curl tool got a matching --post302
option. Test case 1076 was added to verify this.

show more ...


# 4c976856 05-Sep-2008 Daniel Stenberg

- Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By
enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS
or FTPS), libcurl will gather lots of

- Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By
enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS
or FTPS), libcurl will gather lots of server certificate info and that info
can then get extracted by a client after the request has completed with
curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing
helped me test and smoothen out this feature.

Unfortunately, this feature currently only works with libcurl built to use
OpenSSL.

This feature was sponsored by networking4all.com - thanks!

show more ...


# 873e734c 05-Sep-2008 Daniel Stenberg

- Dmitriy Sergeyev pointed out that curl_easy_pause() didn't unpause properly
during certain conditions. I also changed this code to use realloc() based
on Daniel Fandrich's suggestion.


# 29f7f468 05-Sep-2008 Yang Tse

sync with reality


# bbc002a5 02-Sep-2008 Daniel Stenberg

- Keith Mok added supported_protocols and supported_features to the pkg-config
file for libcurl, and while doing that fix he unified with curl-config.in
how the supported protocols and fe

- Keith Mok added supported_protocols and supported_features to the pkg-config
file for libcurl, and while doing that fix he unified with curl-config.in
how the supported protocols and features are extracted and used, so both those
tools should now always be synced.

show more ...


# 91d7a6f8 01-Sep-2008 Daniel Stenberg

an impressive 672 contributors (counter after the 7.19.0 release)


# 238db140 01-Sep-2008 Daniel Stenberg

clear the way for 7.19.1 work!


Revision tags: curl-7_19_0
# 6ebc2b25 01-Sep-2008 Daniel Stenberg

the web mirror system is dropped


# 558f0340 01-Sep-2008 Daniel Stenberg

mention the curl_off_t changes first


# c67a99ff 29-Aug-2008 Daniel Stenberg

- When libcurl was doing a HTTP POST and the server would respond with
"Connection: close" and actually close the connection after the
response-body, libcurl could still have outstanding

- When libcurl was doing a HTTP POST and the server would respond with
"Connection: close" and actually close the connection after the
response-body, libcurl could still have outstanding data to send and it
would not properly notice this and stop sending. This caused weirdness and
sad faces. http://curl.haxx.se/bug/view.cgi?id=2080222

Note that there are still reasons to consider libcurl's behavior when
getting a >= 400 response code while sending data, as Craig Perras' note
"http upload: how to stop on error" specifies:
http://curl.haxx.se/mail/archive-2008-08/0138.html

show more ...


# 099b62f1 28-Aug-2008 Daniel Stenberg

- Dengminwen reported that libcurl would lock a (cookie) share twice (without
an unlock in between) for a certain case and that in fact works when using
regular windows mutexes but not wi

- Dengminwen reported that libcurl would lock a (cookie) share twice (without
an unlock in between) for a certain case and that in fact works when using
regular windows mutexes but not with pthreads'! Locks should of course not
get locked again so this is now fixed.
http://curl.haxx.se/mail/lib-2008-08/0422.html

show more ...


# 8ce78ca4 28-Aug-2008 Dan Fandrich

Fixed test case 1065 by changing the handling of CURLOPT_UPLOAD to set
the HTTP method to GET (or HEAD) when given a value of 0.


# 13dc82b9 23-Aug-2008 Daniel Stenberg

- Constantine Sapuntzakis fixed a bug when doing proxy CONNECT with the multi
interface, and the proxy would send Connection: close during the
authentication phase. http://curl.haxx.se/b

- Constantine Sapuntzakis fixed a bug when doing proxy CONNECT with the multi
interface, and the proxy would send Connection: close during the
authentication phase. http://curl.haxx.se/bug/view.cgi?id=2069047

show more ...


# e3ad6d2b 22-Aug-2008 Dan Fandrich

Fixed a problem when --dump-header - was given with more than one URL,
which caused an error when the second header was dumped due to stdout
being closed. Added test case 1066 to verify. Al

Fixed a problem when --dump-header - was given with more than one URL,
which caused an error when the second header was dumped due to stdout
being closed. Added test case 1066 to verify. Also fixed a potential
problem where a closed file descriptor might be used for an upload
when more than one URL is given.

show more ...


# 9bb5da96 22-Aug-2008 Yang Tse

Improved curl_m*printf() integral data type size and signedness handling


# 0f98ba47 22-Aug-2008 Daniel Stenberg

Jamie Lokier is always helpful and this time around too...


# 3743f515 20-Aug-2008 Daniel Stenberg

- Phil Pellouchoud pointed out that the windows version of libcurl had a
memory leak because it never called the OpenSSL function
CRYPTO_cleanup_all_ex_data() as it was supposed to. This

- Phil Pellouchoud pointed out that the windows version of libcurl had a
memory leak because it never called the OpenSSL function
CRYPTO_cleanup_all_ex_data() as it was supposed to. This was because of a
missing define in config-win32.h!

show more ...


# a2c50a98 13-Aug-2008 Daniel Stenberg

on second thought, let's remove this number from here since it doesn't really
belong among the release numbers anyway


# 23478b89 13-Aug-2008 Daniel Stenberg

dead mirrors removed => http://curl.haxx.se/mail/lib-2008-08/0208.html


# 389e50ff 13-Aug-2008 Dan Fandrich

Added a few user-visible bug fixes


# 14a55963 12-Aug-2008 Daniel Stenberg

- Andy Tsouladze fixed runtests.pl to not attempt to execute the stunnel
_directory_ if that happened to appear in the path!


1...<<61626364656667686970>>...97