Overview
This is a quick patch release with an important fix for the accept
setting in the configuration, which
allows overwriting the accepted HTTP status codes.
We re-enabled support for integers:
accept = [200, 203, 429]
You can also mix and match strings (e.g. for ranges) and integers now:
accept = [200, "203", "301..=304", 429]
Ranges behave just like other ranges in Rust. See Range expression docs.
Special thanks to @Techassi for the quick turnaround on this one. 👍
What's Changed
Miscellaneous and Others 🔔
- Exclude example TLDs from RFC 2606 by @mre in #1335
- chore: run cargo update by @kxxt in #1337 (awesome PR number)
- fix(test_cookie_jar): use google.com/ncr by @kxxt in #1336
- fix: Add accept option to merged config by @Techassi in #1344
- feat: Expand serde deserialize impl by @Techassi in #1345
Full Changelog: v0.14.0...v0.14.1