From 0954d6e36ec3a98e7244d7ebd4781eeeda97713a Mon Sep 17 00:00:00 2001 From: toim Date: Wed, 28 Jan 2026 22:59:16 +0200 Subject: [PATCH] Changelog for v5.0.1 release --- CHANGELOG.md | 8 ++++++++ version.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52449609d..9b06b433f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v5.0.1 - 2026-01-28 + +* Panic MW: will now return a custom PanicStackError with stack trace by @aldas in https://github.com/labstack/echo/pull/2871 +* Docs: add missing err parameter to DenyHandler example by @cgalibern in https://github.com/labstack/echo/pull/2878 +* improve: improve websocket checks in IsWebSocket() [per RFC 6455] by @raju-mechatronics in https://github.com/labstack/echo/pull/2875 +* fix: Context.Json() should not send status code before serialization is complete by @aldas in https://github.com/labstack/echo/pull/2877 + + ## v5.0.0 - 2026-01-18 Echo `v5` is maintenance release with **major breaking changes** diff --git a/version.go b/version.go index 231c93287..b06982d48 100644 --- a/version.go +++ b/version.go @@ -5,5 +5,5 @@ package echo const ( // Version of Echo - Version = "5.0.0" + Version = "5.0.1" )