29c05ce9 | 05-Nov-2018 |
Daniel Stenberg |
TODO: 2.6 multi upkeep Closes #3199 |
60e3d1f2 | 05-Nov-2018 |
Daniel Gustafsson |
unittest: make 1652 stable across collations The previous coding used a format string whose output depended on the current locale of the environment running the test. Since the gist of
unittest: make 1652 stable across collations The previous coding used a format string whose output depended on the current locale of the environment running the test. Since the gist of the test is to have a format string, with the actual formatting being less important, switch to a more stable formatstring with decimals. Reported-by: Marcel Raad Closes #3234 Reviewed-by: Daniel Stenberg <daniel@haxx.se> Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>
show more ...
|
d9abebc7 | 05-Nov-2018 |
Daniel Stenberg |
Revert "url: a short host name + port is not a scheme" This reverts commit 226cfa8264cd979eff3fd52c0f3585ef095e7cf2. This commit caused test failures on appveyor/windows. Work on fi
Revert "url: a short host name + port is not a scheme" This reverts commit 226cfa8264cd979eff3fd52c0f3585ef095e7cf2. This commit caused test failures on appveyor/windows. Work on fixing them is in #3235.
show more ...
|
66dc1570 | 03-Nov-2018 |
Daniel Stenberg |
symbols-in-versions: add missing CURLU_ symbols ...and fix symbol-scan.pl to also scan urlapi.h Reported-by: Alexey Melnichuk Fixes #3226 Closes #3230 |
c37b66aa | 03-Nov-2018 |
Daniel Gustafsson |
infof: clearly indicate truncation The internal buffer in infof() is limited to 2048 bytes of payload plus an additional byte for NULL termination. Servers with very long error messa
infof: clearly indicate truncation The internal buffer in infof() is limited to 2048 bytes of payload plus an additional byte for NULL termination. Servers with very long error messages can however cause truncation of the string, which currently isn't very clear, and leads to badly formatted output. This appends a "...\n" (or just "..." in case the format didn't with a newline char) marker to the end of the string to clearly show that it has been truncated. Also include a unittest covering infof() to try and catch any bugs introduced in this quite important function. Closes #3216 Reviewed-by: Daniel Stenberg <daniel@haxx.se> Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>
show more ...
|
d82a17ad | 03-Nov-2018 |
Michael Kaufmann |
tool_getparam: fix some comments |
226cfa82 | 02-Nov-2018 |
Daniel Stenberg |
url: a short host name + port is not a scheme The function identifying a leading "scheme" part of the URL considered a few letters ending with a colon to be a scheme, making something li
url: a short host name + port is not a scheme The function identifying a leading "scheme" part of the URL considered a few letters ending with a colon to be a scheme, making something like "short:80" to become an unknown scheme instead of a short host name and a port number. Extended test 1560 to verify. Reported-by: Hagai Auro Fixes #3220 Closes #3223
show more ...
|
b2809483 | 02-Nov-2018 |
Daniel Stenberg |
URL: fix IPv6 numeral address parser Regression from 46e164069d1a52. Extended test 1560 to verify. Reported-by: tpaukrt on github Fixes #3218 Closes #3219 |
6987e373 | 31-Oct-2018 |
Daniel Stenberg |
travis: remove curl before a normal build on Linux. To make sure the test suite runs with its newly build tool and doesn't require an external one present. Bug: #3198 Closes
travis: remove curl before a normal build on Linux. To make sure the test suite runs with its newly build tool and doesn't require an external one present. Bug: #3198 Closes #3200
show more ...
|
e4f2a5bc | 28-Oct-2018 |
Tim Rühsen |
mprintf: avoid unsigned integer overflow warning The overflow has no real world impact. Just avoid it for "best practice". Code change suggested by "The Infinnovation Team" and
mprintf: avoid unsigned integer overflow warning The overflow has no real world impact. Just avoid it for "best practice". Code change suggested by "The Infinnovation Team" and Daniel Stenberg. Closes #3184
show more ...
|
2c5ec339 | 01-Nov-2018 |
Daniel Stenberg |
Curl_follow: accept non-supported schemes for "fake" redirects When not actually following the redirect and the target URL is only stored for later retrieval, curl always accepted "non-s
Curl_follow: accept non-supported schemes for "fake" redirects When not actually following the redirect and the target URL is only stored for later retrieval, curl always accepted "non-supported" schemes. This was a regression from 46e164069d1a5230. Reported-by: Brad King Fixes #3210 Closes #3215
show more ...
|
a4653a7f | 02-Nov-2018 |
Daniel Gustafsson |
openvms: fix example name Commit efc696a2e09225bfeab4 renamed persistant.c to persistent.c to fix the typo in the name, but missed to update the OpenVMS package files which still loo
openvms: fix example name Commit efc696a2e09225bfeab4 renamed persistant.c to persistent.c to fix the typo in the name, but missed to update the OpenVMS package files which still looked for the old name. Closes #3217 Reviewed-by: Daniel Stenberg <daniel@haxx.se> Reviewed-by: Viktor Szakats <commit@vszakats.net>
show more ...
|
2dac2606 | 01-Nov-2018 |
Daniel Stenberg |
configure: show CFLAGS, LDFLAGS etc in summary To make it easier to understand other people's and remote builds etc. Closes #3207 |
29db6bbf | 01-Nov-2018 |
Daniel Stenberg |
version: bump for next cycle |
302d125b | 30-Oct-2018 |
Daniel Stenberg |
axtls: removed As has been outlined in the DEPRECATE.md document, the axTLS code has been disabled for 6 months and is hereby removed. Use a better supported TLS library!
axtls: removed As has been outlined in the DEPRECATE.md document, the axTLS code has been disabled for 6 months and is hereby removed. Use a better supported TLS library! Assisted-by: Daniel Gustafsson Closes #3194
show more ...
|
7f4c3585 | 30-Oct-2018 |
marcosdiazr |
schannel: make CURLOPT_CERTINFO support using Issuer chain Closes #3197 |
58d04252 | 29-Oct-2018 |
Daniel Stenberg |
travis: build with sanitize=address,undefined,signed-integer-overflow ... using clang Closes #3190 |
832661b3 | 31-Oct-2018 |
Daniel Stenberg |
schannel: use Curl_ prefix for global private symbols Curl_verify_certificate() must use the Curl_ prefix since it is globally available in the lib and otherwise steps outside of our nam
schannel: use Curl_ prefix for global private symbols Curl_verify_certificate() must use the Curl_ prefix since it is globally available in the lib and otherwise steps outside of our namespace! Closes #3201
show more ...
|
fc2c9a96 | 31-Oct-2018 |
Kamil Dudka |
tests: drop http_pipe.py script no longer used It is unused since commit f7208df7d9d5cd5e15e2d89237e828f32b63f135. Closes #3204 |
8effa8c2 | 31-Oct-2018 |
Daniel Stenberg |
runtests: use the local curl for verifying ... revert the mistaken change brought in commit 8440616f53. Reported-by: Alessandro Ghedini Bug: https://curl.haxx.se/mail/lib-2018-1
runtests: use the local curl for verifying ... revert the mistaken change brought in commit 8440616f53. Reported-by: Alessandro Ghedini Bug: https://curl.haxx.se/mail/lib-2018-10/0118.html Closes #3198
show more ...
|
19667715 | 29-Oct-2018 |
Daniel Stenberg |
RELEASE-NOTES: 7.62.0 |
bbed10da | 27-Oct-2018 |
Daniel Stenberg |
THANKS: 7.62.0 status |
1460e89e | 30-Oct-2018 |
Daniel Gustafsson |
vtls: add MesaLink to curl_sslbackend enum MesaLink support was added in commit 57348eb97d1b8fc3742e02c but the backend was never added to the curl_sslbackend enum in curl/curl.h. Th
vtls: add MesaLink to curl_sslbackend enum MesaLink support was added in commit 57348eb97d1b8fc3742e02c but the backend was never added to the curl_sslbackend enum in curl/curl.h. This adds the new backend to the enum and updates the relevant docs. Closes #3195 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
show more ...
|
98d9a33d | 29-Oct-2018 |
Ruslan Baratov |
cmake: Remove unused CURL_CONFIG_HAS_BEEN_RUN_BEFORE variable Closes #3191 |
350306e4 | 28-Oct-2018 |
Daniel Stenberg |
test2080: verify the fix for CVE-2018-16842 |