diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-09-26 12:44:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-09-26 12:44:59 +0000 |
commit | fd4cf78f36e89b8a0913e4fb34fd7a89f5c0cfd4 (patch) | |
tree | c4a2dfb16d9985c715a6f4b2a6dfbe7edd2dc1c4 /RELEASE-NOTES | |
parent | a6315359d742bdf967ba3ee1db3e0b7e5a3956fe (diff) |
Philip Langdale provided the new CURLOPT_POST301 option for
curl_easy_setopt() that alters how libcurl functions when following
redirects. It makes libcurl obey the RFC2616 when a 301 response is received
after a non-GET request is made. Default libcurl behaviour is to change
method to GET in the subsequent request (like it does for response code 302
- because that's what many/most browsers do), but with this CURLOPT_POST301
option enabled it will do what the spec says and do the next request using
the same method again. I.e keep POST after 301.
The curl tool got this option as --post301
Test case 1011 and 1012 were added to verify.
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r-- | RELEASE-NOTES | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 75676d519..207849ba6 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -2,7 +2,7 @@ Curl and libcurl 7.17.1 Public curl release number: 102 Releases counted from the very beginning: 128 - Available command line options: 119 + Available command line options: 120 Available curl_easy_setopt() options: 143 Number of public functions in libcurl: 55 Amount of public web site mirrors: 42 @@ -14,6 +14,7 @@ This release includes the following changes: o automatically append ";type=<a|i>" when using HTTP proxies for FTP urls o improved NSS support o added --proxy-negotiate + o added --post301 and CURLOPT_POST301 This release includes the following bugfixes: @@ -42,6 +43,6 @@ This release would not have looked like this without help, code, reports and advice from friends like these: Dan Fandrich, Michal Marek, Günter Knauf, Rob Crittenden, Immanuel Gregoire, - Mark Davies, Max Katsev + Mark Davies, Max Katsev, Philip Langdale Thanks! (and sorry if I forgot to mention someone) |