summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* scripts/singleuse: add curl_easy_option*Daniel Stenberg2021-01-261-1/+4
|
* travis: build ngtcp2 --with-gnutlsDaniel Stenberg2021-01-221-1/+4
| | | | | | | ... since they disable it by default since a few days back. Closes #6506 Fixes #6493
* test410: verify HTTPS GET with a 49K request headerDaniel Stenberg2021-01-181-1/+1
| | | | skip test 410 for mesalink in the CI as it otherwise hangs "forever"
* travis: make the Hyper build from its master branchDaniel Stenberg2021-01-111-1/+1
| | | | Closes #6430
* travis: adapt to Hyper build changeDaniel Stenberg2021-01-061-2/+2
| | | | Closes #6419
* travis: limit the tests with quiche builds to HTTPS and FTPS onlyDaniel Stenberg2021-01-031-2/+2
| | | | | | ... since it runs into the 50 minute time limit too often otherwise. Closes #6403
* language: s/behaviour/behavior/gEmil Engler2021-01-021-4/+5
| | | | | | | | We currently use both spellings the british "behaviour" and the american "behavior". However "behavior" is more used in the project so I think it's worth dropping the british name. Closes #6395
* travis: add CI job for Hyper buildDaniel Stenberg2020-12-181-0/+9
|
* scripts/completion.pl: parse all optsThomas Danielsson2020-12-051-1/+1
| | | | | | | For tab-completion it may be preferable to include all the available options. Closes #6280
* http3: use the master branch of GnuTLS for testingDaiki Ueno2020-11-221-1/+1
| | | | Closes #6235
* release-notes.pl: detect #[number] better for Ref: etcDaniel Stenberg2020-11-131-1/+1
|
* Revert "libcurl.pc: make it relocatable"Daniel Stenberg2020-11-091-3/+0
| | | | | | | | | | This reverts commit 3862c37b6373a55ca704171d45ba5ee91dec2c9f. That fix should either be done differently or with an option. Reported-by: asavah on github Fixes #6157 Closes #6183
* copyright: fix year rangesDaniel Stenberg2020-11-051-0/+3
| | | | Follow-up from 4d2f8006777
* curl.se: new homeDaniel Stenberg2020-11-0415-16/+16
| | | | Closes #6172
* travis: use ninja-build for CMake buildsSergei Nikulov2020-11-041-14/+9
| | | | | | | Added package ninja-build to environment Use ninja to speed up CMake builds Closes #6077
* CI/tests: enable test target on TravisCI for CMake buildsSergei Nikulov2020-11-031-0/+1
| | | | | | | | Added test-nonflaky target to CMake builds Disabled test 1139 because the cmake build doesn't create docs/curl.1 Closes #6074
* travis: use valgrind when running tests for debug buildsDaniel Stenberg2020-11-021-1/+1
| | | | | | Except the non-x86 and sanitizer builds Closes #6154
* alt-svc: enable by defaultDaniel Stenberg2020-10-251-2/+2
| | | | | | | | Remove CURLALTSVC_IMMEDIATELY, which was never implemented/supported. alt-svc support in curl is no longer considered experimental Closes #5868
* scripts/release-notes.pl: don't "embed" $ in format string for printf()Daniel Stenberg2020-10-051-2/+3
| | | | ... since they might contain %-codes that mess up the output!
* src: Consistently spell whitespace without whitespaceDaniel Gustafsson2020-09-301-1/+1
| | | | | | | | | Whitespace is spelled without a space between white and space, so make sure to consistently spell it that way across the codebase. Closes #6023 Reviewed-by: Daniel Stenberg <daniel@haxx.se> Reviewed-by: Emil Engler <me@emilengler.com>
* symbian: drop supportDaniel Stenberg2020-09-221-11/+0
| | | | | | | | | The OS is deprecated. I see no traces of anyone having actually built curl for Symbian after 2012. The public headers are unmodified. Closes #5989
* travis: use libressl v3.1.4 instead of masterDaniel Stenberg2020-09-151-1/+1
| | | | | | | ... as their git master seems too fragile to use (and 3.2.1 which is the latest has a build failure). Closes #5964
* travis: add a build using libressl (from git master)Daniel Stenberg2020-09-071-0/+10
| | | | | | The v3.2.1 tag (latest release atm) results in a broken build. Closes #5932
* scripts/delta: add diffstat summaryDaniel Stenberg2020-09-031-18/+17
| | | | ... and make output more table-like
* travis: add a CI job with openssl3 (from git master)Daniel Stenberg2020-09-031-0/+9
| | | | Closes #5908
* copyright.pl: ignore buildconfDaniel Stenberg2020-09-021-0/+1
|
* scripts: improve the "get latest curl release tag" logicDaniel Stenberg2020-08-273-3/+3
| | | | ... by insiting on it matching "^curl-".
* HTTP/3: update to OpenSSL_1_1_1g-quic-draft-29Eric Curtin2020-08-271-1/+1
| | | | Closes #5871
* winbuild: convert the instruction text to README.mdDaniel Stenberg2020-08-261-1/+0
| | | | Closes #5861
* scripts/copyright.pl: ignore .muse filesDaniel Stenberg2020-08-141-0/+1
|
* travis/script.sh: fix use of `-n' with unquoted envvarThomas M. DuBuisson2020-08-041-1/+1
| | | | | | | | | | | | | | | | | Shellcheck tells us "-n doesn't work with unquoted arguments. quote or use [[ ]]." And testing shows: ``` docker run --rm -it ubuntu bash root@fe85ce156856:/# [ -n $DOES_NOT_EXIST ] && echo "I ran" I ran root@fe85ce156856:/# [ -n "$DOES_NOT_EXIST" ] && echo "I ran" root@fe85ce156856:/# ``` Closes #5773
* travis: add ppc64le and s390x buildsDaniel Stenberg2020-07-311-13/+15
| | | | Closes #5752
* travis: update quiche builds for new boringssl layoutAlessandro Ghedini2020-07-181-2/+2
| | | | | | | | | | This is required after https://github.com/cloudflare/quiche/pull/593 moved BoringSSL around slightly. This also means that Go is not needed to build BoringSSL anymore (the one provided by quiche anyway). Closes #5691
* scripts/copyright.pl: skip .dcignoreDaniel Stenberg2020-06-301-0/+1
|
* wording: avoid blacklist/whitelist stereotypesDaniel Stenberg2020-06-101-4/+4
| | | | | | | | Instead of discussing if there's value or meaning (implied or not) in the colors, let's use words without the same possibly negative associations. Closes #5546
* all: fix codespell errorsViktor Szakats2020-05-252-3/+3
| | | | | | Reviewed-by: Jay Satiro Reviewed-by: Daniel Stenberg Closes https://github.com/curl/curl/pull/5452
* copyright: updated year ranges out of syncDaniel Stenberg2020-05-241-0/+4
| | | | ... and whitelisted a few more files in the the copyright.pl script.
* travis: simplify quiche build instructions wrt boringsslPeter Wu2020-05-221-2/+4
| | | | | | | quiche builds boringssl as static library, reuse that instead of building another shared library. Closes #5438
* travis: remove the .checksrc fiddlingDaniel Stenberg2020-05-151-2/+0
|
* travis: Add ngtcp2 and quiche tests for CMakePeter Wu2020-05-101-7/+2
| | | | | | To avoid an explosion of jobs, extend the existing CMake tests with ngtcp2 and quiche support. macOS was previously moved to GitHub actions, so the non-Linux case can be dropped.
* travis: add "qlog" as feature in the quiche buildDaniel Stenberg2020-05-051-1/+1
|
* travis: bump the wolfssl CI build to use 4.4.0Daniel Stenberg2020-04-271-5/+5
| | | | Closes #5301
* release-notes.pl: fix parsing typoDaniel Stenberg2020-04-201-2/+2
|
* scripts/release-notes.pl: accept colon after the Fixes/Closes keywordsDaniel Stenberg2020-04-141-2/+2
|
* scripts/release-notes: fix duplicate output headerDaniel Stenberg2020-04-141-0/+1
|
* release-notes.pl: detect the start of the references in cleanup modeDaniel Stenberg2020-04-111-2/+1
|
* release-notes: fix the initial reference list outputDaniel Stenberg2020-04-081-19/+20
|
* release-notes: output trailing references sorted numericallyDaniel Stenberg2020-04-061-12/+10
|
* scripts/release-notes.pl: add helper script for RELEASE-NOTES maintenanceDaniel Stenberg2020-04-061-0/+214
| | | | | | | This script helps putting entries in the RELEASE-NOTES using a coherent style and sorting with a minimal human editing effort - as long as the first line in the commit message is good enough! There's a short howto at the top of the file.
* CI: add build with ngtcp2 + gnutls on Travis CIDaiki Ueno2020-03-311-6/+24
|