Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-14 | bump: start working on 7.33.1 | Daniel Stenberg | |
2013-10-13 | RELEASE-NOTES: synced with 92cf6141ed0de | Daniel Stenberg | |
2013-10-12 | ssh: improve the logic for detecting blocking direction | Kamil Dudka | |
This fixes a regression introduced by commit 0feeab78 limiting the speed of SCP upload to 16384 B/s on a fast connection (such as localhost). | |||
2013-10-07 | RELEASE-NOTES: add twos refs to bug reports | Daniel Stenberg | |
2013-10-06 | RELEASE-NOTES: synced with 173160c0d068 | Daniel Stenberg | |
2013-09-23 | RELEASE-NOTES: added recent contributors missing | Daniel Stenberg | |
2013-09-21 | RELEASE-NOTES: Corrected missed addition | Steve Holme | |
Somehow commit 60a20461629fda missed the last item in the sync list even though I'm sure I added it during editing. | |||
2013-09-21 | RELEASE-NOTES: Synced with 6dd8bd8d2f9729 | Steve Holme | |
2013-09-20 | pop3: Added basic SASL XOAUTH2 support | Steve Holme | |
Added the ability to use an XOAUTH2 bearer token [RFC6750] with POP3 for authentication using RFC6749 "OAuth 2.0 Authorization Framework". The bearer token is expected to be valid for the user specified in conn->user. If CURLOPT_XOAUTH2_BEARER is defined and the connection has an advertised auth mechanism of "XOAUTH2", the user and access token are formatted as a base64 encoded string and sent to the server as "AUTH XOAUTH2 <bearer token>". | |||
2013-09-14 | imap: Fixed response check for NOOP command | Steve Holme | |
2013-09-11 | imap: Fixed response check for LSUB and UID commands | Steve Holme | |
2013-09-10 | imap/pop3/smtp: Speed up SSL connection initialization | Jiri Hruska | |
Don't wait for the next callback call (usually 1 second) before continuing with protocol specific connection initialization. | |||
2013-09-10 | RELEASE-NOTES: Corrected duplicate in bfefe2400a16b8 | Steve Holme | |
2013-09-10 | RELEASE-NOTES: Corrected typo from bfefe2400a16b8 | Steve Holme | |
2013-09-10 | RELEASE-NOTES: synced with 25c68903756d6b | Steve Holme | |
2013-09-09 | url: handle abortion by read/write callbacks, too | Kamil Dudka | |
Otherwise, the FTP protocol would unnecessarily hang 60 seconds if aborted in the CURLOPT_HEADERFUNCTION callback. Reported by: Tomas Mlcoch Bug: https://bugzilla.redhat.com/1005686 | |||
2013-09-04 | curl: add --http1.1 and --http2.0 options | Daniel Stenberg | |
2013-08-31 | imap: Fixed response check for EXPUNGE command | Steve Holme | |
2013-08-28 | bump: next release is 7.33.0 due to added features | Daniel Stenberg | |
2013-08-26 | RELEASE-NOTES: synced with acf59be7f09a7 | Steve Holme | |
2013-08-25 | FTP: remove krb4 support | Daniel Stenberg | |
We've announced this pending removal for a long time and we've repeatedly asked if anyone would care or if anyone objects. Nobody has objected. It has probably not even been working for a good while since nobody has tested/used this code recently. The stuff in krb4.h that was generic enough to be used by other sources is now present in security.h | |||
2013-08-23 | RELEASE-NOTES: synced with 22adb46a32bee | Daniel Stenberg | |
2013-08-12 | version number: bump to 7.32.1 for now | Daniel Stenberg | |
Start working on the next version and up some counters. | |||
2013-08-08 | RELEASE-NOTES: synced with d20def20462e7 | Daniel Stenberg | |
2013-07-29 | RELEASE-NOTES: synced with b5478a0e033e7 | Daniel Stenberg | |
2013-07-19 | RELEASE-NOTES: synced with d529f3882b9bca | Daniel Stenberg | |
2013-06-30 | url: restore the functionality of 'curl -u :' | Kamil Dudka | |
This commit fixes a regression introduced in fddb7b44a79d78e05043e1c97e069308b6b85f79. Reported by: Markus Moeller Bug: http://curl.haxx.se/mail/archive-2013-06/0052.html | |||
2013-06-25 | RELEASE-NOTES: synced with 365c5ba39591 | Daniel Stenberg | |
The 10 first bug fixes for the pending release... | |||
2013-06-22 | bump: start working towards what most likely will become 7.32.0 | Daniel Stenberg | |
2013-06-22 | RELEASE-NOTES: synced with 0de7249bb39a2 - 7.31.0 | Daniel Stenberg | |
2013-06-20 | RELEASE-NOTES: synced with e305f5ec715f | Daniel Stenberg | |
2013-06-13 | RELEASE-NOTES: synced with 9c3e098259b82 | Daniel Stenberg | |
Mention 7 recent bug fixes and their associated contributors | |||
2013-06-07 | RELEASE-NOTES: synced with 87cf677eca55 | Daniel Stenberg | |
Added 11 bugs and 7 contributors | |||
2013-05-12 | RELEASE-NOTES: synced with ae26ee3489588f0 | Daniel Stenberg | |
2013-05-06 | curl -E: allow to escape ':' in cert nickname | Jared Jennings | |
2013-05-04 | RELEASE-NOTES: synced with 92ef5f19c801 | Steve Holme | |
2013-04-29 | smtp: Fixed unknown percentage complete in progress bar | Steve Holme | |
The curl command line utility would display the the completed progress bar with a percentage of zero as the progress routines didn't know the size of the transfer. | |||
2013-04-27 | darwinssl: add TLS crypto authentication | Nick Zitzmann | |
Users using the Secure Transport (darwinssl) back-end can now use a certificate and private key to authenticate with a site using TLS. Because Apple's security system is based around the keychain and does not have any non-public function to create a SecIdentityRef data structure from data loaded outside of the Keychain, the certificate and private key have to be loaded into the Keychain first (using the certtool command line tool or the Security framework's C API) before we can find it and use it. | |||
2013-04-27 | bump version | Daniel Stenberg | |
Since we're adding new stuff, the next release will bump the minor version and we're looking forward to 7.31.0 | |||
2013-04-27 | RELEASE-NOTES: synced with f4e6e201b146 | Steve Holme | |
2013-04-26 | url: initialize speed-check data for file:// protocol | Zdenek Pavlas | |
... in order to prevent an artificial timeout event based on stale speed-check data from a previous network transfer. This commit fixes a regression caused by 9dd85bced56f6951107f69e581c872c1e7e3e58e. Bug: https://bugzilla.redhat.com/906031 | |||
2013-04-24 | RELEASE-NOTES: synced with a8c92cb60890 | Steve Holme | |
2013-04-20 | RELEASE-NOTES: synced with d535c4a2e1f7 | Steve Holme | |
2013-04-13 | RELEASE-NOTES: Removed erroneous spaces | Steve Holme | |
2013-04-13 | RELEASE-NOTES: synced with 8723cade21fb | Steve Holme | |
2013-04-12 | bump: start working towards next release | Daniel Stenberg | |
2013-04-12 | RELEASE-NOTES: cleaned up for 7.30 (synced with 5c5e1a1cd20) | Daniel Stenberg | |
Most notable the security advisory: http://curl.haxx.se/docs/adv_20130412.html | |||
2013-04-09 | RELEASe-NOTES: synced with 29fdb2700f797 | Daniel Stenberg | |
added "tcpkeepalive on Mac OS X" | |||
2013-04-08 | darwinssl: disable insecure ciphers by default | Nick Zitzmann | |
I noticed that aria2's SecureTransport code disables insecure ciphers such as NULL, anonymous, IDEA, and weak-key ciphers used by SSLv3 and later. That's a good idea, and now we do the same thing in order to prevent curl from accessing a "secure" site that only negotiates insecure ciphersuites. | |||
2013-04-08 | RELEASE-NOTES: Corrected duplicate NTLM memory leaks | Steve Holme | |