Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ package echo

const (
// Version of Echo
Version = "5.0.3"
Version = "5.0.4"
)
Loading