8063c322 | 09-Nov-2019 |
r-a-sattarov |
system.h: fix for MCST lcc compiler Fixed build by MCST lcc compiler on MCST Elbrus 2000 architecture and do some code cleanup. e2k (Elbrus 2000) - this is VLIW/EPIC architectur
system.h: fix for MCST lcc compiler Fixed build by MCST lcc compiler on MCST Elbrus 2000 architecture and do some code cleanup. e2k (Elbrus 2000) - this is VLIW/EPIC architecture, like Intel Itanium architecture. Ref: https://en.wikipedia.org/wiki/Elbrus_2000 Closes https://github.com/curl/curl/pull/4576
show more ...
|
cba52e2c | 08-Nov-2019 |
Daniel Stenberg |
TODO: curl_multi_unblock Closes #4418 |
d04ee4c8 | 08-Nov-2019 |
Daniel Stenberg |
TODO: Run web-platform-tests url tests Closes #4477 |
1464abf7 | 08-Nov-2019 |
Daniel Stenberg |
TODO: 1.4 alt-svc sharing Closes #4476 |
5d5bd446 | 08-Nov-2019 |
Daniel Stenberg |
test1560: require IPv6 for IPv6 aware URL parsing The URL parser function can't reject a bad IPv6 address properly when curl was built without IPv6 support. Reported-by: Marcel
test1560: require IPv6 for IPv6 aware URL parsing The URL parser function can't reject a bad IPv6 address properly when curl was built without IPv6 support. Reported-by: Marcel Raad Fixes #4556 Closes #4572
show more ...
|
1f73138c | 01-Nov-2019 |
Daniel Stenberg |
checksrc: repair the copyrightyear check - Consider a modified file to be committed this year. - Make the travis CHECKSRC also do COPYRIGHTYEAR scan in examples and includes
checksrc: repair the copyrightyear check - Consider a modified file to be committed this year. - Make the travis CHECKSRC also do COPYRIGHTYEAR scan in examples and includes - Ignore 0 parents when getting latest commit date of file. since in the CI we're dealing with a truncated repo of last 50 commits, the file's most recent commit may not be available. when this happens git log and rev-list show the initial commit (ie first commit not to be truncated) but that's incorrect so ignore it. Ref: https://github.com/curl/curl/pull/4547 Closes https://github.com/curl/curl/pull/4549 Co-authored-by: Jay Satiro
show more ...
|
0bc60d91 | 02-Nov-2019 |
Daniel Stenberg |
copyrights: fix copyright year range .. because checksrc's copyright year check stopped working. Ref: https://github.com/curl/curl/pull/4547 Closes https://github.com/curl/
copyrights: fix copyright year range .. because checksrc's copyright year check stopped working. Ref: https://github.com/curl/curl/pull/4547 Closes https://github.com/curl/curl/pull/4549
show more ...
|
3820c8d8 | 08-Nov-2019 |
Daniel Stenberg |
RELEASE-NOTES: synced |
8220dab4 | 08-Nov-2019 |
Daniel Stenberg |
curlver: bump to 7.67.1 |
7ef4e2e9 | 08-Nov-2019 |
Daniel Stenberg |
mailmap: fixup Massimiliano Fantuzzi |
58f7ec16 | 08-Nov-2019 |
Daniel Stenberg |
scripts/contributors: make committers get included too in addition to authors |
feea3c27 | 08-Nov-2019 |
Massimiliano Fantuzzi HB9GUS |
configure: fix typo in help text Closes https://github.com/curl/curl/pull/4570 |
93213b24 | 26-Mar-2019 |
Christian Schmitz |
ntlm: USE_WIN32_CRYPTO check removed to get USE_NTLM2SESSION set Closes #3704 |
93738efe | 06-Nov-2019 |
Wyatt O'Day |
build: fix for CURL_DISABLE_DOH Fixes https://github.com/curl/curl/issues/4565 Closes https://github.com/curl/curl/pull/4566 |
bc1cd39a | 06-Nov-2019 |
Leonardo Taccari |
configure: avoid unportable `==' test(1) operator Closes https://github.com/curl/curl/pull/4567 |
2e9b725f | 04-Nov-2019 |
Daniel Stenberg |
RELEASE-NOTES: synced The 7.67.0 release |
9367428c | 04-Nov-2019 |
Daniel Stenberg |
THANKS: add new names from 7.67.0 |
07f89860 | 04-Nov-2019 |
Daniel Stenberg |
configure: only say ipv6 enabled when the variable is set Previously it could say "IPv6: enabled" at the end of the configure run but the define wasn't set because of a missing getaddrin
configure: only say ipv6 enabled when the variable is set Previously it could say "IPv6: enabled" at the end of the configure run but the define wasn't set because of a missing getaddrinfo(). Reported-by: Marcel Raad Fixes #4555 Closes #4560
show more ...
|
2839cfdc | 02-Nov-2019 |
Marcel Raad |
certs/Server-localhost-lastSAN-sv: regenerate with sha256 All other certificates were regenerated in commit ba782baac30, but this one was missed. Fixes test3001 on modern systems.
certs/Server-localhost-lastSAN-sv: regenerate with sha256 All other certificates were regenerated in commit ba782baac30, but this one was missed. Fixes test3001 on modern systems. Closes https://github.com/curl/curl/pull/4551
show more ...
|
d0319adb | 31-Oct-2019 |
Vilhelm Prytz |
copyrights: update all copyright notices to 2019 on files changed this year Closes #4547 |
9910d6b9 | 02-Nov-2019 |
Bastien Bouclet |
mbedtls: add error message for cert validity starting in the future Closes #4552 |
9c498249 | 01-Nov-2019 |
Jay Satiro |
schannel_verify: Fix concurrent openings of CA file - Open the CA file using FILE_SHARE_READ mode so that others can read from it as well. Prior to this change our schannel co
schannel_verify: Fix concurrent openings of CA file - Open the CA file using FILE_SHARE_READ mode so that others can read from it as well. Prior to this change our schannel code opened the CA file without sharing which meant concurrent openings (eg an attempt from another thread or process) would fail during the time it was open without sharing, which in curl's case would cause error: "schannel: failed to open CA file". Bug: https://curl.haxx.se/mail/lib-2019-10/0104.html Reported-by: Richard Alcock
show more ...
|
c2b01cce | 30-Oct-2019 |
Daniel Stenberg |
gtls: make gnutls_bye() not wait for response on shutdown ... as it can make it wait there for a long time for no good purpose. Patched-by: Jay Satiro Reported-by: Bylon2 on git
gtls: make gnutls_bye() not wait for response on shutdown ... as it can make it wait there for a long time for no good purpose. Patched-by: Jay Satiro Reported-by: Bylon2 on github Adviced-by: Nikos Mavrogiannopoulos Fixes #4487 Closes #4541
show more ...
|
8d8b5ec3 | 19-Oct-2019 |
Michał Janiszewski |
appveyor: publish artifacts on appveyor This allows obtaining upstream builds of curl directly from appveyor for all the available configurations Closes #4509 |
dcd7e37c | 28-Oct-2019 |
Daniel Stenberg |
url: make Curl_close() NULLify the pointer too This is the common pattern used in the code and by a unified approach we avoid mistakes. Closes #4534 |