[PR #232] [CLOSED] fix(deps): bump github.com/labstack/echo/v4 from 4.7.2 to 4.8.0 #282

Closed
opened 2026-03-04 00:25:02 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/SignTools/SignTools/pull/232
Author: @dependabot[bot]
Created: 8/11/2022
Status: Closed

Base: masterHead: dependabot/go_modules/github.com/labstack/echo/v4-4.8.0


📝 Commits (1)

  • 291075d fix(deps): bump github.com/labstack/echo/v4 from 4.7.2 to 4.8.0

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 go.mod (+1 -1)
📝 go.sum (+2 -2)

📄 Description

Bumps github.com/labstack/echo/v4 from 4.7.2 to 4.8.0.

Release notes

Sourced from github.com/labstack/echo/v4's releases.

v4.8.0

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
Changelog

Sourced from github.com/labstack/echo/v4's changelog.

v4.8.0 - 2022-08-10

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
Commits
  • d48197d Changelog for 4.8.0
  • cba12a5 Allow arbitrary HTTP method types to be added as routes
  • a327884 add:README.md-Third-party middlewares-github.com/go-woo/protoc-gen-echo
  • 61422dd Update CI-flow (Go 1.19 +deps)
  • a9879ff Middlewares should use errors.As() instead of type assertion on HTTPError
  • 70acd57 Fix case when routeNotFound handler is lost when new route is added to the ro...
  • 690e339 Add support for registering handlers for 404 routes (#2217)
  • 9bf1e3c Allow different param names in different methods with same path scheme (#2209)
  • ddb66e1 Add logger middleware template variables: ${time_unix_milli} and `${time_un...
  • 0644cd6 fix: duplicated findStaticChild process at findChildWithLabel (#2176)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/SignTools/SignTools/pull/232 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/11/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/labstack/echo/v4-4.8.0` --- ### 📝 Commits (1) - [`291075d`](https://github.com/SignTools/SignTools/commit/291075d8d74c395d7e0563acc7a35dd1f0eae277) fix(deps): bump github.com/labstack/echo/v4 from 4.7.2 to 4.8.0 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -1) 📝 `go.sum` (+2 -2) </details> ### 📄 Description Bumps [github.com/labstack/echo/v4](https://github.com/labstack/echo) from 4.7.2 to 4.8.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/labstack/echo/releases">github.com/labstack/echo/v4's releases</a>.</em></p> <blockquote> <h2>v4.8.0</h2> <p><strong>Most notable things</strong></p> <p>You can now add any arbitrary HTTP method type as a route <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2237">#2237</a></p> <pre lang="go"><code>e.Add(&quot;COPY&quot;, &quot;/*&quot;, func(c echo.Context) error return c.String(http.StatusOK, &quot;OK COPY&quot;) }) </code></pre> <p>You can add custom 404 handler for specific paths <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2217">#2217</a></p> <pre lang="go"><code>e.RouteNotFound(&quot;/*&quot;, func(c echo.Context) error { return c.NoContent(http.StatusNotFound) }) <p>g := e.Group(&quot;/images&quot;) g.RouteNotFound(&quot;/*&quot;, func(c echo.Context) error { return c.NoContent(http.StatusNotFound) }) </code></pre></p> <p><strong>Enhancements</strong></p> <ul> <li>Add new value binding methods (UnixTimeMilli,TextUnmarshaler,JSONUnmarshaler) to Valuebinder <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2127">#2127</a></li> <li>Refactor: body_limit middleware unit test <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2145">#2145</a></li> <li>Refactor: Timeout mw: rework how test waits for timeout. <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2187">#2187</a></li> <li>BasicAuth middleware returns 500 InternalServerError on invalid base64 strings but should return 400 <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2191">#2191</a></li> <li>Refactor: duplicated findStaticChild process at findChildWithLabel <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2176">#2176</a></li> <li>Allow different param names in different methods with same path scheme <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2209">#2209</a></li> <li>Add support for registering handlers for different 404 routes <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2217">#2217</a></li> <li>Middlewares should use errors.As() instead of type assertion on HTTPError <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2227">#2227</a></li> <li>Allow arbitrary HTTP method types to be added as routes <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2237">#2237</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/labstack/echo/blob/master/CHANGELOG.md">github.com/labstack/echo/v4's changelog</a>.</em></p> <blockquote> <h2>v4.8.0 - 2022-08-10</h2> <p><strong>Most notable things</strong></p> <p>You can now add any arbitrary HTTP method type as a route <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2237">#2237</a></p> <pre lang="go"><code>e.Add(&quot;COPY&quot;, &quot;/*&quot;, func(c echo.Context) error return c.String(http.StatusOK, &quot;OK COPY&quot;) }) </code></pre> <p>You can add custom 404 handler for specific paths <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2217">#2217</a></p> <pre lang="go"><code>e.RouteNotFound(&quot;/*&quot;, func(c echo.Context) error { return c.NoContent(http.StatusNotFound) }) <p>g := e.Group(&quot;/images&quot;) g.RouteNotFound(&quot;/*&quot;, func(c echo.Context) error { return c.NoContent(http.StatusNotFound) }) </code></pre></p> <p><strong>Enhancements</strong></p> <ul> <li>Add new value binding methods (UnixTimeMilli,TextUnmarshaler,JSONUnmarshaler) to Valuebinder <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2127">#2127</a></li> <li>Refactor: body_limit middleware unit test <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2145">#2145</a></li> <li>Refactor: Timeout mw: rework how test waits for timeout. <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2187">#2187</a></li> <li>BasicAuth middleware returns 500 InternalServerError on invalid base64 strings but should return 400 <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2191">#2191</a></li> <li>Refactor: duplicated findStaticChild process at findChildWithLabel <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2176">#2176</a></li> <li>Allow different param names in different methods with same path scheme <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2209">#2209</a></li> <li>Add support for registering handlers for different 404 routes <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2217">#2217</a></li> <li>Middlewares should use errors.As() instead of type assertion on HTTPError <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2227">#2227</a></li> <li>Allow arbitrary HTTP method types to be added as routes <a href="https://github-redirect.dependabot.com/labstack/echo/pull/2237">#2237</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/labstack/echo/commit/d48197db7af19becf2363496493ed0e2a8d1caea"><code>d48197d</code></a> Changelog for 4.8.0</li> <li><a href="https://github.com/labstack/echo/commit/cba12a570e8caa1fafabc2d41afc97bd7a83d758"><code>cba12a5</code></a> Allow arbitrary HTTP method types to be added as routes</li> <li><a href="https://github.com/labstack/echo/commit/a327884b682cc1458580ac583e04dc610429b6fc"><code>a327884</code></a> add:README.md-Third-party middlewares-github.com/go-woo/protoc-gen-echo</li> <li><a href="https://github.com/labstack/echo/commit/61422dd7de9b0359708ff56b67099b91b5954c31"><code>61422dd</code></a> Update CI-flow (Go 1.19 +deps)</li> <li><a href="https://github.com/labstack/echo/commit/a9879ffa6b6fe73e43a0e062884f83eb959e6c1a"><code>a9879ff</code></a> Middlewares should use errors.As() instead of type assertion on HTTPError</li> <li><a href="https://github.com/labstack/echo/commit/70acd57105b15b2db18c730b52083a76d05babf7"><code>70acd57</code></a> Fix case when routeNotFound handler is lost when new route is added to the ro...</li> <li><a href="https://github.com/labstack/echo/commit/690e3392d984dcbdb9f41a7915ddc0d383311974"><code>690e339</code></a> Add support for registering handlers for 404 routes (<a href="https://github-redirect.dependabot.com/labstack/echo/issues/2217">#2217</a>)</li> <li><a href="https://github.com/labstack/echo/commit/9bf1e3c8ce6de029186945e4ee82f89f2e2cc661"><code>9bf1e3c</code></a> Allow different param names in different methods with same path scheme (<a href="https://github-redirect.dependabot.com/labstack/echo/issues/2209">#2209</a>)</li> <li><a href="https://github.com/labstack/echo/commit/ddb66e1ba272fe7580dae6f8543763bc4a760fbd"><code>ddb66e1</code></a> Add logger middleware template variables: <code>${time_unix_milli}</code> and `${time_un...</li> <li><a href="https://github.com/labstack/echo/commit/0644cd6ecdef4473c38c9f298a15512a47c8db42"><code>0644cd6</code></a> fix: duplicated findStaticChild process at findChildWithLabel (<a href="https://github-redirect.dependabot.com/labstack/echo/issues/2176">#2176</a>)</li> <li>Additional commits viewable in <a href="https://github.com/labstack/echo/compare/v4.7.2...v4.8.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/labstack/echo/v4&package-manager=go_modules&previous-version=4.7.2&new-version=4.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 00:25:02 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
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
starred/SignTools#282
No description provided.