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 1
1
# Changelog
2
2
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
+
3
26
## v4.6.1 - 2021-09-26
4
27
5
28
** Enhancements**
Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ const (
242
242
243
243
const (
244
244
// Version of Echo
245
- Version = "4.6.1 "
245
+ Version = "4.6.3 "
246
246
website = "https://echo.labstack.com"
247
247
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
248
248
banner = `
You can’t perform that action at this time.
0 commit comments