fix(deps): update module github.com/labstack/echo/v4 to v4.8.0 #1233

Merged
konrad merged 1 commits from renovate/github.com-labstack-echo-v4-4.x into main 2022-08-11 10:26:16 +00:00
Member

This PR contains the following updates:

Package Type Update Change
github.com/labstack/echo/v4 require minor v4.7.2 -> v4.8.0

Release Notes

labstack/echo

v4.8.0

Compare Source

Most notable things

You can now add any arbitrary HTTP method type as a route #​2237

e.Add("COPY", "/*", func(c echo.Context) error 
  return c.String(http.StatusOK, "OK COPY")
})

You can add custom 404 handler for specific paths #​2217

e.RouteNotFound("/*", func(c echo.Context) error { return c.NoContent(http.StatusNotFound) })

g := e.Group("/images")
g.RouteNotFound("/*", func(c echo.Context) error { return c.NoContent(http.StatusNotFound) })

Enhancements

  • Add new value binding methods (UnixTimeMilli,TextUnmarshaler,JSONUnmarshaler) to Valuebinder #​2127
  • Refactor: body_limit middleware unit test #​2145
  • Refactor: Timeout mw: rework how test waits for timeout. #​2187
  • BasicAuth middleware returns 500 InternalServerError on invalid base64 strings but should return 400 #​2191
  • Refactor: duplicated findStaticChild process at findChildWithLabel #​2176
  • Allow different param names in different methods with same path scheme #​2209
  • Add support for registering handlers for different 404 routes #​2217
  • Middlewares should use errors.As() instead of type assertion on HTTPError #​2227
  • Allow arbitrary HTTP method types to be added as routes #​2237

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/labstack/echo/v4](https://github.com/labstack/echo) | require | minor | `v4.7.2` -> `v4.8.0` | --- ### Release Notes <details> <summary>labstack/echo</summary> ### [`v4.8.0`](https://github.com/labstack/echo/blob/HEAD/CHANGELOG.md#v480---2022-08-10) [Compare Source](https://github.com/labstack/echo/compare/v4.7.2...v4.8.0) **Most notable things** You can now add any arbitrary HTTP method type as a route [#&#8203;2237](https://github.com/labstack/echo/pull/2237) ```go e.Add("COPY", "/*", func(c echo.Context) error return c.String(http.StatusOK, "OK COPY") }) ``` You can add custom 404 handler for specific paths [#&#8203;2217](https://github.com/labstack/echo/pull/2217) ```go e.RouteNotFound("/*", func(c echo.Context) error { return c.NoContent(http.StatusNotFound) }) g := e.Group("/images") g.RouteNotFound("/*", func(c echo.Context) error { return c.NoContent(http.StatusNotFound) }) ``` **Enhancements** - Add new value binding methods (UnixTimeMilli,TextUnmarshaler,JSONUnmarshaler) to Valuebinder [#&#8203;2127](https://github.com/labstack/echo/pull/2127) - Refactor: body_limit middleware unit test [#&#8203;2145](https://github.com/labstack/echo/pull/2145) - Refactor: Timeout mw: rework how test waits for timeout. [#&#8203;2187](https://github.com/labstack/echo/pull/2187) - BasicAuth middleware returns 500 InternalServerError on invalid base64 strings but should return 400 [#&#8203;2191](https://github.com/labstack/echo/pull/2191) - Refactor: duplicated findStaticChild process at findChildWithLabel [#&#8203;2176](https://github.com/labstack/echo/pull/2176) - Allow different param names in different methods with same path scheme [#&#8203;2209](https://github.com/labstack/echo/pull/2209) - Add support for registering handlers for different 404 routes [#&#8203;2217](https://github.com/labstack/echo/pull/2217) - Middlewares should use errors.As() instead of type assertion on HTTPError [#&#8203;2227](https://github.com/labstack/echo/pull/2227) - Allow arbitrary HTTP method types to be added as routes [#&#8203;2237](https://github.com/labstack/echo/pull/2237) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNTMuNCIsInVwZGF0ZWRJblZlciI6IjMyLjE1My40In0=-->
renovate added the
dependencies
label 2022-08-10 21:01:00 +00:00
renovate added 1 commit 2022-08-10 21:01:00 +00:00
konrad merged commit 2e5c91efdf into main 2022-08-11 10:26:16 +00:00
konrad deleted branch renovate/github.com-labstack-echo-v4-4.x 2022-08-11 10:26:16 +00:00
Sign in to join this conversation.
No reviewers
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: vikunja/vikunja#1233
No description provided.