From 35ce0a395efab3d2e5924ad626d071adea0b290b Mon Sep 17 00:00:00 2001 From: Lily Mara Date: Mon, 19 Jul 2021 17:30:49 -0700 Subject: [PATCH] fixup! Add `ServiceConfig::default_service` --- CHANGES.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 88295ec12..16045ca3d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,8 +3,10 @@ ## Unreleased - 2021-xx-xx ### Added * Re-export actix-service `ServiceFactory` in `dev` module. [#2325] +* Add `ServiceConfig::default_service`. [#2338] [#2325]: https://github.com/actix/actix-web/pull/2325 +[#2338]: https://github.com/actix/actix-web/pull/2338 ## 4.0.0-beta.8 - 2021-06-26 @@ -169,7 +171,7 @@ ### Removed * Public modules `middleware::{normalize, err_handlers}`. All necessary middleware structs are now exposed directly by the `middleware` module. -* Remove `actix-threadpool` as dependency. `actix_threadpool::BlockingError` error type can be imported +* Remove `actix-threadpool` as dependency. `actix_threadpool::BlockingError` error type can be imported from `actix_web::error` module. [#1878] [#1812]: https://github.com/actix/actix-web/pull/1812 @@ -262,7 +264,7 @@ ## 3.0.0-beta.4 - 2020-09-09 ### Added -* `middleware::NormalizePath` now has configurable behavior for either always having a trailing +* `middleware::NormalizePath` now has configurable behavior for either always having a trailing slash, or as the new addition, always trimming trailing slashes. [#1639] ### Changed