From c6dc3c5760cae621c55b0117bfd11126f87d239c Mon Sep 17 00:00:00 2001 From: toim Date: Mon, 2 Feb 2026 19:59:39 +0200 Subject: [PATCH] Changelog for version 5.0.2 --- CHANGELOG.md | 7 +++++++ version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b06b433f..8d7cc4afd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v5.0.2 - 2026-02-02 + +**Security** + +* Fix Static middleware with `config.Browse=true` lists all files/subfolders from `config.Filesystem` root and not starting from `config.Root` in https://github.com/labstack/echo/pull/2887 + + ## 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 diff --git a/version.go b/version.go index b06982d48..d05562626 100644 --- a/version.go +++ b/version.go @@ -5,5 +5,5 @@ package echo const ( // Version of Echo - Version = "5.0.1" + Version = "5.0.2" )