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 1
1
# Changelog
2
2
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
+
3
16
## v4.7.1 - 2022-03-13
4
17
5
18
** Fixes**
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ const (
246
246
247
247
const (
248
248
// Version of Echo
249
- Version = "4.7.1 "
249
+ Version = "4.7.2 "
250
250
website = "https://echo.labstack.com"
251
251
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
252
252
banner = `
You can’t perform that action at this time.
0 commit comments