You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,29 @@
1
1
# Changelog
2
2
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)
0 commit comments