Skip to content

Commit a97052e

Browse files
committed
Update version to v4.2.1
1 parent d6127fe commit a97052e

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

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

3+
## v4.2.1 - 2020-03-08
4+
5+
**Important notes**
6+
7+
Due to a datarace the config parameters for the newly added timeout middleware required a change.
8+
See the [docs](https://echo.labstack.com/middleware/timeout).
9+
A performance regression has been fixed, even bringing better performance than before for some routing scenarios.
10+
11+
**Fixes**
12+
13+
* Fix performance regression caused by path escaping (#1777, #1798, #1799, aldas)
14+
* Avoid context canceled errors (#1789, clwluvw)
15+
* Improve router to use on stack backtracking (#1791, aldas, stffabi)
16+
* Fix panic in timeout middleware not being not recovered and cause application crash (#1794, aldas)
17+
* Fix Echo.Serve() not serving on HTTP port correctly when TLSListener is used (#1785, #1793, aldas)
18+
* Apply go fmt (#1788, Le0tk0k)
19+
* Uses strings.Equalfold (#1790, rkilingr)
20+
* Improve code quality (#1792, withshubh)
21+
22+
This release was made possible by our **contributors**:
23+
aldas, clwluvw, lammel, Le0tk0k, maciej-jezierski, rkilingr, stffabi, withshubh
24+
325
## v4.2.0 - 2020-02-11
426

527
**Important notes**

echo.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ const (
234234

235235
const (
236236
// Version of Echo
237-
Version = "4.2.0"
237+
Version = "4.2.1"
238238
website = "https://echo.labstack.com"
239239
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
240240
banner = `

0 commit comments

Comments
 (0)