diff --git a/actix-router/CHANGES.md b/actix-router/CHANGES.md index 09dc94197..355f13fc8 100644 --- a/actix-router/CHANGES.md +++ b/actix-router/CHANGES.md @@ -2,6 +2,10 @@ ## Unreleased +- Add support for extracting multi-component path params into a sequence (Vec, tuple, ...). [#3432] + +[#3432]: https://github.com/actix/actix-web/pull/3432 + ## 0.5.4 - Minimum supported Rust version (MSRV) is now 1.88. @@ -14,7 +18,6 @@ ## 0.5.3 - Add `unicode` crate feature (on-by-default) to switch between `regex` and `regex-lite` as a trade-off between full unicode support and binary size. -- Add support for extracting multi-component path params into a sequence (Vec, tuple, ...) - Minimum supported Rust version (MSRV) is now 1.72. ## 0.5.2 diff --git a/actix-router/src/de.rs b/actix-router/src/de.rs index 073bdbeaf..b13149261 100644 --- a/actix-router/src/de.rs +++ b/actix-router/src/de.rs @@ -477,7 +477,6 @@ impl<'de> Deserializer<'de> for Value<'de> { } } - unsupported_type!(deserialize_seq, "any"); unsupported_type!(deserialize_map, "map"); unsupported_type!(deserialize_identifier, "identifier"); } diff --git a/actix-web/src/types/path.rs b/actix-web/src/types/path.rs index ab6d57323..8bae70755 100644 --- a/actix-web/src/types/path.rs +++ b/actix-web/src/types/path.rs @@ -55,7 +55,7 @@ use crate::{ /// ``` /// /// Segments matching multiple path components can be deserialized -/// into a Vec<_> to percent-decode the components individually. Empty +/// into a `Vec<_>` to percent-decode the components individually. Empty /// path components are ignored. /// /// ```