File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v4.7.2 - 2022-03-16
4+
5+ ** Fixes**
6+
7+ * Fix nil pointer exception when calling Start again after address binding error [ #2131 ] ( https://github.com/labstack/echo/pull/2131 )
8+ * Fix CSRF middleware not being able to extract token from multipart/form-data form [ #2136 ] ( https://github.com/labstack/echo/pull/2136 )
9+ * Fix Timeout middleware write race [ #2126 ] ( https://github.com/labstack/echo/pull/2126 )
10+
11+ ** Enhancements**
12+
13+ * Recover middleware should not log panic for aborted handler [ #2134 ] ( https://github.com/labstack/echo/pull/2134 )
14+
15+
316## v4.7.1 - 2022-03-13
417
518** Fixes**
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ const (
246246
247247const (
248248 // Version of Echo
249- Version = "4.7.1 "
249+ Version = "4.7.2 "
250250 website = "https://echo.labstack.com"
251251 // http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
252252 banner = `
You can’t perform that action at this time.
0 commit comments