File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changes
2
2
3
3
## Unreleased - 2021-xx-xx
4
- * ` Path::add ` and ` add_static ` takes ` impl Into<Cow<'static, str>> ` [ #345 ]
5
- * When matching URL parameters, ` %25 ` is kept in the percent-encoded form - no longer decoded to ` % ` . [ #357 ]
6
- * Fixed a bug where the ` Path ` extractor returns unsafe malformed string due to malformed URL. [ #359 ]
7
- * Path tail patterns now match ` '\n' ` in request URL. [ #360 ]
4
+
5
+
6
+ ## 0.3.0 - 2021-06-06
7
+ * When matching path parameters, ` %25 ` is now kept in the percent-encoded form; no longer decoded to ` % ` . [ #357 ]
8
+ * Path tail patterns now match new lines (` \n ` ) in request URL. [ #360 ]
9
+ * Fixed a safety bug where ` Path ` could return a malformed string after percent decoding. [ #359 ]
10
+ * Methods ` Path::{add, add_static} ` now take ` impl Into<Cow<'static, str>> ` . [ #345 ]
8
11
9
12
[ #345 ] : https://github.com/actix/actix-net/pull/345
10
13
[ #357 ] : https://github.com/actix/actix-net/pull/357
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " actix-router"
3
- version = " 0.2.7 "
3
+ version = " 0.3.0 "
4
4
authors = [" Nikolay Kim <fafhrd91@gmail.com>" ]
5
5
description = " Resource path matching library"
6
6
keywords = [" actix" , " router" , " routing" ]
7
- homepage = " https://actix.rs"
8
- repository = " https://github.com/actix/actix-net.git"
9
- documentation = " https://docs.rs/actix-router"
7
+ repository = " https://github.com/actix/actix-net"
10
8
license = " MIT OR Apache-2.0"
11
9
edition = " 2018"
12
10
You can’t perform that action at this time.
0 commit comments