Skip to content

Commit 4651c7a

Browse files
authored
Update version and changelog for 4.6.0 (#1990)
1 parent 6a85f48 commit 4651c7a

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

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+
320
## v4.5.0 - 2021-08-01
421

522
**Important notes**

echo.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ const (
241241

242242
const (
243243
// Version of Echo
244-
Version = "4.5.0"
244+
Version = "4.6.0"
245245
website = "https://echo.labstack.com"
246246
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
247247
banner = `

0 commit comments

Comments
 (0)