1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-02-07 14:44:24 +01:00
actix-net/actix-router/CHANGES.md

112 lines
3.4 KiB
Markdown
Raw Normal View History

2019-03-09 14:38:08 -08:00
# Changes
2021-01-03 04:39:37 +00:00
## Unreleased - 2021-xx-xx
2021-07-20 07:43:50 +01:00
## 0.5.0-beta.1 - 2021-07-20
2021-07-19 22:37:54 +01:00
* Fix a bug in multi-patterns where static patterns are interpreted as regex. [#366]
* Introduce `ResourceDef::pattern_iter` to get an iterator over all patterns in a multi-pattern resource. [#373]
* Fix segment interpolation leaving `Path` in unintended state after matching. [#368]
* Fix `ResourceDef` `PartialEq` implementation. [#373]
2021-07-19 22:37:54 +01:00
* Re-work `IntoPatterns` trait, adding a `Patterns` enum. [#372]
* Implement `IntoPatterns` for `bytestring::ByteString`. [#372]
* Rename `Path::{len => segment_count}` to be more descriptive of it's purpose. [#370]
2021-07-19 22:37:54 +01:00
* Rename `ResourceDef::{resource_path => resource_path_from_iter}`. [#371]
* `ResourceDef::resource_path_from_iter` now takes an `IntoIterator`. [#373]
* Rename `ResourceDef::{resource_path_named => resource_path_from_map}`. [#371]
* Rename `ResourceDef::{is_prefix_match => find_match}`. [#373]
* Rename `ResourceDef::{match_path => capture_match_info}`. [#373]
* Rename `ResourceDef::{match_path_checked => capture_match_info_fn}`. [#373]
* Remove `ResourceDef::name_mut` and introduce `ResourceDef::set_name`. [#373]
* Rename `Router::{*_checked => *_fn}`. [#373]
* Return type of `ResourceDef::name` is now `Option<&str>`. [#373]
* Return type of `ResourceDef::pattern` is now `Option<&str>`. [#373]
[#368]: https://github.com/actix/actix-net/pull/368
[#366]: https://github.com/actix/actix-net/pull/366
[#368]: https://github.com/actix/actix-net/pull/368
[#370]: https://github.com/actix/actix-net/pull/370
[#371]: https://github.com/actix/actix-net/pull/371
[#372]: https://github.com/actix/actix-net/pull/372
2021-07-19 22:37:54 +01:00
[#373]: https://github.com/actix/actix-net/pull/373
2021-06-06 18:43:22 +01:00
2021-06-06 18:48:27 +01:00
## 0.4.0 - 2021-06-06
2021-06-06 18:43:22 +01:00
* When matching path parameters, `%25` is now kept in the percent-encoded form; no longer decoded to `%`. [#357]
* Path tail patterns now match new lines (`\n`) in request URL. [#360]
* Fixed a safety bug where `Path` could return a malformed string after percent decoding. [#359]
* Methods `Path::{add, add_static}` now take `impl Into<Cow<'static, str>>`. [#345]
2021-06-05 19:34:16 +03:00
2021-06-05 21:24:30 +03:00
[#345]: https://github.com/actix/actix-net/pull/345
2021-06-05 19:34:16 +03:00
[#357]: https://github.com/actix/actix-net/pull/357
[#359]: https://github.com/actix/actix-net/pull/359
[#360]: https://github.com/actix/actix-net/pull/360
2021-02-06 19:50:48 +00:00
2021-06-08 17:48:30 +01:00
2021-06-06 18:48:27 +01:00
## 0.3.0 - 2019-12-31
* Version was yanked previously. See https://crates.io/crates/actix-router/0.3.0
2021-02-06 19:50:48 +00:00
## 0.2.7 - 2021-02-06
* Add `Router::recognize_checked` [#247]
[#247]: https://github.com/actix/actix-net/pull/247
2021-06-05 21:24:30 +03:00
2021-01-09 14:18:20 +00:00
## 0.2.6 - 2021-01-09
* Use `bytestring` version range compatible with Bytes v1.0. [#246]
[#246]: https://github.com/actix/actix-net/pull/246
2020-09-21 22:46:59 +01:00
## 0.2.5 - 2020-09-20
* Fix `from_hex()` method
2020-09-21 22:46:59 +01:00
## 0.2.4 - 2019-12-31
* Add `ResourceDef::resource_path_named()` path generation method
2019-12-31 12:04:35 +06:00
2019-12-25 21:34:14 +04:00
2020-09-21 22:46:59 +01:00
## 0.2.3 - 2019-12-25
2019-12-25 21:34:14 +04:00
* Add impl `IntoPattern` for `&String`
2020-09-21 22:46:59 +01:00
## 0.2.2 - 2019-12-25
* Use `IntoPattern` for `RouterBuilder::path()`
2019-12-25 15:10:01 +04:00
2020-09-21 22:46:59 +01:00
## 0.2.1 - 2019-12-25
2019-12-25 19:54:20 +04:00
* Add `IntoPattern` trait
2019-12-25 15:10:01 +04:00
* Add multi-pattern resources
2019-12-05 16:40:24 +06:00
2020-09-21 22:46:59 +01:00
## 0.2.0 - 2019-12-07
2019-12-05 16:40:24 +06:00
* Update http to 0.2
* Update regex to 1.3
2019-12-07 11:04:53 +06:00
* Use bytestring instead of string
2019-05-15 10:29:10 -07:00
2020-09-21 22:46:59 +01:00
## 0.1.5 - 2019-05-15
2019-05-15 10:29:10 -07:00
* Remove debug prints
2019-05-15 10:21:29 -07:00
2020-09-21 22:46:59 +01:00
## 0.1.4 - 2019-05-15
2019-05-15 10:21:29 -07:00
* Fix checked resource match
2019-04-22 21:19:22 -07:00
2020-09-21 22:46:59 +01:00
## 0.1.3 - 2019-04-22
2019-04-22 21:19:22 -07:00
* Added support for `remainder match` (i.e "/path/{tail}*")
2020-09-21 22:46:59 +01:00
## 0.1.2 - 2019-04-07
* Export `Quoter` type
* Allow to reset `Path` instance
2020-09-21 22:46:59 +01:00
## 0.1.1 - 2019-04-03
* Get dynamic segment by name instead of iterator.
2019-03-09 14:38:08 -08:00
2020-09-21 22:46:59 +01:00
## 0.1.0 - 2019-03-09
2019-03-09 14:38:08 -08:00
* Initial release