]>
git.ipfire.org Git - thirdparty/curl.git/log
Daniel Stenberg [Fri, 3 Jul 2020 15:02:33 +0000 (17:02 +0200)]
test1139: make it display the difference on test failures
Daniel Stenberg [Fri, 3 Jul 2020 09:33:19 +0000 (11:33 +0200)]
test1119: verify stdout in the test
So that failures will be displayed in the terminal, as it makes test failures
visually displayed easier and faster.
Closes #5644
Daniel Stenberg [Mon, 13 Jul 2020 07:58:29 +0000 (09:58 +0200)]
curl: add %{method} to the -w variables
Gets the CURLINFO_EFFECTIVE_METHOD from libcurl.
Added test 1197 to verify.
Daniel Stenberg [Mon, 13 Jul 2020 07:58:28 +0000 (09:58 +0200)]
CURLINFO_EFFECTIVE_METHOD: added
Provide the HTTP method that was used on the latest request, which might
be relevant for users when there was one or more redirects involved.
Closes #5511
Viktor Szakats [Tue, 14 Jul 2020 08:30:17 +0000 (08:30 +0000)]
windows: add unicode to feature list
Reviewed-by: Marcel Raad
Reviewed-by: Marc Hörsken
Closes #5491
Daniel Stenberg [Sun, 12 Jul 2020 16:26:35 +0000 (18:26 +0200)]
multi: remove two checks always true
Detected by Codacy
Closes #5676
Marc Hoersken [Sun, 12 Jul 2020 20:07:38 +0000 (22:07 +0200)]
workflows: limit what branches to run CodeQL on
Align CodeQL action with existing CI actions:
- Update branch filter to avoid duplicate CI runs.
- Shorten workflow name due to informative job name.
Reviewed-by: Daniel Stenberg
Closes #5660
Marc Hoersken [Sun, 12 Jul 2020 20:04:00 +0000 (22:04 +0200)]
appveyor: collect libcurl.dll variants with prefix or suffix
On some platforms libcurl is build with a platform-specific
prefix and/or a version number suffix.
Assisted-by: Jay Satiro
Closes #5659
ihsinme [Sun, 5 Jul 2020 12:19:25 +0000 (15:19 +0300)]
socks: use size_t for size variable
Use the unsigned type (size_t) in the arithmetic of pointers. In this
context, the signed type (ssize_t) is used unnecessarily.
Authored-by: ihsinme on github
Closes #5654
Daniel Stenberg [Sun, 12 Jul 2020 16:16:23 +0000 (18:16 +0200)]
RELEASE-NOTES: synced
... and bumped to 7.72.0 as the next release version number
Gilles Vollant [Mon, 25 May 2020 15:49:46 +0000 (17:49 +0200)]
content_encoding: add zstd decoding support
include zstd curl patch for Makefile.m32 from vszakats
and include Add CMake support for zstd from Peter Wu
Helped-by: Viktor Szakats
Helped-by: Peter Wu
Closes #5453
Daniel Stenberg [Fri, 3 Jul 2020 16:21:18 +0000 (18:21 +0200)]
asyn.h: remove the Curl_resolver_getsock define
- not used
- used the wrong number of arguments
- confused the Codeacy code analyzer
Closes #5647
Nicolas Sterchele [Mon, 6 Jul 2020 12:15:48 +0000 (14:15 +0200)]
configure.ac: Sort features name in summary
- Same as protocols
Closes #5656
Matthias Naegler [Wed, 8 Jul 2020 12:14:53 +0000 (14:14 +0200)]
cmake: fix windows xp build
Reviewed-by: Marcel Raad
Closes #5662
Daniel Stenberg [Sun, 12 Jul 2020 14:32:10 +0000 (16:32 +0200)]
ngtcp2: update to modified qlog callback prototype
Closes #5675
Daniel Stenberg [Sat, 11 Jul 2020 22:45:27 +0000 (00:45 +0200)]
transfer: fix memory-leak with CURLOPT_CURLU in a duped handle
Added test case 674 to reproduce and verify the bug report.
Fixes #5665
Reported-by: NobodyXu on github
Closes #5673
Baruch Siach [Thu, 9 Jul 2020 05:14:49 +0000 (08:14 +0300)]
bearssl: fix build with disabled proxy support
Avoid reference to fields that do not exist when CURL_DISABLE_PROXY is
defined.
Reviewed-by: Nicolas Sterchele
Closes #5666
Daniel Stenberg [Sat, 11 Jul 2020 21:13:18 +0000 (23:13 +0200)]
RELEASE-NOTES: synced
Carlo Marcelo Arenas Belón [Thu, 9 Jul 2020 07:16:21 +0000 (00:16 -0700)]
cirrus-ci: upgrade 11-STABLE to 11.4
Meant to be the last of the 11 series and so make sure that all
other references reflect all 11 versions so they can be retired
together later.
Closes https://github.com/curl/curl/pull/5668
Filip Salomonsson [Sat, 4 Jul 2020 11:56:50 +0000 (13:56 +0200)]
CURLINFO_CERTINFO.3: fix typo
Closes https://github.com/curl/curl/pull/5655
Daniel Stenberg [Fri, 3 Jul 2020 22:10:04 +0000 (00:10 +0200)]
http2: only do the *done() cleanups for HTTP
Follow-up to
ef86daf4d3
Closes #5650
Fixes #5646
Alex Kiernan [Fri, 26 Jun 2020 09:08:32 +0000 (09:08 +0000)]
gnutls: repair the build with `CURL_DISABLE_PROXY`
`http_proxy`/`proxy_ssl`/`tunnel_proxy` will not be available in `conn`
if `CURL_DISABLE_PROXY` is enabled. Repair the build with that
configuration.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Closes #5645
Alex Kiernan [Fri, 26 Jun 2020 08:59:24 +0000 (08:59 +0000)]
gnutls: Fetch backend when using proxy
Fixes: 89865c149 ("gnutls: remove the BACKEND define kludge")
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Laramie Leavitt [Thu, 2 Jul 2020 23:46:22 +0000 (16:46 -0700)]
http2: close the http2 connection when no more requests may be sent
Well-behaving HTTP2 servers send two GOAWAY messages. The first
message is a warning that indicates that the server is going to
stop accepting streams. The second one actually closes the stream.
nghttp2 reports this state (and the other state of no more stream
identifiers) via the call nghttp2_session_check_request_allowed().
In this state the client should not create more streams on the
session (tcp connection), and in curl this means that the server
has requested that the connection is closed.
It would be also be possible to put the connclose() call into the
on_http2_frame_recv() function that triggers on the GOAWAY message.
This fixes a bug seen when the client sees the following sequence of
frames:
// advisory GOAWAY
HTTP2 GOAWAY [stream-id = 0, promised-stream-id = -1]
... some additional frames
// final GOAWAY
HTTP2 GOAWAY [stream-id = 0, promised-stream-id = N ]
Before this change, curl will attempt to reuse the connection even
after the last stream, will encounter this error:
* Found bundle for host localhost: 0x5595f0a694e0 [can multiplex]
* Re-using existing connection! (#0) with host localhost
* Connected to localhost (::1) port 10443 (#0)
* Using Stream ID: 9 (easy handle 0x5595f0a72e30)
> GET /index.html?5 HTTP/2
> Host: localhost:10443
> user-agent: curl/7.68.0
> accept: */*
>
* stopped the pause stream!
* Connection #0 to host localhost left intact
curl: (16) Error in the HTTP2 framing layer
This error may posion the connection cache, causing future requests
which resolve to the same curl connection to go through the same error
path.
Closes #5643
Daniel Stenberg [Thu, 2 Jul 2020 14:42:55 +0000 (16:42 +0200)]
ftpserver: don't verify SMTP MAIL FROM names
Rely on tests asking the names to get refused instead - test servers
should be as dumb as possible. Edited test 914, 955 and 959 accordingly.
Closes #5639
Daniel Stenberg [Thu, 2 Jul 2020 21:46:40 +0000 (23:46 +0200)]
curl_version_info.3: CURL_VERSION_KERBEROS4 is deprecated
This came up in #5640. It make sense to clarify this in the docs!
Reminded-by: Kamil Dudka
Closes #5642
Kamil Dudka [Thu, 2 Jul 2020 15:41:37 +0000 (17:41 +0200)]
tool_getparam: make --krb option work again
It was disabled by mistake in commit curl-7_37_1
-23-ge38ba4301 .
Bug: https://bugzilla.redhat.com/
1833193
Closes #5640
Jeremy Maitin-Shepard [Thu, 2 Jul 2020 16:47:11 +0000 (09:47 -0700)]
http2: fix nghttp2_strerror -> nghttp2_http2_strerror in debug messages
Confusingly, nghttp2 has two different error code enums:
- nghttp2_error, to be used with nghttp2_strerror
- nghttp2_error_code, to be used with nghttp2_http2_strerror
Closes #5641
Marcel Raad [Thu, 2 Jul 2020 11:23:31 +0000 (13:23 +0200)]
url: silence MSVC warning
Since commit
f3d501dc678 , if proxy support is disabled, MSVC warns:
url.c : warning C4701: potentially uninitialized local variable
'hostaddr' used
url.c : error C4703: potentially uninitialized local pointer variable
'hostaddr' used
That could actually only happen if both `conn->bits.proxy` and
`CURL_DISABLE_PROXY` were enabled.
Initialize it to NULL to silence the warning.
Closes https://github.com/curl/curl/pull/5638
Daniel Stenberg [Wed, 1 Jul 2020 08:37:20 +0000 (10:37 +0200)]
RELEASE-NOTES: synced
Daniel Stenberg [Tue, 30 Jun 2020 10:31:11 +0000 (12:31 +0200)]
RELEASE-NOTES: curl 7.71.1
Daniel Stenberg [Tue, 30 Jun 2020 10:32:02 +0000 (12:32 +0200)]
THANKS: add contributors to 7.71.1
Daniel Stenberg [Tue, 30 Jun 2020 13:29:52 +0000 (15:29 +0200)]
scripts/copyright.pl: skip .dcignore
Daniel Stenberg [Tue, 30 Jun 2020 08:56:57 +0000 (10:56 +0200)]
Revert "multi: implement wait using winsock events"
This reverts commit
8bc25c590e530de87595d1bb3577f699eb1309b9 .
That commit (from #5397) introduced a regression in 7.71.0.
Reported-by: tmkk on github
Fixes #5631
Closes #5632
Daniel Stenberg [Mon, 29 Jun 2020 21:53:27 +0000 (23:53 +0200)]
TODO: Add flag to specify download directory
Daniel Stenberg [Mon, 29 Jun 2020 21:50:44 +0000 (23:50 +0200)]
TODO: return code to CURLMOPT_PUSHFUNCTION to fail connection
Daniel Stenberg [Mon, 29 Jun 2020 15:04:59 +0000 (17:04 +0200)]
cirrus-ci: disable FreeBSD 13 (again)
It has been failing for a good while again. This time we better leave it
disabled until we have more reason to believe it behaves.
Closes #5628
Daniel Stenberg [Mon, 29 Jun 2020 14:22:05 +0000 (16:22 +0200)]
ngtcp2: sync with current master
ngtcp2 added two new callbacks
Reported-by: Lucien Zürcher
Fixes #5624
Closes #5627
Daniel Stenberg [Mon, 29 Jun 2020 06:59:34 +0000 (08:59 +0200)]
examples/multithread.c: call curl_global_cleanup()
Reported-by: qiandu2006 on github
Fixes #5622
Closes #5623
Daniel Stenberg [Fri, 26 Jun 2020 21:26:01 +0000 (23:26 +0200)]
vtls: compare cert blob when finding a connection to reuse
Reported-by: Gergely Nagy
Fixes #5617
Closes #5619
Daniel Stenberg [Sat, 27 Jun 2020 22:35:52 +0000 (00:35 +0200)]
RELEASE-NOTES: synced
Daniel Stenberg [Thu, 25 Jun 2020 09:38:25 +0000 (11:38 +0200)]
terminology: call them null-terminated strings
Updated terminology in docs, comments and phrases to refer to C strings
as "null-terminated". Done to unify with how most other C oriented docs
refer of them and what users in general seem to prefer (based on a
single highly unscientific poll on twitter).
Reported-by: coinhubs on github
Fixes #5598
Closes #5608
Daniel Stenberg [Fri, 26 Jun 2020 12:16:21 +0000 (14:16 +0200)]
http: fix proxy auth with blank password
Regression in 7.71.0
Added test case 346 to verify.
Reported-by: Kristoffer Gleditsch
Fixes #5613
Closes #5616
Daniel Stenberg [Fri, 26 Jun 2020 22:07:37 +0000 (00:07 +0200)]
.dcignore: ignore tests and docs directories
This is a config file for deepcode.ai, a static code analyzer.
Jay Satiro [Fri, 26 Jun 2020 06:26:41 +0000 (02:26 -0400)]
tool_cb_hdr: Fix etag warning output and return code
- Return 'failure' on failure, to follow the existing style.
- Put Warning: and the warning message on the same line.
Ref: https://github.com/curl/curl/issues/5610
Closes https://github.com/curl/curl/pull/5612
Daniel Stenberg [Thu, 25 Jun 2020 07:54:40 +0000 (09:54 +0200)]
CURLOPT_READFUNCTION.3: provide the upload data size up front
Assisted-by: Jay Satiro
Closes #5607
Daniel Stenberg [Tue, 23 Jun 2020 21:17:25 +0000 (23:17 +0200)]
test1539: do a HTTP 1.0 POST without a set size (fails)
Attempt to reproduce #5593. Test case 1514 is very similar but uses
HTTP/1.1 and thus switches to chunked.
Closes #5595
Baruch Siach [Fri, 26 Jun 2020 09:40:43 +0000 (12:40 +0300)]
mbedtls: fix build with disabled proxy support
Don't reference fields that do not exist. Fixes build failure:
vtls/mbedtls.c: In function 'mbed_connect_step1':
vtls/mbedtls.c:249:54: error: 'struct connectdata' has no member named 'http_proxy'
Closes #5615
Daniel Stenberg [Fri, 26 Jun 2020 06:49:23 +0000 (08:49 +0200)]
codeql-analysis.yml: fix the 'languages' setting
It needs a 'with:' in front of it.
Daniel Stenberg [Thu, 25 Jun 2020 23:06:05 +0000 (01:06 +0200)]
gtihub: codeql-analysis.yml
enables code security scanning with github actions
Daniel Stenberg [Fri, 19 Jun 2020 22:04:08 +0000 (00:04 +0200)]
tests: verify newline in username and password for HTTP
test 1296 is a simply command line test
test 1910 is a libcurl test including a redirect
Daniel Stenberg [Tue, 23 Jun 2020 14:23:51 +0000 (16:23 +0200)]
url: allow user + password to contain "control codes" for HTTP(S)
Reported-by: Jon Johnson Jr
Fixes #5582
Closes #5592
Daniel Stenberg [Tue, 23 Jun 2020 14:13:50 +0000 (16:13 +0200)]
escape: make the URL decode able to reject only %00 bytes
... or all "control codes" or nothing.
Assisted-by: Nicolas Sterchele
Daniel Stenberg [Tue, 23 Jun 2020 12:28:34 +0000 (14:28 +0200)]
http2: set the correct URL in pushed transfers
...previously CURLINFO_EFFECTIVE_URL would report the URL of the
original "mother transfer", not the actually pushed resource.
Reported-by: Jonathan Cardoso Machado
Fixes #5589
Closes #5591
Javier Blazquez [Wed, 24 Jun 2020 20:21:04 +0000 (13:21 -0700)]
openssl: Fix compilation on Windows when ngtcp2 is enabled
- Include wincrypt before OpenSSL includes so that the latter can
properly handle any conflicts between the two.
Closes https://github.com/curl/curl/pull/5606
Daniel Stenberg [Wed, 24 Jun 2020 13:24:35 +0000 (15:24 +0200)]
test543: extended to verify zero length input
As was reported in #5601
Daniel Stenberg [Wed, 24 Jun 2020 13:23:19 +0000 (15:23 +0200)]
escape: zero length input should return a zero length output
Regression added in 7.71.0.
Fixes #5601
Reported-by: Kristoffer Gleditsch
Closes #5602
Daniel Stenberg [Tue, 23 Jun 2020 23:13:04 +0000 (01:13 +0200)]
Curl_inet_ntop: always check the return code
Reported-by: Siva Sivaraman
Fixes #5412
Closes #5597
Daniel Stenberg [Tue, 23 Jun 2020 22:22:00 +0000 (00:22 +0200)]
sendf: improve the message on client write errors
Replace "Failed writing body (X != Y)" with
"Failure writing output to destination". Possibly slightly less cryptic.
Reported-by: coinhubs on github
Fixes #5594
Closes #5596
Daniel Stenberg [Wed, 24 Jun 2020 09:44:22 +0000 (11:44 +0200)]
RELEASE-NOTES: synced
Daniel Stenberg [Wed, 24 Jun 2020 09:44:10 +0000 (11:44 +0200)]
curlver: start working on 7.71.1
Denis Baručić [Wed, 24 Jun 2020 07:55:20 +0000 (09:55 +0200)]
DYNBUF.md: fix a typo: trail => tail
Closes #5599
Daniel Stenberg [Mon, 22 Jun 2020 09:50:21 +0000 (11:50 +0200)]
RELEASE-NOTES: curl 7.71.0 release
Daniel Stenberg [Mon, 22 Jun 2020 09:53:33 +0000 (11:53 +0200)]
THANKS: curl 7.71.0 additions
Daniel Stenberg [Tue, 23 Jun 2020 12:02:54 +0000 (14:02 +0200)]
url: make sure pushed streams get an allocated download buffer
Follow-up to
c4e6968127e876b0
When a new transfer is created, as a resuly of an acknowledged push,
that transfer needs a download buffer allocated.
Closes #5590
Jay Satiro [Mon, 22 Jun 2020 16:01:32 +0000 (12:01 -0400)]
openssl: Don't ignore CA paths when using Windows CA store
This commit changes the behavior of CURLSSLOPT_NATIVE_CA so that it does
not override CURLOPT_CAINFO / CURLOPT_CAPATH, or the hardcoded default
locations. Instead the CA store can now be used at the same time.
The change is due to the impending release. The issue is still being
discussed. The behavior of CURLSSLOPT_NATIVE_CA is subject to change and
is now documented as experimental.
Ref:
bc052cc (parent commit)
Ref: https://github.com/curl/curl/issues/5585
Jay Satiro [Sat, 20 Jun 2020 06:39:37 +0000 (02:39 -0400)]
tool_operate: Don't use Windows CA store as a fallback
Background:
148534d added CURLSSLOPT_NATIVE_CA to use the Windows OS certificate
store in libcurl w/ OpenSSL on Windows. CURLSSLOPT_NATIVE_CA overrides
CURLOPT_CAINFO if both are set. The curl tool will fall back to
CURLSSLOPT_NATIVE_CA if it could not find a certificate bundle to set
via CURLOPT_CAINFO.
Problem:
libcurl may be built with hardcoded paths to a certificate bundle or
directory, and if CURLSSLOPT_NATIVE_CA is used then those paths are
ignored.
Solution:
A solution is still being discussed but since there's an impending
release this commit removes using CURLSSLOPT_NATIVE_CA in the curl tool.
Ref: https://github.com/curl/curl/issues/5585
Jay Satiro [Mon, 22 Jun 2020 16:13:55 +0000 (12:13 -0400)]
openssl: Fix CA fallback logic for OpenSSL 3.0 build
Prior to this change I assume a build error would occur when
CURL_CA_FALLBACK was used.
Closes https://github.com/curl/curl/pull/5587
Daniel Stenberg [Mon, 22 Jun 2020 09:55:03 +0000 (11:55 +0200)]
copyright: update mismatched copyright years
Daniel Stenberg [Sun, 31 May 2020 21:10:22 +0000 (23:10 +0200)]
test1460: verify that -Ji is not ok
Daniel Stenberg [Sun, 31 May 2020 21:09:59 +0000 (23:09 +0200)]
tool_getparam: -i is not OK if -J is used
Reported-by: sn on hackerone
Bug: https://curl.haxx.se/docs/CVE-2020-8177.html
Peter Wu [Thu, 4 Jun 2020 09:28:01 +0000 (11:28 +0200)]
CMake: ignore INTERFACE_LIBRARY targets for pkg-config file
Reviewed-by: Marcel Raad
Fixes #5512
Closes #5517
Valentyn Korniienko [Thu, 18 Jun 2020 13:26:13 +0000 (16:26 +0300)]
multibyte: Fixed access-> waccess to file for Windows Plarform
Reviewed-by: Marcel Raad
Closes #5580
Daniel Stenberg [Fri, 19 Jun 2020 14:32:43 +0000 (16:32 +0200)]
altsvc: bump to h3-29
Closes #5584
Daniel Stenberg [Thu, 18 Jun 2020 11:27:59 +0000 (13:27 +0200)]
urlglob: treat literal IPv6 addresses with zone IDs as a host name
... and not as a "glob". Now done by passing the supposed host to the
URL parser which supposedly will do a better job at identifying "real"
numerical IPv6 addresses.
Reported-by: puckipedia on github
Fixes #5576
Closes #5579
Daniel Stenberg [Thu, 18 Jun 2020 06:45:02 +0000 (08:45 +0200)]
test1179: verify error message for non-existing cmdline option
Daniel Stenberg [Wed, 17 Jun 2020 22:51:37 +0000 (00:51 +0200)]
tool_getparam: repair the error message for unknown flag
Follow-up to
9e5669f3880674
Detected by Coverity CID
1464582 ("Logically dead code")
Closes #5577
Daniel Stenberg [Thu, 18 Jun 2020 07:46:38 +0000 (09:46 +0200)]
FILEFORMAT: describe verify/stderr
Daniel Stenberg [Mon, 15 Jun 2020 14:17:55 +0000 (16:17 +0200)]
connect: improve happy eyeballs handling
For QUIC but also for regular TCP when the second family runs out of IPs
with a failure while the first family is still trying to connect.
Separated the timeout handling for IPv4 and IPv6 connections when they
both have a number of addresses to iterate over.
Daniel Stenberg [Mon, 15 Jun 2020 11:19:17 +0000 (13:19 +0200)]
ngtcp2: never call fprintf() in lib code in release version
Daniel Stenberg [Mon, 15 Jun 2020 08:36:32 +0000 (10:36 +0200)]
ngtcp2: fix happy eyeballs quic connect crash
Reported-by: Peter Wu
Fixes #5565
Closes #5568
Daniel Stenberg [Wed, 17 Jun 2020 06:44:41 +0000 (08:44 +0200)]
select: remove the unused ELAPSED_MS() macro
Closes #5573
rcombs [Wed, 13 May 2020 23:49:57 +0000 (18:49 -0500)]
multi: implement wait using winsock events
This avoids using a pair of TCP ports to provide wakeup functionality
for every multi instance on Windows, where socketpair() is emulated
using a TCP socket on loopback which could in turn lead to socket
resource exhaustion.
Reviewed-by: Gergely Nagy
Reviewed-by: Marc Hörsken
Closes #5397
Daniel Stenberg [Tue, 16 Jun 2020 15:36:50 +0000 (17:36 +0200)]
manpage: add three missing environment variables
CURL_SSL_BACKEND, QLOGDIR and SSLKEYLOGFILE
Closes #5571
Daniel Stenberg [Tue, 16 Jun 2020 07:30:35 +0000 (09:30 +0200)]
RELEASE-NOTES: synced
Daniel Stenberg [Thu, 11 Jun 2020 21:36:19 +0000 (23:36 +0200)]
configure: for wolfSSL, check for the DES func needed for NTLM
Also adds pkg-config support for the wolfSSL detection.
Ruurd Beerstra [Thu, 11 Jun 2020 15:14:43 +0000 (17:14 +0200)]
ntlm: enable NTLM support with wolfSSL
When wolfSSL is built with its OpenSSL API layer, it fetures the same DES*
functions that OpenSSL has. This change take advantage of that.
Co-authored-by: Daniel Stenberg
Closes #5556
Fixes #5548
Daniel Stenberg [Mon, 15 Jun 2020 09:28:17 +0000 (11:28 +0200)]
http: move header storage to Curl_easy from connectdata
Since the connection can be used by many independent requests (using
HTTP/2 or HTTP/3), things like user-agent and other transfer-specific
data MUST NOT be kept connection oriented as it could lead to requests
getting the wrong string for their requests. This struct data was
lingering like this due to old HTTP1 legacy thinking where it didn't
mattered..
Fixes #5566
Closes #5567
Daniel Stenberg [Thu, 11 Jun 2020 10:04:05 +0000 (12:04 +0200)]
CODE_REVIEW.md: how to do code reviews in curl
Assisted-by: Daniel Gustafsson
Assisted-by: Rich Salz
Assisted-by: Hugo van Kemenade
Assisted-by: James Fuller
Assisted-by: Marc Hörsken
Assisted-by: Jay Satiro
Closes #5555
Daniel Stenberg [Fri, 12 Jun 2020 15:35:35 +0000 (17:35 +0200)]
altsvc: remove the num field from the altsvc struct
It was superfluous since we have the list.size alredy
Reported-by: Jay Satiro
Fixes #5553
Closes #5563
Daniel Stenberg [Fri, 12 Jun 2020 08:30:20 +0000 (10:30 +0200)]
version.d: expanded and alpha-sorted
Added a few missing features not previously mentioned. Ordered them
alphabetically.
Closes #5558
Daniel Stenberg [Fri, 12 Jun 2020 11:26:20 +0000 (13:26 +0200)]
ABI.md: rename to .md and polish the markdown
Closes #5562
Daniel Stenberg [Fri, 12 Jun 2020 10:01:49 +0000 (12:01 +0200)]
HELP-US: add a section for "smaller tasks"
The point of this section is to meet the CII Best Practices gold level
critera:
"The project MUST clearly identify small tasks that can be performed by
new or casual contributors"
Closes #5560
Daniel Stenberg [Fri, 12 Jun 2020 12:41:35 +0000 (14:41 +0200)]
TODO: retry on the redirected-to URL
Closes #5462
Daniel Stenberg [Fri, 12 Jun 2020 11:41:52 +0000 (13:41 +0200)]
mailmap: Nicolas Sterchele
Sterchele Nicolas [Fri, 12 Jun 2020 11:21:04 +0000 (13:21 +0200)]
TODO: remove 19.3 section title
Follow-up to
ad6416986755e417c66e2c6 , which caused wrong formatting on
curl documentation website
Closes #5561
Martin V [Wed, 10 Jun 2020 18:14:59 +0000 (20:14 +0200)]
test1560: avoid possibly negative association in wording
Closes #5549
Daniel Stenberg [Thu, 11 Jun 2020 08:16:32 +0000 (10:16 +0200)]
share: don't set the share flag it something fails
When asking for a specific feature to be shared in the share object,
that bit was previously set unconditionally even if the shared feature
failed or otherwise wouldn't work.
Closes #5554
Daniel Stenberg [Wed, 10 Jun 2020 21:40:00 +0000 (23:40 +0200)]
buildconf: remove -print from the find command that removes files
It's just too annoying and unnecessary to get a long list of files shown
Daniel Stenberg [Wed, 10 Jun 2020 07:38:54 +0000 (09:38 +0200)]
RELEASE-NOTES: synced