File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v4.6.0 - 2021-09-20
4
+
5
+ Introduced a new [ request logger] ( https://github.com/labstack/echo/blob/master/middleware/request_logger.go ) middleware
6
+ to help with cases when you want to use some other logging library in your application.
7
+
8
+ ** Fixes**
9
+
10
+ * fix timeout middleware warning: superfluous response.WriteHeader [ #1905 ] ( https://github.com/labstack/echo/issues/1905 )
11
+
12
+ ** Enhancements**
13
+
14
+ * Add Cookie to KeyAuth middleware's KeyLookup [ #1929 ] ( https://github.com/labstack/echo/pull/1929 )
15
+ * JWT middleware should ignore case of auth scheme in request header [ #1951 ] ( https://github.com/labstack/echo/pull/1951 )
16
+ * Refactor default error handler to return first if response is already committed [ #1956 ] ( https://github.com/labstack/echo/pull/1956 )
17
+ * Added request logger middleware which helps to use custom logger library for logging requests. [ #1980 ] ( https://github.com/labstack/echo/pull/1980 )
18
+ * Allow escaping of colon in route path so Google Cloud API "custom methods" could be implemented [ #1988 ] ( https://github.com/labstack/echo/pull/1988 )
19
+
3
20
## v4.5.0 - 2021-08-01
4
21
5
22
** Important notes**
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ const (
241
241
242
242
const (
243
243
// Version of Echo
244
- Version = "4.5 .0"
244
+ Version = "4.6 .0"
245
245
website = "https://echo.labstack.com"
246
246
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
247
247
banner = `
You can’t perform that action at this time.
0 commit comments