- update dependencies
Older Versions
- allow to use additional CA certificates
new options:--cacert - allow to specify certificate revokation lists
new options:
--crlfile
- add basic proxy support
new options:-x,--proxy
- add verbosity options
-s: Silent mode (don't print any additional output)-S: print error messages, even if-sis set-v: print additional messages (not used yet)
- allow to include HTTP response headers in the output
new options:-i,--include - allow files as request body using '@' as prefix of '-d' option
new option:--data-raw - allow to specify user agent
new options:-A,--user-agent - allow to fail with and without output of response body
new options:-f,--fail,--fail-with-body
- use
-kfor insecure operation to match curl's CLI API
(-Kwas used before)
- allow to specify minimum used TLS version
new options:-1,--tlvs1,--tlsv1.0.--tlsv1.1,--tlsv1.2,--tlsv1.3
Note that rustls is used, when--tlsv1.3is specified, otherwise native TLS is used. - allow HTTPS-only mode
new option:--proto
Note that--protouses the same syntax as the respectivecurloption, but is used to determine if HTTPS-only mode can be used. It does not forbit HTTPS requests, when on HTTP is active.
- allow HTTP PUT request method
Initial version.