Releases: labstack/echo
Releases · labstack/echo
Group separated from Echo
- Better handling for WebSocket in middleware
- Separated Group from Echo to limit API
- Updated docs
Encapsulation
Encapsulated Context's fields and exposed them via public functions.
Echo.HandlerFunc changed
Echo.HandlerFunc changed from func (*Context) *HTTPError to func (*Context) error
Smashing new features
- Added following middleware
- Panic recover
- Basic auth
- Strip trailing slash
- Redirect to slash
- Gzip
- Support to serve favicon
- Enhanced priority in router
- Wrapped
Flush,HijackandCloseNotifyfunctions in response. - Fixed issues: #51, #53, #57, #63, #65, #67, #68
- Dropped
NotFoundHandlerin favor ofHTTPErrorHandler
Centralized HTTP error handling
- Centralized HTTP error handling http://labstack.github.io/echo/guide/#error-handling
- Default handler function changed from
func(*Context) errortofunc(*Context) *echo.HTTPError. - Most of the response helper functions now return
*echo.HTTPErrorhttp://labstack.github.io/echo/guide/#response
- Default handler function changed from
- Fixed issues #46, #49 and #50.
- Added
echo.HandlerFuncto the list of supported handlers. - More documentation.
v0.0.11
v0.0.10: Fixed a typo
- Moved middleware package to root
- HandlerFunc signature change to
func(*Context) error - Support for handlers which return error for central error handling
- Introduced centralized HTTP error handler
- New website for the project
- Dropped support for
func(http.Handler) http.Handlermiddleware
v0.0.9
v0.0.8
v0.0.7: New renderer interface #21
Signed-off-by: Vishal Rana <[email protected]>