Skip to content

Navigation Menu

Sign in
Sign up

chore(deps): bump the backend-go-compatible group in /backend with 6 updates - #59

Open
dependabot[bot] wants to merge 1 commit into
main from
dependabot/go_modules/backend/backend-go-compatible-19e9f74289
Open

chore(deps): bump the backend-go-compatible group in /backend with 6 updates #59
dependabot[bot] wants to merge 1 commit into
main from
dependabot/go_modules/backend/backend-go-compatible-19e9f74289

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown

Bumps the backend-go-compatible group in /backend with 6 updates:

Package From To
github.com/alecthomas/kong 1.13.0 1.16.1
github.com/gammazero/workerpool 1.1.3 1.2.1
github.com/goforj/env 1.0.0 1.1.0
github.com/labstack/echo/v4 4.15.3 4.15.4
github.com/rs/zerolog 1.34.0 1.35.1
github.com/stretchr/testify 1.11.1 1.12.1

Updates github.com/alecthomas/kong from 1.13.0 to 1.16.1

Commits
  • 0678fd3 Fix disabled DefaultEnvars help suffix (#638)
  • 33d3305 Fix single-character alias leaking between sibling commands (#637)
  • a5c9626 Fix counter panic on a uint or float field with an explicit --flag=N (#626)
  • b401ebf Fix filecontent mapper panicking on a non-[]byte target (#625)
  • 8cbde34 Fix panic when a float flag is resolved from an integer value (#621)
  • 649eaf2 chore(deps): update all non-major dependencies (#622)
  • ae4bfdd fix: correct typos in resolver.go and README.md (#617)
  • c2c0229 Fix env var validation conflicts (#619)
  • f95198e chore(deps): update all non-major dependencies (#608)
  • b03afc3 treat single-character aliases as short flags (#605)
  • Additional commits viewable in compare view

Updates github.com/gammazero/workerpool from 1.1.3 to 1.2.1

Release notes

Sourced from github.com/gammazero/workerpool's releases.

v1.2.1

What's Changed

Full Changelog: gammazero/workerpool@v1.2.0...v1.2.1

v1.2.0

What's Changed

  • Update deque to v1.2.1
  • Update tests to use testing/synctest to check for goroutine leaks
  • Function Do returns error if called on stopped workerpool

Full Changelog: gammazero/workerpool@v1.1.3...v1.2.0

Commits

Updates github.com/goforj/env from 1.0.0 to 1.1.0

Release notes

Sourced from github.com/goforj/env's releases.

v1.1.0

What's Changed

v1.0.1

Commits

Updates github.com/labstack/echo/v4 from 4.15.3 to 4.15.4

Release notes

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

v4.15.4

Security

Fixes GHSA-vfp3-v2gw-7wfq: an encoded path separator (%2F or %5C) in a static file URL could bypass route-level middleware (e.g. authentication on a sibling route) and disclose static files. Both StaticDirectoryHandler (used by Static/StaticFS) and the Static middleware 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:

// 0.
// given folder structure:
// private.txt
// public/
// public/index.html
// public/text.txt
// public/admin/private.txt
// 1. share public/ folder contents from the server root. This folder actually contains subfolder admin which
// contents we want to forbid from downloading
e.Static("/", "public")
// 2. naively assume that everything under /admin folder is now forbidden
e.GET("/admin/*", func(c *Context) error {
return ErrForbidden
})

Then requests to /admin%2fprivate.txt would not be matched to GET /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.txt which will path.Clean("/assets/../admin%2fprivate.txt") to /admin/private.txt and are servable if static file serving is configured to unescape paths.

If you want to guard routes - use middlewares on Static* methods and before Static middleware.

Breaking change / migration: If you serve files whose names contain URL-encoded characters (e.g., /hello%20world.txthello world.txt), you must now opt in:

	e := echo.New()
	e.EnablePathUnescapingStaticFiles = true // <-- enable old behavior
	e.Static("/", "public")

for static middleware

	e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
		EnablePathUnescaping: true, // <-- enable old behavior
	}))

... (truncated)

Changelog

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

v4.15.4 - 2026年06月15日

Security

Fixes GHSA-vfp3-v2gw-7wfq

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:

// 0.
// given folder structure:
// private.txt
// public/
// public/index.html
// public/text.txt
// public/admin/private.txt
// 1. share public/ folder contents from the server root. This folder actually contains subfolder admin which
// contents we want to forbid from downloading
e.Static("/", "public")
// 2. naively assume that everything under /admin folder is now forbidden
e.GET("/admin/*", func(c *Context) error {
return ErrForbidden
})

Then requests to /admin%2fprivate.txt would not be matched to GET /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.txt which will path.Clean("/assets/../admin%2fprivate.txt") to /admin/private.txt and are servable if static file serving is configured to unescape paths.

If you want to guard routes - use middlewares on Static* methods and before Static middleware.

Breaking change / migration: If you serve files whose names contain URL-encoded characters (e.g., /hello%20world.txthello world.txt), you must now opt in:

	e := echo.New()
	e.EnablePathUnescapingStaticFiles = true // <-- enable old behavior
	e.Static("/", "public")

for static middleware

	e.Use(middleware.StaticWithConfig(middleware.StaticConfig{
		EnablePathUnescaping: true, // <-- enable old behavior
	}))
Commits
  • ec79b58 Merge pull request #3020 from aldas/v4_v4-15-4_changelog
  • 2714c07 Changelog for v4.15.4 - security fix
  • 13f0ed1 Merge pull request #3019 from aldas/v4_backport_3016
  • d16a4ec backport PR 3016 from v4
  • 8f167b9 Merge pull request #3018 from aldas/v4_remove_v5_dep
  • 9afa4ba remove dependency on labstack/echo v5 introduced in go.mod and go.sum
  • 1e05f63 Merge pull request #3017 from aldas/v4_ci_updates
  • 11a3cc4 Update dependencies and add ignore for linting
  • 26bd016 Update CI action versions
  • aa52f6a ci: run workflows on the v4 branch, not just master (#3013)
  • See full diff in compare view

Updates github.com/rs/zerolog from 1.34.0 to 1.35.1

Commits
  • 116c806 event: restore Err() logging when ErrorStackMarshaler returns nil (#763)
  • 1396655 Bump CI Go matrix minimum from 1.21 to 1.23
  • 4b65a2f Bump actions/cache from 4 to 5 (#741)
  • b835796 Bump actions/setup-go from 5 to 6 (#742)
  • 134caf8 Added sanitization of journald keys (#751)
  • e133b6a Added variadic StrsV, ObjectsV, and StringersV (#752)
  • 82017d8 Bump github.com/coreos/go-systemd/v22 from 22.6.0 to 22.7.0 (#753)
  • 2f5b8a9 fix: UpdateContext skips Nop and zero-value loggers (#754)
  • d64c9a7 Add slog.Handler implementation for zerolog (#755)
  • a0d61dc fix: return dict to Event pool (#749)
  • Additional commits viewable in compare view

Updates github.com/stretchr/testify from 1.11.1 to 1.12.1

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.12.1

This is the first release which has the minimum dependencies practical in testify v1. The last remaining dependencies are github.com/stretchr/objx which itself has no dependencies, and go.yaml.in/yaml/v3. Removing objx would require v2, it cannot be vendored. Removing YAML would require vendoring the yaml library, which would do more harm than good. It's better to become aware of vulnerabilities in the official yaml package than to attempt to maintain our own.

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.12.0...v1.12.1

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.12.0...v1.12.1

v1.12.0

What's Changed

Functional Changes

Fixes

Documentation, Build & CI

... (truncated)

Commits
  • 959dbda Merge pull request #1935 from harryzcy/yaml-update
  • 9bb7176 Update go.yaml.in/yaml/v3 to v3.0.5
  • 001eb79 Merge pull request #1905 from Kentzo/patch-1
  • ad40f38 Merge pull request #1906 from stretchr/dependabot/github_actions/actions/chec...
  • 3bae017 build(deps): bump actions/checkout from 6.0.2 to 6.0.3
  • f8c01f3 mock: Mock.Return does not exist anymore
  • 12f8b56 Merge pull request #1563 from stretchr/make-AssertionFunc-types-aliases
  • a11649e assert: make *AssertionFunc type just aliases
  • dc20f41 Merge pull request #1890 from stretchr/dolmen/codegen-modernize
  • 098f8d7 _codegen: use strings.Builder
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the backend-go-compatible group in /backend with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [github.com/alecthomas/kong](https://github.com/alecthomas/kong) | `1.13.0` | `1.16.1` |
| [github.com/gammazero/workerpool](https://github.com/gammazero/workerpool) | `1.1.3` | `1.2.1` |
| [github.com/goforj/env](https://github.com/goforj/env) | `1.0.0` | `1.1.0` |
| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.15.3` | `4.15.4` |
| [github.com/rs/zerolog](https://github.com/rs/zerolog) | `1.34.0` | `1.35.1` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.11.1` | `1.12.1` |
Updates `github.com/alecthomas/kong` from 1.13.0 to 1.16.1
- [Commits](alecthomas/kong@v1.13.0...v1.16.1)
Updates `github.com/gammazero/workerpool` from 1.1.3 to 1.2.1
- [Release notes](https://github.com/gammazero/workerpool/releases)
- [Commits](gammazero/workerpool@v1.1.3...v1.2.1)
Updates `github.com/goforj/env` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/goforj/env/releases)
- [Commits](goforj/env@v1.0.0...v1.1.0)
Updates `github.com/labstack/echo/v4` from 4.15.3 to 4.15.4
- [Release notes](https://github.com/labstack/echo/releases)
- [Changelog](https://github.com/labstack/echo/blob/v4.15.4/CHANGELOG.md)
- [Commits](labstack/echo@v4.15.3...v4.15.4)
Updates `github.com/rs/zerolog` from 1.34.0 to 1.35.1
- [Commits](rs/zerolog@v1.34.0...v1.35.1)
Updates `github.com/stretchr/testify` from 1.11.1 to 1.12.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.11.1...v1.12.1)
---
updated-dependencies:
- dependency-name: github.com/alecthomas/kong
 dependency-version: 1.16.1
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: backend-go-compatible
- dependency-name: github.com/gammazero/workerpool
 dependency-version: 1.2.1
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: backend-go-compatible
- dependency-name: github.com/goforj/env
 dependency-version: 1.1.0
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: backend-go-compatible
- dependency-name: github.com/labstack/echo/v4
 dependency-version: 4.15.4
 dependency-type: direct:production
 update-type: version-update:semver-patch
 dependency-group: backend-go-compatible
- dependency-name: github.com/rs/zerolog
 dependency-version: 1.35.1
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: backend-go-compatible
- dependency-name: github.com/stretchr/testify
 dependency-version: 1.12.1
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: backend-go-compatible
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Sep 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

0 participants

AltStyle によって変換されたページ (->オリジナル) /