From b34692a82fcbc05cac2a83c87fec3f86c6671cd9 Mon Sep 17 00:00:00 2001 From: toim Date: Sun, 15 Feb 2026 17:44:43 +0200 Subject: [PATCH] Add changelog for v5.0.4 release --- CHANGELOG.md | 13 +++++++++++++ version.go | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37d1adb66..a15e69cff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## v5.0.4 - 2026-02-15 + +**Enhancements** + +* Remove unused import 'errors' from README example by @kumapower17 in https://github.com/labstack/echo/pull/2889 +* Fix Graceful shutdown: after `http.Server.Serve` returns we need to wait for graceful shutdown goroutine to finish by @aldas in https://github.com/labstack/echo/pull/2898 +* Update location of oapi-codegen in README by @mromaszewicz in https://github.com/labstack/echo/pull/2896 +* Add Go 1.26 to CI flow by @aldas in https://github.com/labstack/echo/pull/2899 +* Add new function `echo.StatusCode` by @suwakei in https://github.com/labstack/echo/pull/2892 +* CSRF: support older token-based CSRF protection handler that want to render token into template by @aldas in https://github.com/labstack/echo/pull/2894 +* Add `echo.ResolveResponseStatus` function to help middleware/handlers determine HTTP status code and echo.Response by @aldas in https://github.com/labstack/echo/pull/2900 + + ## v5.0.3 - 2026-02-06 **Security** diff --git a/version.go b/version.go index 527adb394..739a04b97 100644 --- a/version.go +++ b/version.go @@ -5,5 +5,5 @@ package echo const ( // Version of Echo - Version = "5.0.3" + Version = "5.0.4" )