fix(deps): update go major updates (major)#38
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
b57315c to
ee66195
Compare
dc44a2a to
b30ccb5
Compare
b30ccb5 to
90b8eee
Compare
10bd318 to
6d730e3
Compare
6d730e3 to
7a81fb1
Compare
7a81fb1 to
4cb723f
Compare
59f577f to
f072eb9
Compare
5c392e7 to
d635612
Compare
d635612 to
cbf4f46
Compare
Contributor
Author
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
cbf4f46 to
ee5d8f2
Compare
fce7c66 to
b31ffa1
Compare
b31ffa1 to
7695f9f
Compare
7695f9f to
3cf7e2b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v4.15.1→v5.2.1v3.20.2→v4.2.2Release Notes
labstack/echo (github.com/labstack/echo/v4)
v5.2.1Compare Source
Security
Make serving static file releated methods and middleware not unescape path by default - so how the way Router interprets paths and Static methods/middleware is consistent.
Given following situation:
Then requests to
/admin%2fprivate.txtwould not be matched toGET /admin/*route (routing does not look unescaped path) and static file serving will use unescaped path to serve the file.Note: this way of "guarding" subfolders will never work for for paths like
/assets/../admin%2fprivate.txtwhich willpath.Clean("/assets/../admin%2fprivate.txt")to/admin/private.txtand are servable if static file serving is configured to unescape paths.If you want to guard routes - use middlewares on
Static*methods and beforeStaticmiddleware.Closes GHSA-vfp3-v2gw-7wfq more completely: the previous fix (#3009) rejected explicitly encoded
separators at the handler level; this patch makes the no-unescape behavior the default so new configurations are safe without extra opt-out steps.
What changed:
DisablePathUnescaping(onStaticConfigandStaticDirectoryHandlerConfig) is deprecated and replaced byEnablePathUnescaping(defaultfalse). Path unescaping is now opt-in.What this protects: With
EnablePathUnescaping: false(new default), encoded separators (%2F,%5C) are never decoded before routing or file lookup, so they cannotbypass route-level authentication or other middleware guards.
What this does NOT protect: Serving a directory with
Static,StaticFS, orStaticDirectoryHandlerexposes its entire subtree. Sibling routes are not a reliableACL boundary — attach authorization middleware directly to the static mount, or serve sensitive sub-trees under separate guarded routes.
Breaking change / migration: If you serve files whose names contain URL-encoded characters (e.g.,
/hello%20world.txt→hello world.txt), you must now opt in:Full Changelog: labstack/echo@v5.2.0...v5.2.1
v5.2.0Compare Source
Security
Fixes GHSA-vfp3-v2gw-7wfq: an encoded path separator (
%2For%5C) in a static file URL could bypass route-level middleware (e.g. authentication on a sibling route) and disclose static files. BothStaticDirectoryHandler/StaticFSand theStaticmiddleware are affected. Thanks to @a-tt-om and @oran-gugu for reporting.Enhancements
New Contributors
Full Changelog: labstack/echo@v5.1.1...v5.2.0
v5.1.1Compare Source
Security
Context.Scheme()should validate values taken from header by @aldas in #2953Thanks to @shblue21 for reporting this issue.
Enhancements
v5.1.0Compare Source
Security
This change does not break the API contract, but it does introduce breaking changes in logic/behavior.
If your application is using
c.RealIP()beware and read https://echo.labstack.com/docs/ip-addressv4behavior can be restored with:Enhancements
v5.0.4Compare Source
Enhancements
http.Server.Servereturns we need to wait for graceful shutdown goroutine to finish by @aldas in #2898echo.StatusCodeby @suwakei in #2892echo.ResolveResponseStatusfunction to help middleware/handlers determine HTTP status code and echo.Response by @aldas in #2900v5.0.3Compare Source
Security
This applies to cases when:
middleware.StaticConfig.Filesystemisnil(default)echo.Filesystemis has not been set explicitly (default)Exposure is restricted to the active process working directory and its subfolders.
v5.0.2Compare Source
Security
config.Browse=truelists all files/subfolders fromconfig.Filesystemroot and not starting fromconfig.Rootin #2887v5.0.1Compare Source
v5.0.0Compare Source
Echo
v5is maintenance release with major breaking changesContextis now struct instead of interface and we can add method to it in the future in minor versions.Routerinterface for possible new routing implementations.log/sloginstead.Upgrade notes and
v4support:v4is supported with security* updates and bug fixes until 2026-12-31v5API changes will be addressed, even if this violates semantic versioning.See API_CHANGES_V5.md for public API changes between
v4andv5, notes on upgrading.Upgrading TLDR:
If you are using Linux you can migrate easier parts like that:
macOS
or in your favorite IDE
Replace all:
echo.Context->*echo.Contextecho/v4->echo/v5This should solve most of the issues. Probably the hardest part is updating all the tests.
v4.15.4Compare Source
Security
Fixes GHSA-vfp3-v2gw-7wfq: an encoded path separator (
%2For%5C) in a static file URL could bypass route-level middleware (e.g. authentication on a sibling route) and disclose static files. BothStaticDirectoryHandler(used byStatic/StaticFS) and theStaticmiddleware are affected. Backport of the v5 fix (#3016, released in v5.2.1). Thanks to @a-tt-om and @oran-gugu for reporting.Make serving static file releated methods and middleware not unescape path by default - so how the way Router interprets paths and Static methods/middleware is consistent.
Given following situation:
Then requests to
/admin%2fprivate.txtwould not be matched toGET /admin/*route (routing does not look unescaped path) and static file serving will use unescaped path to serve the file.Note: this way of "guarding" subfolders will never work for for paths like
/assets/../admin%2fprivate.txtwhich willpath.Clean("/assets/../admin%2fprivate.txt")to/admin/private.txtand are servable if static file serving is configured to unescape paths.If you want to guard routes - use middlewares on
Static*methods and beforeStaticmiddleware.Breaking change / migration: If you serve files whose names contain URL-encoded characters (e.g.,
/hello%20world.txt→hello world.txt), you must now opt in:for static middleware
Full Changelog: labstack/echo@v4.15.3...v4.15.4
v4.15.3: - Static encoded-separator route bypass fix (GHSA-vfp3-v2gw-7wfq)Compare Source
Security
Fixes GHSA-vfp3-v2gw-7wfq: an encoded path separator (
%2For%5C) in a static file URL could bypass route-level middleware (e.g. authentication on a sibling route) and disclose static files. BothStaticDirectoryHandler(used byStatic/StaticFS) and theStaticmiddleware are affected. Backport of the v5 fix (#3009, released in v5.2.0). Thanks to @a-tt-om and @oran-gugu for reporting.Full Changelog: labstack/echo@v4.15.2...v4.15.3
v4.15.2: - Context.Scheme() header validationCompare Source
Security
Context.Scheme()should validate values taken from header by @aldas in #2962Thanks to @shblue21 for reporting this issue.
Full Changelog: labstack/echo@v4.15.1...v4.15.2
helm/helm (helm.sh/helm/v3)
v4.2.2: Helm v4.2.2Compare Source
Helm v4.2.2 is a patch release. Users are encouraged to upgrade for the best experience.
The community keeps growing, and we'd love to see you there!
Notable Changes
Installation and Upgrading
Download Helm v4.2.2. The common platform binaries are here:
This release was signed by @gjenkins8 with key BF88 8333 D96A 1C18 E268 2AAE D79D 67C9 EC01 6739, which can be found at https://keys.openpgp.org/vks/v1/by-fingerprint/BF888333D96A1C18E2682AAED79D67C9EC016739. Please use the attached signatures for verifying this release using gpg.
The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with
bash.What's Next
Changelog
b05881c(George Jenkins)Full Changelog: helm/helm@v4.2.1...v4.2.2
v4.2.1: Helm v4.2.1Compare Source
Helm v4.2.1 is a patch release. Users are encouraged to upgrade for the best experience.
The community keeps growing, and we'd love to see you there!
Notable Changes
Installation and Upgrading
Download Helm v4.2.1. The common platform binaries are here:
This release was signed with
208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C 1155and can be found at @scottrigby keybase account. Please use the attached signatures for verifying this release usinggpg.The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with
bash.What's Next
Changelog
d591a19(Terry Howe)2a9fcae(Terry Howe)ffa5bd6(dependabot[bot])9f9dbaf(dependabot[bot])64a2891(dependabot[bot])e54a4a2(dependabot[bot])acb762b(dependabot[bot])768586d(dependabot[bot])eabfae5(Benoit Tigeot)e3fd51f(Benoit Tigeot)1e47395(Benoit Tigeot)a33e239(Benoit Tigeot)fa06d44(Terry Howe)360d483(Terry Howe)7651edf(dependabot[bot])b132e7e(dependabot[bot])eee491a(Terry Howe)3e3c575(dependabot[bot])c4ce2bb(dependabot[bot])3892dc2(dependabot[bot])c4bbb62(dependabot[bot])a0d7f16(dependabot[bot])8a3de05(dependabot[bot])57a4803(Matheus Pimenta)b33ae02(dependabot[bot])Full Changelog: helm/helm@v4.2.0...v4.2.1
v4.2.0: Helm v4.2.0Compare Source
Helm v4.2.0 is a feature release. Users are encouraged to upgrade for the best experience.
The community keeps growing, and we'd love to see you there!
Notable Changes
goreleaserfor release buildsmustToTomltemplate function--hide-notesand--render-subchart-notesflags--dry-run=servernow respectsgenerateName:Installation and Upgrading
Download Helm v4.2.0. The common platform binaries are here:
This release was signed by @gjenkins8 with key BF88 8333 D96A 1C18 E268 2AAE D79D 67C9 EC01 6739, which can be found at https://keys.openpgp.org/vks/v1/by-fingerprint/BF888333D96A1C18E2682AAED79D67C9EC016739. Please use the attached signatures for verifying this release using gpg.
The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with
bash.What's Next
Changelog
0646808(George Jenkins)e23bf3a(Scott Rigby)f60ab7c(Terry Howe)64aa46f(Terry Howe)d199a1a(Terry Howe)8289940(Terry Howe)c075022(Terry Howe)04885dd(Terry Howe)93103ce(Terry Howe)e49a1dc(Terry Howe)eaa0910(Terry Howe)5a75279(Terry Howe)37284a9(Terry Howe)45336cc(Terry Howe)a9659b0(Terry Howe)e368f17(Terry Howe)e7bea85(Terry Howe)075c096(Terry Howe)12f2c41(dependabot[bot])58e8ffd(dependabot[bot])e61bbfb(dependabot[bot])081c6df(Matheus Pimenta)277d970(Gagan H R)a4a9cc7(Matheus Pimenta)8f56f24(Matheus Pimenta)db40adb(Mohit)775e794(dependabot[bot])934ace3(dependabot[bot])265c5eb(Matheus Pimenta)48e2b7d(dependabot[bot])a8e2497(Evans Mungai)52fc971(Johannes Lohmer)0063877(Johannes Lohmer)6eb4ebf(Johannes Lohmer)5cb4e7d(Johannes Lohmer)b5c7c80(dependabot[bot])a27f1ad(Matheus Pimenta)c26be60(Cairon)953f5f0(dependabot[bot])10fc5f3(dependabot[bot])d89e7c6(dependabot[bot])8a95461(George Jenkins)213c869(Sumit Solanki)bd5027a(dependabot[bot])087736b(George Jenkins)586eb57(George Jenkins)c8c5dfa(dependabot[bot])998466c(dependabot[bot])b0cec58(dependabot[bot])6ebfb29(dependabot[bot])a7f8443(Terry Howe)4c0d21f(Terry Howe)08dea9c(dependabot[bot])de58531(Anmol Virdi)9b1ad4c(dependabot[bot])8ef2d45(Rhys McNeill)cd7cf76(dependabot[bot])45ee55b(dependabot[bot])9a06741(dependabot[bot])d1e31ca(dependabot[bot])f257c95(abhay1999)7025480(Terry Howe)64f1d0a(Sumit Solanki)85bf56e(Debasish Mohanty)1549937(Sumit Solanki)c7a75b1(dependabot[bot])3a7573a(dependabot[bot])0229da1(dependabot[bot])c1a5a6e(Ilya Kiselev)b075f7a(Ilya Kiselev)7edfff3(Matthieu MOREL)37185d2(dependabot[bot])071558d(Matthieu MOREL)6249489(Matthieu MOREL)47a0840(George Jenkins)3d06fd1(dependabot[bot])e64d628(Terry Howe)d7cdc9e(abhay1999)36dcc27(George Jenkins)c4be7af(dependabot[bot])259f181(tsinglua)6018499](https://Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.