From 7528290f5f4ba373eb6ea02adf08313428a04d37 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 6 Jun 2021 04:02:53 +0100 Subject: [PATCH] update changelog --- actix-router/CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-router/CHANGES.md b/actix-router/CHANGES.md index 71b8ce9a..f8b63b6d 100644 --- a/actix-router/CHANGES.md +++ b/actix-router/CHANGES.md @@ -4,7 +4,7 @@ ## 0.3.0 - 2021-06-06 -* When matching URL parameters, `%25` is kept in the percent-encoded form; no longer decoded to `%`. [#357] +* 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>`. [#345]