From 0c5305c1744f2041b135d963c684c0a3369c6a42 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Sun, 30 Jul 2023 16:20:58 +0300 Subject: [PATCH] fixed incomplete sentence in the changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 114e69b4..f8d4d0cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,7 +59,7 @@ - `Hook.Add()` and `Hook.PreAdd` now returns a unique string identifier that could be used to remove the registered hook handler via `Hook.Remove(handlerId)`. - Changed the after* hooks to be called right before writing the user response, allowing users to return response errors from the after hooks. - There is also no longer need for returning explicitly `hook.StopPropagtion` when writing custom response body in a hook because. + There is also no longer need for returning explicitly `hook.StopPropagtion` when writing custom response body in a hook because we will skip the finalizer response body write if a response was already "committed". - ⚠️ Renamed `*Options{}` to `Config{}` for consistency and replaced the unnecessary pointers with their value equivalent to keep the applied configuration defaults isolated within their function calls: ```go