315ee3fe | 11-Oct-2020 |
Daniel Stenberg |
RELEASE-NOTES: synced for 7.73.0 |
2cbd2a2a | 11-Oct-2020 |
Daniel Stenberg |
THANKS: from 7.73.0 and .mailmap fixes |
eafe1eaf | 04-Sep-2020 |
Daniel Stenberg |
mailmap: fixups of some contributors |
fddc603b | 14-Oct-2020 |
Daniel Stenberg |
projects/build-wolfssl.bat: fix the copyright year range |
d8fffd71 | 12-Oct-2020 |
Sergei Nikulov |
CI/tests: fix invocation of tests for CMake builds Update appveyor.yml to set env variable TFLAGS and run tests Remove curly braces due to CMake error (${TFLAGS} -> $TFLAGS) Move tes
CI/tests: fix invocation of tests for CMake builds Update appveyor.yml to set env variable TFLAGS and run tests Remove curly braces due to CMake error (${TFLAGS} -> $TFLAGS) Move testdeps build to build step (per review comments) Reviewed-by: Marc Hörsken Closes #6066 Fixes #6052
show more ...
|
11241807 | 13-Oct-2020 |
Marc Hoersken |
tests/server/util.c: fix support for Windows Unicode builds Detected via #6066 Closes #6070 |
a3268779 | 13-Oct-2020 |
Jay Satiro |
strerror: Revert to local codepage for Windows error string - Change get_winapi_error() to return the error string in the local codepage instead of UTF-8 encoding. Two weeks a
strerror: Revert to local codepage for Windows error string - Change get_winapi_error() to return the error string in the local codepage instead of UTF-8 encoding. Two weeks ago bed5f84 fixed get_winapi_error() to work on xbox, but it also changed the error string's encoding from local codepage to UTF-8. We return the local codepage version of the error string because if it is output to the user's terminal it will likely be with functions which expect the local codepage (eg fprintf, failf, infof). This is essentially a partial revert of bed5f84. The support for xbox remains but the error string is reverted back to local codepage. Ref: https://github.com/curl/curl/pull/6005 Reviewed-by: Marcel Raad Closes #6065
show more ...
|
0a99281c | 12-Oct-2020 |
Marc Hoersken |
CI/tests: use verification curl for test reporting APIs Avoid using our own, potentially installed, curl for the test reporting APIs in case it is broken. Reviewed-by: Daniel St
CI/tests: use verification curl for test reporting APIs Avoid using our own, potentially installed, curl for the test reporting APIs in case it is broken. Reviewed-by: Daniel Stenberg Preparation for #6049 Closes #6063
show more ...
|
d707a9fa | 12-Oct-2020 |
Viktor Szakats |
windows: fix comparison of mismatched types warning clang 10, mingw-w64: ``` vtls/openssl.c:2917:33: warning: comparison of integers of different signs: 'DWORD' (aka 'unsigned long')
windows: fix comparison of mismatched types warning clang 10, mingw-w64: ``` vtls/openssl.c:2917:33: warning: comparison of integers of different signs: 'DWORD' (aka 'unsigned long') and 'HRESULT' (aka 'long') [-Wsign-compare] if(GetLastError() != CRYPT_E_NOT_FOUND) ~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~ ``` Approved-by: Daniel Stenberg Closes #6062
show more ...
|
c8ca7054 | 11-Oct-2020 |
Viktor Szakats |
src/Makefile.m32: fix undefined curlx_dyn_* errors by linking `lib/dynbuf.c` when building a static curl binary. Previously this source file was only included when building a dynamic
src/Makefile.m32: fix undefined curlx_dyn_* errors by linking `lib/dynbuf.c` when building a static curl binary. Previously this source file was only included when building a dynamic curl binary. This was likely possibly because no functions from the `src/Makefile.inc` / `CURLX_CFILES` sources were actually required for a curl tool build. This has recently changed with the introduction of `curlx_dyn_*()` memory functions and their use by the tool sources. Closes #6060
show more ...
|
a4c26b0a | 09-Oct-2020 |
Daniel Stenberg |
HISTORY: curl verifies SSL certs by default since version 7.10 |
1101fbbf | 07-Oct-2020 |
Marc Hoersken |
runtests.pl: use $LIBDIR variable instead of hardcoded path Reviewed-by: Daniel Stenberg Closes #6051 |
7d8c89d4 | 07-Oct-2020 |
Daniel Stenberg |
checksrc: detect // comments on column 0 Spotted while working on #6045 Closes #6048 |
bc5455fa | 06-Oct-2020 |
Frederik Wedel-Heinen |
mbedtls: add missing header when defining MBEDTLS_DEBUG Closes #6045 |
ec1cb755 | 04-Oct-2020 |
Daniel Stenberg |
curl: make sure setopt CURLOPT_IPRESOLVE passes on a long Previously, it would pass on a define (int) which could make libcurl read junk as a value - which prevented the CURLOPT_IPRESOLV
curl: make sure setopt CURLOPT_IPRESOLVE passes on a long Previously, it would pass on a define (int) which could make libcurl read junk as a value - which prevented the CURLOPT_IPRESOLVE option to "take". This could then make test 2100 do two DoH requests instead of one! Fixes #6042 Closes #6043
show more ...
|
d3a3cacd | 05-Oct-2020 |
Daniel Stenberg |
RELEASE-NOTES: synced |
06488441 | 05-Oct-2020 |
Daniel Stenberg |
scripts/release-notes.pl: don't "embed" $ in format string for printf() ... since they might contain %-codes that mess up the output! |
af782db0 | 02-Oct-2020 |
M.R.T <40250976+MRT-77@users.noreply.github.com> |
build-wolfssl: fix build with Visual Studio 2019 Closes https://github.com/curl/curl/pull/6033 |
b8e4d1cb | 03-Oct-2020 |
Daniel Stenberg |
runtests: add %repeat[]% for test files ... and use this new keywords in all the test files larger than 50K to reduce their sizes and make them a lot easier to read and understand.
runtests: add %repeat[]% for test files ... and use this new keywords in all the test files larger than 50K to reduce their sizes and make them a lot easier to read and understand. Closes #6040
show more ...
|
639c6bfc | 03-Oct-2020 |
Emil Engler |
--help: move two options from the misc category The cmdline opts delegation and suppress-connect-headers fit better into auth and proxy rather than misc. Follow-up to aa8777f63f
--help: move two options from the misc category The cmdline opts delegation and suppress-connect-headers fit better into auth and proxy rather than misc. Follow-up to aa8777f63febc Closes #6038
show more ...
|
2ead0ca4 | 03-Oct-2020 |
Samanta Navarro |
docs/opts: fix typos in two manual pages Closes #6039 |
6497ed45 | 02-Oct-2020 |
Daniel Stenberg |
ldap: reduce the amount of #ifdefs needed Closes #6035 |
e6b21d42 | 02-Oct-2020 |
Daniel Stenberg |
runtests: provide curl's version string as %VERSION for tests ... so that we can check HTTP requests for User-Agent: curl/%VERSION Update 600+ test cases accordingly. Close
runtests: provide curl's version string as %VERSION for tests ... so that we can check HTTP requests for User-Agent: curl/%VERSION Update 600+ test cases accordingly. Closes #6037
show more ...
|
26a7d51c | 02-Oct-2020 |
Daniel Stenberg |
checksrc: warn on space after exclamation mark Closes #6034 |
ddecd282 | 01-Oct-2020 |
Daniel Stenberg |
test1465: verify --libcurl with binary POST data |