#1776978473
[ dev | golang ]
Echo, the web framework I mainly use, recently got a new major release, v5. A big one I like is moving from a custom logger to the default log/slog for the stdlib. Most other breaking changes or not that interesting on their own but they create more room for future expansions. A lot of feature requests where parked until v5 so I hope that we will get a lot of nice things the coming year.
// New type safe API for parsing
id, err := echo.PathParam[int](c, "id")
user, err := echo.ContextGet[*User](c, "user")