Skip to content

Commit 2acb24a

Browse files
committed
Update version and changelog for 4.3.0
1 parent 1aef300 commit 2acb24a

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## v4.3.0 - 2021-05-08
4+
5+
**Important notes**
6+
7+
* Route matching has improvements for following cases:
8+
1. Correctly match routes with parameter part as last part of route (with trailing backslash)
9+
2. Considering handlers when resolving routes and search for matching http method handler
10+
* Echo minimal Go version is now 1.13.
11+
12+
**Fixes**
13+
14+
* When url ends with slash first param route is the match [#1804](https://github.com/labstack/echo/pull/1812)
15+
* Router should check if node is suitable as matching route by path+method and if not then continue search in tree [#1808](https://github.com/labstack/echo/issues/1808)
16+
* Fix timeout middleware not writing response correctly when handler panics [#1864](https://github.com/labstack/echo/pull/1864)
17+
* Fix binder not working with embedded pointer structs [#1861](https://github.com/labstack/echo/pull/1861)
18+
* Add Go 1.16 to CI and drop 1.12 specific code [#1850](https://github.com/labstack/echo/pull/1850)
19+
20+
**Enhancements**
21+
22+
* Make KeyFunc public in JWT middleware [#1756](https://github.com/labstack/echo/pull/1756)
23+
* Add support for optional filesystem to the static middleware [#1797](https://github.com/labstack/echo/pull/1797)
24+
* Add a custom error handler to key-auth middleware [#1847](https://github.com/labstack/echo/pull/1847)
25+
* Allow JWT token to be looked up from multiple sources [#1845](https://github.com/labstack/echo/pull/1845)
26+
327
## v4.2.2 - 2021-04-07
428

529
**Fixes**

echo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ const (
234234

235235
const (
236236
// Version of Echo
237-
Version = "4.2.2"
237+
Version = "4.3.0"
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)