jcamiel
f82ed05d9a
Refacto for XML parsing.
...
Previously, the parser was rather raw: we processed the buffer bytes by bytes, checking if the buffer was a valid XML file.
Now, we use libxml SAX parser to detect the end of the XML.
2023-09-12 12:15:35 +00:00
jcamiel
d48dc7e296
Fix typo.
2023-09-11 13:31:55 +02:00
jcamiel
336ab101c8
Remove unused enum variant.
2023-09-11 11:32:25 +02:00
Fabrice Reix
915f539a4e
Fix parsing jsonpath slice
2023-09-11 09:00:26 +00:00
hurl-bot
91af068cb2
Update crates
2023-09-11 03:01:52 +00:00
jcamiel
b457ea8f30
Remove static lifetimes from parsing functions.
2023-09-08 15:43:34 +02:00
jcamiel
30657d84a9
Add more tests units on XML parser.
2023-09-08 13:50:57 +02:00
jcamiel
c2342b90cb
Use operator for equals predicate in tests.
2023-09-08 11:12:09 +02:00
jcamiel
35beab2c18
Fix deprecated calls.
2023-09-08 09:25:17 +02:00
hurl-bot
2eb22da885
Update crates
2023-09-08 03:02:02 +00:00
jcamiel
c56bc1380e
Print host architecture with --version
2023-09-07 15:45:52 +02:00
hurl-bot
025a453b97
Update crates
2023-09-06 03:01:56 +00:00
hurl-bot
7d8cc1edac
Update crates
2023-09-04 03:02:09 +00:00
hurl-bot
20c228db19
Update crates
2023-09-01 03:01:51 +00:00
Fabrice Reix
9e3a9ae3b2
Fix typos
2023-08-31 12:11:00 +02:00
Fabrice Reix
da233dbd7a
Fix clippy warnings
2023-08-31 11:36:52 +02:00
Fabrice Reix
1ddda4c86b
Update Rust to 1.72
2023-08-31 11:27:36 +02:00
hurl-bot
a1ddd2f82b
Update crates
2023-08-31 03:01:55 +00:00
hurl-bot
7aaf70ddac
Update crates
2023-08-29 03:02:38 +00:00
Philipp Paulweber
66d0daf4a2
Formatter: fixed missing delayy option kind
2023-08-27 16:15:37 +02:00
Philipp Paulweber
902652421d
Runner: provided request delay logic
2023-08-27 16:15:37 +02:00
Philipp Paulweber
bcaf19f842
Parser: support 'delay' options to define milliseconds request delays
2023-08-27 16:15:37 +02:00
apparentorder
7e476a44ae
Update crates (again)
2023-08-26 07:24:57 +02:00
apparentorder
12f8bcd5ea
Update crates (again)
2023-08-25 21:27:06 +02:00
apparentorder
e5a6a3a0ae
Update crates
2023-08-25 07:52:33 +02:00
apparentorder
1b7ae46360
fix formatting
2023-08-24 15:24:45 +02:00
apparentorder
78a45f1f33
when setting aws_sigv4, explicitly check for and report "unknown option" from libcurl
2023-08-24 15:18:54 +02:00
apparentorder
c1063f8d19
introduce HttpError::LibcurlUnknownOption to report unsupported libcurl options
2023-08-24 15:18:53 +02:00
apparentorder
56d4fa4485
Add the aws-sigv4
option to generate AWS SigV4 signed requests
...
AWS SigV4 support is available in curl since 7.75.0 (December 2020).
Add the necessary bits for Hurl to understand this option and pass
it on to libcurl, both as a command line option `--aws-sigv4` and
as a per-request option `aws-sigv4` in Hurlfiles.
Do not emit `Authorization: Basic` when aws-sigv4 is used, as this
would take priority over the `Authorization` header generated by libcurl.
Instead, explicitly set `username` and `password` options.
Suppress removal of the `Expect:` header when using aws-sigv4, as a
workaround for curl/curl#11664 .
Add a corresponding integration test.
2023-08-24 15:18:53 +02:00
apparentorder
58c4e0534f
allow alphanumeric instead of alphabetic in option() parsing
...
This change allows option names to contain digits, like in `aws-sigv4`.
2023-08-24 15:18:53 +02:00
hurl-bot
591e129469
Update crates
2023-08-18 12:21:50 +00:00
hurl-bot
cff89d91e2
Update crates
2023-08-17 11:44:38 +00:00
Fabrice Reix
cae200a77c
Support IPv4/IPv6 address for proxy option
2023-08-12 18:01:43 +02:00
Fabrice Reix
97ceb24e8b
Replace fail-at-end option with continue-on-error option
2023-08-12 08:20:17 +02:00
Fabrice Reix
4b83f77fa9
Fix standalone option for hurlfmt HTML output
2023-08-11 14:25:50 +02:00
jcamiel
17ae56d6db
Tweak http mod visibility.
2023-08-10 15:24:37 +02:00
jcamiel
a454a81cdd
Replace unwrap
with ?
.
...
We have implement conversion from curl::Error to hurl::HttpError so it's better to use `?` instead of unwrapping. It allow a better error managment, without crashing Hurl.
The format of the file has been changed but there is no code modification appart from `unwrap` to `?`.
2023-08-10 06:23:32 +00:00
Fabrice Reix
73759aa84b
Add clippy check manual_string_new
2023-08-08 15:59:20 +00:00
hurl-bot
b17f79af36
Update crates
2023-08-08 03:01:40 +00:00
hurl-bot
67351c9925
Update crates
2023-08-07 03:02:03 +00:00
hurl-bot
ab112204e7
Update crates
2023-08-06 03:01:53 +00:00
Fabrice Reix
bd2c886f25
Support empty BasicAuth section
2023-08-05 09:35:19 +02:00
jcamiel
54ba8dee22
Update tutorial with Movies Box.
2023-08-04 16:59:14 +02:00
hurl-bot
88e748b787
Update crates
2023-08-04 03:01:36 +00:00
jcamiel
bdd4ff7b14
Remove strict features flag (in favor of clippy check).
2023-08-03 18:21:33 +02:00
jcamiel
4072ea2c8a
Remove unnecessary empty structs.
2023-08-03 14:08:08 +02:00
hurl-bot
3a0795b4bc
Update crates
2023-08-03 03:01:44 +00:00
hurl-bot
f7d28c98e2
Update crates
2023-08-02 03:01:47 +00:00
hurl-bot
7aa3d0ed55
Update crates
2023-08-01 03:01:44 +00:00
Fabrice Reix
06c8da4d14
Fix Cookie Query Parsing error
2023-07-31 17:17:56 +02:00