summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #786 from swt2c/option_aws_sigv4HEADmasterScott Talbert2023-01-313-0/+12
|\ | | | | Add CURLOPT_AWS_SIGV4 option
| * Add CURLOPT_AWS_SIGV4 optionScott Talbert2023-01-303-0/+12
|/ | | | Fixes #785.
* CI: upgrade setup-python to v4Scott Talbert2022-12-304-4/+4
|
* Merge pull request #782 from swt2c/missing_params_noargsScott Talbert2022-12-307-26/+26
|\ | | | | Add missing 2nd parameters to METH_NOARGS functions
| * Add missing 2nd parameters to METH_NOARGS functionsScott Talbert2022-12-127-26/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | The PyCFunction function signature is defined as: PyObject *PyCFunction(PyObject *self, PyObject *args); Thus, technically all these functions need a second (unused) parameter, although this does not seem to generate a compiler warning or cause any problems with current calling conventions. Fixes #781.
* | Merge pull request #784 from marcelbrouwers/ADD_CURLOPT_REQUEST_TARGETScott Talbert2022-12-303-0/+12
|\ \ | | | | | | Added option for CURLOPT_REQUEST_TARGET
| * | Added option for CURLOPT_REQUEST_TARGETMarcel Brouwers2022-12-303-0/+12
|/ /
* | Release 7.45.2REL_7_45_2Oleg Pudeyev2022-12-165-4/+27
| |
* | Update authorsOleg Pudeyev2022-12-161-0/+33
| |
* | Order authors case insensitivelyOleg Pudeyev2022-12-161-1/+1
| |
* | Fix authors extraction for python 3Oleg Pudeyev2022-12-161-1/+1
|/
* Merge pull request #780 from swt2c/deprecated_ssl_wrapsocketScott Talbert2022-12-011-3/+5
|\ | | | | Replace use of deprecated ssl.wrap_context in tests/runwsgi.py
| * Replace use of deprecated ssl.wrap_context in tests/runwsgi.pyScott Talbert2022-12-011-3/+5
|/
* Merge pull request #779 from swt2c/ci_python_311Scott Talbert2022-11-308-10/+18
|\ | | | | Run CI for Python 3.11
| * Run tests verboselyScott Talbert2022-11-301-1/+1
| |
| * Remove use of deprecated Py_TRASHCAN_SAFE_BEGIN / Py_TRASHCAN_SAFE_ENDScott Talbert2022-11-304-6/+14
| | | | | | | | Replace it with Py_TRASHCAN_BEGIN / Py_TRASHCAN_END on Python 3.8+.
| * Run CI for Python 3.11Scott Talbert2022-11-303-3/+3
|/
* Merge pull request #778 from swt2c/http_version_3Scott Talbert2022-11-302-0/+7
|\ | | | | Add support for CURL_HTTP_VERSION_3
| * Add support for CURL_HTTP_VERSION_3Scott Talbert2022-11-302-0/+7
|/
* Merge pull request #774 from swt2c/fix_build_test_newer_setuptoolsScott Talbert2022-09-142-8/+9
|\ | | | | Fix tests/building docs with newer setuptools
| * Fix tests/building docs with newer setuptoolsScott Talbert2022-09-132-8/+9
|/ | | | | | In newer setuptools/distutils, the build directory has been changed from using the Python version (e.g., 3.10) to using the cache tag (e.g., cpython-38). So, support both variants by making the dot optional.
* Merge pull request #767 from swt2c/tls_ciphersScott Talbert2022-08-033-0/+22
|\ | | | | Add CURLOPT_TLS13_CIPHERS and CURLOPT_PROXY_TLS13_CIPHERS options
| * Add CURLOPT_TLS13_CIPHERS and CURLOPT_PROXY_TLS13_CIPHERS optionsScott Talbert2022-08-033-0/+22
|/ | | | Fixes #766
* Merge pull request #764 from swt2c/ci_linux_dont_fail_fastScott Talbert2022-07-241-0/+1
|\ | | | | Linux CI: don't fail fast (like the other platforms)
| * Linux CI: don't fail fast (like the other platforms)Scott Talbert2022-07-241-0/+1
|/
* Merge pull request #763 from swt2c/add_http09_allowedScott Talbert2022-07-242-0/+9
|\ | | | | Add HTTP09_ALLOWED option
| * Add HTTP09_ALLOWED optionScott Talbert2022-07-242-0/+9
|/ | | | Fixes #762.
* Merge pull request #759 from swt2c/remove_distutilsScott Talbert2022-07-142-90/+9
|\ | | | | Remove use of deprecated distutils
| * Remove use of deprecated distutilsScott Talbert2022-06-102-90/+9
|/ | | | | | | | | 1) Use setuptools instead where it can replace distutils 2) Replace distutils.util.split_quoted with shlex.split 3) Remove support for bdist_msi (it's deprecated anyway) 4) Remove unused function in tests/util.py Fixes #757
* Merge pull request #758 from kianmeng/fix-typosScott Talbert2022-06-036-7/+7
|\ | | | | Fix typos
| * Fix typosKian-Meng Ang2022-06-036-7/+7
|/
* Merge pull request #755 from swt2c/win_troubleshootinScott Talbert2022-05-072-31/+30
|\ | | | | Fix CA tests with curl 7.82
| * Update test SSL certs to include Subject Alternative NameScott Talbert2022-05-062-31/+30
| | | | | | | | This fixes issues when testing with curl 7.82.
* | Merge pull request #753 from samueloph/patch-1Scott Talbert2022-04-301-3/+5
|\ \ | |/ |/| tests: fix error message on error_test (for curl >= 7.83)
| * tests: fix error message on error_test (for curl >= 7.83)Samuel Henrique2022-04-301-3/+5
| | | | | | | | | | | | curl 7.83.0 removed exclamation marks from a few error messages, curl commit: https://github.com/curl/curl/commit/6968fb9d54dc3a1aaa1b16088f038eaf5dd8b2d7 This commit adds support for the new curl release while also supporting the previous ones.
* | Merge pull request #754 from swt2c/ci_linux_apt_updateScott Talbert2022-04-301-1/+3
|\ \ | |/ |/| Linux CI: run 'apt-get update' before installing packages
| * Linux CI: run 'apt-get update' before installing packagesScott Talbert2022-04-301-1/+3
|/ | | | This should fix issues with mirroring errors.
* Merge pull request #751 from swt2c/ci_windows_save_wheelsScott Talbert2022-03-311-0/+4
|\ | | | | Windows CI: save wheels after building
| * Windows CI: save wheels after buildingScott Talbert2022-03-311-0/+4
|/
* Merge pull request #750 from swt2c/ci_windows_permsScott Talbert2022-03-311-0/+2
|\ | | | | Add packages write permissions for Windows CI
| * Add packages write permissions for Windows CIScott Talbert2022-03-311-0/+2
|/
* Merge pull request #746 from swt2c/ci_windows_debugScott Talbert2022-03-311-8/+12
|\ | | | | Fix Windows CI vcpkg caching by setting API key too
| * Fix Windows CI vcpkg caching by setting API key tooScott Talbert2022-03-311-8/+12
|/
* Merge pull request #741 from swt2c/ci_rm_msvc-dev-cmdScott Talbert2022-03-1324-3364/+1
|\ | | | | Windows CI: remove embedded copy of ilammy/msvc-dev-cmd
| * Windows CI: use published ilammy/msvc-dev-cmd instead of embedded copyScott Talbert2022-03-131-1/+1
| |
| * Revert "Temporarily add copy of ilammy/msvc-dev-cmd"Scott Talbert2022-03-1323-3363/+0
|/ | | | This reverts commit b24cdaa4e676f2385c20ab264b275dcdfbd0238b.
* Release 7.45.1REL_7_45_1Oleg Pudeyev2022-03-135-5/+15
|
* Merge pull request #747 from swt2c/xfail_macos_addl_testsScott Talbert2022-03-111-0/+3
|\ | | | | tests: xfail additional multi callback tests on macOS
| * tests: xfail additional multi callback tests on macOSScott Talbert2022-03-111-0/+3
|/
* Merge pull request #740 from cclauss/patch-1Oleg Pudeyev2022-03-113-28/+21
|\ | | | | ci.yml: Upgrade actions/checkout and actions/setup-python