ab213d60 | 08-Sep-2020 |
Daniel Stenberg |
libtest: fix build errors Follow-up from 17fcdf6a310d4c8076 |
17fcdf6a | 07-Sep-2020 |
Daniel Stenberg |
lib: fix -Wassign-enum warnings configure --enable-debug now enables -Wassign-enum with clang, identifying several enum "abuses" also fixed. Reported-by: Gisle Vanem Bug: ht
lib: fix -Wassign-enum warnings configure --enable-debug now enables -Wassign-enum with clang, identifying several enum "abuses" also fixed. Reported-by: Gisle Vanem Bug: https://github.com/curl/curl/commit/879007f8118771f4896334731aaca5850a154675#commitcomment-42087553 Closes #5929
show more ...
|
ad425d3e | 08-Sep-2020 |
Daniel Stenberg |
RELEASE-NOTES: synced |
3532262e | 07-Sep-2020 |
Diven Qi |
url: use blank credentials when using proxy w/o username and password Fixes proxy regression brought in commit ad829b21ae (7.71.0) Fixed #5911 Closes #5914 |
6f42e3b1 | 07-Sep-2020 |
Daniel Stenberg |
travis: add a build using libressl (from git master) The v3.2.1 tag (latest release atm) results in a broken build. Closes #5932 |
8684bb70 | 07-Sep-2020 |
Daniel Stenberg |
configure: let --enable-debug set -Wenum-conversion with gcc >= 10 Unfortunately, this option is not detecting the same issues as clang's -Wassign-enum flag, but should still be useful t
configure: let --enable-debug set -Wenum-conversion with gcc >= 10 Unfortunately, this option is not detecting the same issues as clang's -Wassign-enum flag, but should still be useful to detect future mistakes. Closes #5930
show more ...
|
6d946ad9 | 07-Sep-2020 |
Daniel Stenberg |
openssl: consider ALERT_CERTIFICATE_EXPIRED a failed verification If the error reason from the lib is SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED, libcurl will return CURLE_PEER_FAILED_VER
openssl: consider ALERT_CERTIFICATE_EXPIRED a failed verification If the error reason from the lib is SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED, libcurl will return CURLE_PEER_FAILED_VERIFICATION and not CURLE_SSL_CONNECT_ERROR. This unifies the libcurl return code and makes libressl run test 313 (CRL testing) fine. Closes #5934
show more ...
|
d63b3908 | 07-Sep-2020 |
Daniel Stenberg |
FAQ: refreshed some very old language |
dc95c4e0 | 07-Sep-2020 |
Daniel Stenberg |
cmake: make HTTP_ONLY also disable MQTT ... and alphasort the order of disabling protocols to make it easier to browse. Closes #5931 |
d799b773 | 07-Sep-2020 |
Daniel Stenberg |
libtest: remove lib1541 leftovers Caused automake errors. Follow-up to 8ca54a03ea08a |
2a82e4dc | 07-Sep-2020 |
Daniel Stenberg |
tests/libtests: remove test 1900 and 2033 We already remove the test files, now remove the libtest codes as well. Follow-up to e50a877df74 |
e089704a | 06-Sep-2020 |
Marc Hoersken |
CI/azure: add test number to title for display in analytics To ease identification of tests the test number is added to the test case title in order to have it on the Azure DevOps An
CI/azure: add test number to title for display in analytics To ease identification of tests the test number is added to the test case title in order to have it on the Azure DevOps Analytics pages and reports which currently do not show it. Bump test case revision to make Azure DevOps update titles. Closes #5927
show more ...
|
f93455eb | 05-Sep-2020 |
Daniel Stenberg |
altsvc: clone setting in curl_easy_duphandle The cache content is not duplicated, like other caches, but the setting and specified file name are. Test 1908 is extended to verify
altsvc: clone setting in curl_easy_duphandle The cache content is not duplicated, like other caches, but the setting and specified file name are. Test 1908 is extended to verify this somewhat. Since the duplicated handle gets the same file name, the test unfortunately overwrites the same file twice (with different contents) which makes it hard to check automatically. Closes #5923
show more ...
|
8ca54a03 | 05-Sep-2020 |
Daniel Stenberg |
test1541: remove since it is a known bug A shared connection cache is not thread-safe is a known issue. Stop testing this until we believe this issue is addressed. Reduces occasional
test1541: remove since it is a known bug A shared connection cache is not thread-safe is a known issue. Stop testing this until we believe this issue is addressed. Reduces occasional test failures we don't care about. The test code in lib1541.c is left in git to allow us to restore it when we get to fix this. Closes #5922
show more ...
|
e50a877d | 05-Sep-2020 |
Daniel Stenberg |
tests: remove pipelining tests Remove the tests 530, 584, 1900, 1901, 1902, 1903 and 2033. They were previously disabled. The Pipelining code was removed from curl in commit 2f4
tests: remove pipelining tests Remove the tests 530, 584, 1900, 1901, 1902, 1903 and 2033. They were previously disabled. The Pipelining code was removed from curl in commit 2f44e94efb3df8e, April 2019. Closes #5921
show more ...
|
363a88ac | 05-Sep-2020 |
Daniel Stenberg |
curl: retry delays in parallel mode no longer sleeps blocking The previous sleep for retries would block all other concurrent transfers. Starting now, the retry will instead be properly
curl: retry delays in parallel mode no longer sleeps blocking The previous sleep for retries would block all other concurrent transfers. Starting now, the retry will instead be properly marked to not get restarted until after the delay time but other transfers can still continue in the mean time. Closes #5917
show more ...
|
e4e725f8 | 05-Sep-2020 |
Daniel Stenberg |
curl:parallel_transfers: make sure retry readds the transfer Reported-by: htasta on github Fixes #5905 Closes #5917 |
bbf8cae4 | 05-Sep-2020 |
Daniel Stenberg |
build: drop support for building with Watcom These files are not maintained, they seem to have no users, Watcom compilers look like not having users nor releases anymore. Closes
build: drop support for building with Watcom These files are not maintained, they seem to have no users, Watcom compilers look like not having users nor releases anymore. Closes #5918
show more ...
|
953088d2 | 05-Sep-2020 |
Daniel Stenberg |
winbuild/rundebug.cmd: remove Seems to have been added by mistake? Not included in dists. Closes #5919 |
6ecb63e4 | 05-Sep-2020 |
Daniel Stenberg |
curl: in retry output don't call all problems "transient" ... because when --retry-all-errors is used, the error isn't necessarily transient at all. Closes #5916 |
879007f8 | 05-Sep-2020 |
Daniel Stenberg |
easygetopt: pass a valid enum to avoid compiler warning "integer constant not in range of enumerated type 'CURLoption'" Reported-by: Gisle Vanem Bug: https://github.com/curl/cur
easygetopt: pass a valid enum to avoid compiler warning "integer constant not in range of enumerated type 'CURLoption'" Reported-by: Gisle Vanem Bug: https://github.com/curl/curl/commit/6ebe63fac23f38df911edc348e8ccc72280f9434#commitcomment-42042843 Closes #5915
show more ...
|
a86cc7e2 | 14-Jul-2020 |
Emil Engler |
tests: Add tests for new --help This commit is a part of "--help me if you can" Closes #5680 |
aa8777f6 | 02-Sep-2020 |
Emil Engler |
tool: update --help with categories This commit is a part of "--help me if you can" Closes #5680 |
5dddc1dc | 13-Jul-2020 |
Emil Engler |
docs: add categories to all cmdline opts Adapted gen.pl with 'listcats' This commit is a part of "--help me if you can" Closes #5680 |
df0282a8 | 04-Sep-2020 |
Daniel Stenberg |
RELEASE-NOTES: synced |