File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v4.6.3 - 2022-01-10
4+
5+ ** Fixes**
6+
7+ * Fixed Echo version number in greeting message which was not incremented to ` 4.6.2 ` [ #2066 ] ( https://github.com/labstack/echo/issues/2066 )
8+
9+
10+ ## v4.6.2 - 2022-01-08
11+
12+ ** Fixes**
13+
14+ * Fixed route containing escaped colon should be matchable but is not matched to request path [ #2047 ] ( https://github.com/labstack/echo/pull/2047 )
15+ * Fixed a problem that returned wrong content-encoding when the gzip compressed content was empty. [ #1921 ] ( https://github.com/labstack/echo/pull/1921 )
16+ * Update (test) dependencies [ #2021 ] ( https://github.com/labstack/echo/pull/2021 )
17+
18+
19+ ** Enhancements**
20+
21+ * Add support for configurable target header for the request_id middleware [ #2040 ] ( https://github.com/labstack/echo/pull/2040 )
22+ * Change decompress middleware to use stream decompression instead of buffering [ #2018 ] ( https://github.com/labstack/echo/pull/2018 )
23+ * Documentation updates
24+
25+
326## v4.6.1 - 2021-09-26
427
528** Enhancements**
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ const (
246246
247247const (
248248 // Version of Echo
249- Version = "4.6.1 "
249+ Version = "4.6.3 "
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