mirror of
https://github.com/moparisthebest/curl
synced 2025-03-11 07:39:50 -04:00
7.12.1 notes
This commit is contained in:
parent
811edcde18
commit
da30242640
14
CHANGES
14
CHANGES
@ -6,6 +6,20 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Version 7.12.1 (10 August 2004)
|
||||||
|
|
||||||
|
Daniel (10 August 2004)
|
||||||
|
- In OpenSSL 0.9.7d and earlier, ASN1_STRING_to_UTF8 fails if the input is
|
||||||
|
already UTF-8 encoded. This made the certificate verification fail if the
|
||||||
|
remote server used a certificate with the name UTF-8 encoded.
|
||||||
|
|
||||||
|
Work-around brought by Alexis S. L. Carvalho.
|
||||||
|
|
||||||
|
Daniel (9 August 2004)
|
||||||
|
- I fixed the configure script for krb4 to use -lcom_err as well, as I started
|
||||||
|
to get link problems with it unless I did that on my Solaris 2.7 box. I
|
||||||
|
don't understand why I started to get problems with this now!
|
||||||
|
|
||||||
Daniel (5 August 2004)
|
Daniel (5 August 2004)
|
||||||
- Enrico Scholz fixed the HTTP-Negotiate service name to be uppercase as
|
- Enrico Scholz fixed the HTTP-Negotiate service name to be uppercase as
|
||||||
reported in bug report #1004105
|
reported in bug report #1004105
|
||||||
|
@ -24,35 +24,36 @@ This release includes the following changes:
|
|||||||
|
|
||||||
This release includes the following bugfixes:
|
This release includes the following bugfixes:
|
||||||
|
|
||||||
o fixed a krb4 link problem
|
o UTF-8 encoded certificate names can now be verified properly
|
||||||
|
o krb4 link problem
|
||||||
o HTTP Negotiate service name now provided in uppercase
|
o HTTP Negotiate service name now provided in uppercase
|
||||||
o no longer accepts any cookies with domain set to just a TLD
|
o no longer accepts any cookies with domain set to just a TLD
|
||||||
o HTTP Digest fix for properties without quotes in the header
|
o HTTP Digest properties without quotes in the header
|
||||||
o a bad Host: header case on re-used connections over proxy was fixed
|
o bad Host: header case on re-used connections over proxy
|
||||||
o a duplicate Host: header case on re-used connections was fixed
|
o duplicate Host: header case on re-used connections
|
||||||
o curl -o name#[num] now works when no globbing for [num] exists
|
o curl -o name#[num] now works when no globbing for [num] exists
|
||||||
o the test suite runs fine with valgrind 2.1.x
|
o test suite runs fine with valgrind 2.1.x
|
||||||
o negative Content-Length is now ignored
|
o negative Content-Length is ignored
|
||||||
o test 505 runs fine on windows now
|
o test 505 runs fine on windows
|
||||||
o curl_share_cleanup() crash fixed
|
o curl_share_cleanup() crash
|
||||||
o --trace files now get the final info lines too
|
o --trace files now get the final info lines too
|
||||||
o multi interface connects fine to multi-IP resolving hosts
|
o multi interface connects fine to multi-IP resolving hosts
|
||||||
o --limit-rate works on Mac OS X (and other systems with bad poll()s)
|
o --limit-rate works on Mac OS X (and other systems with bad poll()s)
|
||||||
o cookies can now hold 4999 bytes of content
|
o cookies can now hold 4999 bytes of content
|
||||||
o HTTP POST/PUT with NTLM/Digest/Negotiate to a URL returning 3XX
|
o HTTP POST/PUT with NTLM/Digest/Negotiate to a URL returning 3XX
|
||||||
o HTTPS POST/PUT over a proxy requiring NTLM/Digest/Negotiate works now
|
o HTTPS POST/PUT over a proxy requiring NTLM/Digest/Negotiate
|
||||||
o less restrictive libidn requirements, 0.4.1 or later is fine
|
o less restrictive libidn requirements, 0.4.1 or later is fine
|
||||||
o fixed HTTP POST or PUT with Digest/Negotiate/NTLM selected but the server
|
o HTTP POST or PUT with Digest/Negotiate/NTLM selected but the server
|
||||||
didn't require any authentication
|
didn't require any authentication
|
||||||
o win32 file:// transfer free memory bug
|
o win32 file:// transfer free memory bug
|
||||||
o configure --disable-http builds a libcurl without HTTP support
|
o configure --disable-http builds a libcurl without HTTP support
|
||||||
o CURLOPT_FILETIME had wrong type in curl.h, it expects a long argument
|
o CURLOPT_FILETIME had wrong type in curl.h, it expects a long argument
|
||||||
o builds fine with Borland on Windows again
|
o builds fine with Borland on Windows
|
||||||
o the msvc curllib.dsp now builds the libcurl.lib file again
|
o the msvc curllib.dsp now builds the libcurl.lib file
|
||||||
o builds fine on VMS again
|
o builds fine on VMS
|
||||||
o builds fine on NetWare again
|
o builds fine on NetWare
|
||||||
o HTTP Digest authentication with proxies uses correct user name + password
|
o HTTP Digest authentication with proxies uses correct user name + password
|
||||||
o now builds fine with lcc-win32
|
o builds fine with lcc-win32
|
||||||
|
|
||||||
Other curl-related news since the previous public release:
|
Other curl-related news since the previous public release:
|
||||||
|
|
||||||
@ -76,6 +77,7 @@ advice from friends like these:
|
|||||||
Günter Knauf, Marty Kuhrt, Kjetil Jacobsen, Steven Bazyl, Seshubabu Pasam,
|
Günter Knauf, Marty Kuhrt, Kjetil Jacobsen, Steven Bazyl, Seshubabu Pasam,
|
||||||
Luca Alteas, Jean-Louis Lemaire, David Byron, David Cohen, Rob Stanzel,
|
Luca Alteas, Jean-Louis Lemaire, David Byron, David Cohen, Rob Stanzel,
|
||||||
Niels van Tongeren, Andrés García, Toby Peterson, Casey O'Donnell, Brian
|
Niels van Tongeren, Andrés García, Toby Peterson, Casey O'Donnell, Brian
|
||||||
Akins, Bertrand Demiddelaer, Joel Chen, Dylan Salisbury, Enrico Scholz
|
Akins, Bertrand Demiddelaer, Joel Chen, Dylan Salisbury, Enrico Scholz,
|
||||||
|
Alexis Carvalho
|
||||||
|
|
||||||
Thanks! (and sorry if I forgot to mention someone)
|
Thanks! (and sorry if I forgot to mention someone)
|
||||||
|
11
docs/HISTORY
11
docs/HISTORY
@ -128,3 +128,14 @@ December 2003, full-fledged SSL for FTP is supported.
|
|||||||
January 2004: curl 7.11.0 introduced large file support.
|
January 2004: curl 7.11.0 introduced large file support.
|
||||||
|
|
||||||
June 2004: curl 7.12.0 introduced IDN support. 10 official web mirrors.
|
June 2004: curl 7.12.0 introduced IDN support. 10 official web mirrors.
|
||||||
|
|
||||||
|
August 2004:
|
||||||
|
Curl and libcurl 7.12.1
|
||||||
|
|
||||||
|
Public curl release number: 82
|
||||||
|
Releases counted from the very beginning: 109
|
||||||
|
Available command line options: 96
|
||||||
|
Available curl_easy_setopt() options: 120
|
||||||
|
Number of public functions in libcurl: 36
|
||||||
|
Amount of public web site mirrors: 12
|
||||||
|
Number of known libcurl bindings: 26
|
||||||
|
Loading…
x
Reference in New Issue
Block a user