fetch 0.3.0
Notes
v0.3.0
New Features
- add verbosity options
-s
: Silent mode (don't print any additional output)-S
: print error messages, even if-s
is 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
Fixes
- use
-k
for insecure operation to match curl's CLI API
(-K
was used before)
Older Versions
v0.2.0
New Features
- 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.3
is specified, otherwise native TLS is used. - allow HTTPS-only mode
new option:--proto
Note that--proto
uses the same syntax as the respectivecurl
option, but is used
to determine if HTTPS-only mode can be used. It does not forbit HTTPS requests, when
on HTTP is active.
v0.1.1
Bugfixes
- allow HTTP PUT request method
v0.1.0
Initial version.
What's Changed
- add verbosity options by @falk-werner in #7
- fix: use -k for insecure operation instead of -K by @falk-werner in #8
- add -i, --include option to include http response headers in the output by @falk-werner in #9
- allow files as request body using '@' as prefix of -d option by @falk-werner in #10
- allow to specify user agent by @falk-werner in #11
- set focus of notes to latest version by @falk-werner in #12
Full Changelog: v0.2.0...v0.3.0