Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/labstack/echo/v4 from 4.1.17 to 4.3.0 in /instrumentation/github.com/labstack/echo/otelecho #563

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 9, 2021

Bumps github.com/labstack/echo/v4 from 4.1.17 to 4.3.0.

Release notes

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

v4.3.0

Important notes

  • Route matching has improvements for following cases:
    1. Correctly match routes with parameter part as last part of route (with trailing backslash)
    2. Considering handlers when resolving routes and search for matching http method handler
  • Echo minimal Go version is now 1.13.

Fixes

  • When url ends with slash first param route is the match #1804
  • Router should check if node is suitable as matching route by path+method and if not then continue search in tree #1808
  • Fix timeout middleware not writing response correctly when handler panics #1864
  • Fix binder not working with embedded pointer structs #1861
  • Add Go 1.16 to CI and drop 1.12 specific code #1850

Enhancements

  • Make KeyFunc public in JWT middleware #1756
  • Add support for optional filesystem to the static middleware #1797
  • Add a custom error handler to key-auth middleware #1847
  • Allow JWT token to be looked up from multiple sources #1845

v4.2.2

Fixes

  • Allow proxy middleware to use query part in rewrite (#1802)
  • Fix timeout middleware not sending status code when handler returns an error (#1805)
  • Fix Bind() when target is array/slice and path/query params complains bind target not being struct (#1835)
  • Fix panic in redirect middleware on short host name (#1813)
  • Fix timeout middleware docs (#1836)

v4.2.1

Important notes

Due to a datarace the config parameters for the newly added timeout middleware required a change. See the docs. A performance regression has been fixed, even bringing better performance than before for some routing scenarios.

Fixes

  • Fix performance regression caused by path escaping (#1777, #1798, #1799, aldas)
  • Avoid context canceled errors (#1789, clwluvw)
  • Improve router to use on stack backtracking (#1791, aldas, stffabi)
  • Fix panic in timeout middleware not being not recovered and cause application crash (#1794, aldas)
  • Fix Echo.Serve() not serving on HTTP port correctly when TLSListener is used (#1785, #1793, aldas)
  • Apply go fmt (#1788, Le0tk0k)
  • Uses strings.Equalfold (#1790, rkilingr)
  • Improve code quality (#1792, withshubh)

... (truncated)

Changelog

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

v4.3.0 - 2021-05-08

Important notes

  • Route matching has improvements for following cases:
    1. Correctly match routes with parameter part as last part of route (with trailing backslash)
    2. Considering handlers when resolving routes and search for matching http method handler
  • Echo minimal Go version is now 1.13.

Fixes

  • When url ends with slash first param route is the match #1804
  • Router should check if node is suitable as matching route by path+method and if not then continue search in tree #1808
  • Fix timeout middleware not writing response correctly when handler panics #1864
  • Fix binder not working with embedded pointer structs #1861
  • Add Go 1.16 to CI and drop 1.12 specific code #1850

Enhancements

  • Make KeyFunc public in JWT middleware #1756
  • Add support for optional filesystem to the static middleware #1797
  • Add a custom error handler to key-auth middleware #1847
  • Allow JWT token to be looked up from multiple sources #1845

v4.2.2 - 2021-04-07

Fixes

  • Allow proxy middleware to use query part in rewrite (#1802)
  • Fix timeout middleware not sending status code when handler returns an error (#1805)
  • Fix Bind() when target is array/slice and path/query params complains bind target not being struct (#1835)
  • Fix panic in redirect middleware on short host name (#1813)
  • Fix timeout middleware docs (#1836)

v4.2.1 - 2021-03-08

Important notes

Due to a datarace the config parameters for the newly added timeout middleware required a change. See the docs. A performance regression has been fixed, even bringing better performance than before for some routing scenarios.

Fixes

  • Fix performance regression caused by path escaping (#1777, #1798, #1799, aldas)
  • Avoid context canceled errors (#1789, clwluvw)
  • Improve router to use on stack backtracking (#1791, aldas, stffabi)
  • Fix panic in timeout middleware not being not recovered and cause application crash (#1794, aldas)
  • Fix Echo.Serve() not serving on HTTP port correctly when TLSListener is used (#1785, #1793, aldas)
  • Apply go fmt (#1788, Le0tk0k)

... (truncated)

Commits
  • 2acb24a Update version and changelog for 4.3.0
  • 1aef300 explicitly return an error instead of hiding it
  • 18d7fe1 Fix #1858: Add query params binding support for anonymous struct pointer filed
  • 2943a32 restore originalWriter in case of panic inside echoHandlerFuncWrapper.ServeHT...
  • b643e68 Fix #1787: Add support for optional filesystem to the static middleware (#1797)
  • de3f87e Jwt lookup from multiple sources (#1845)
  • 7256cb2 add a custom error handler to key-auth middleware (#1847)
  • 76f186a feat(jwt): make KeyFunc public in JWT middleware (#1756)
  • 6430665 Fix router not matching param route with trailing slash and implement matchin...
  • 3b07058 Create LICENSE
  • 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)

Bumps [github.com/labstack/echo/v4](https://github.com/labstack/echo) from 4.1.17 to 4.3.0.
- [Release notes](https://github.com/labstack/echo/releases)
- [Changelog](https://github.com/labstack/echo/blob/master/CHANGELOG.md)
- [Commits](labstack/echo@v4.1.17...v4.3.0)

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from evantorrie as a code owner May 9, 2021 05:03
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github May 9, 2021

The following labels could not be found: dependencies, go, Skip Changelog.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 18, 2021

Superseded by #634.

@dependabot dependabot bot closed this Jul 18, 2021
@dependabot dependabot bot deleted the dependabot/go_modules/instrumentation/github.com/labstack/echo/otelecho/github.com/labstack/echo/v4-4.3.0 branch July 18, 2021 00:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants