mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
Bumped v4.1.5
Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
parent
64c6d92295
commit
5d2c33ad5d
2
echo.go
2
echo.go
@ -224,7 +224,7 @@ const (
|
||||
|
||||
const (
|
||||
// Version of Echo
|
||||
Version = "4.1.4"
|
||||
Version = "4.1.5"
|
||||
website = "https://echo.labstack.com"
|
||||
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
|
||||
banner = `
|
||||
|
7
group.go
7
group.go
@ -25,11 +25,8 @@ func (g *Group) Use(middleware ...MiddlewareFunc) {
|
||||
}
|
||||
// Allow all requests to reach the group as they might get dropped if router
|
||||
// doesn't find a match, making none of the group middleware process.
|
||||
for _, p := range []string{"", "/*"} {
|
||||
g.Any(p, func(c Context) error {
|
||||
return NotFoundHandler(c)
|
||||
})
|
||||
}
|
||||
g.Any("", NotFoundHandler)
|
||||
g.Any("/*", NotFoundHandler)
|
||||
}
|
||||
|
||||
// CONNECT implements `Echo#CONNECT()` for sub-routes within the Group.
|
||||
|
Loading…
Reference in New Issue
Block a user