Skip to content

fix(deps): update go minor/patch updates - #48

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/go-minorpatch-updates
Open

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/go-minorpatch-updates

Conversation

@renovate

@renovate renovate Bot commented Apr 26, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
github.com/labstack/echo/v4 v4.15.1v4.15.4 age confidence
github.com/labstack/echo/v5 v5.1.0v5.3.1 age confidence
github.com/minio/minio-go/v7 v7.0.100v7.3.0 age confidence
helm.sh/helm/v3 v3.20.2v3.22.0 age confidence
helm.sh/helm/v4 v4.1.4v4.3.0 age confidence
k8s.io/api v0.35.3v0.37.0 age confidence
k8s.io/apiextensions-apiserver v0.35.3v0.37.0 age confidence
k8s.io/apimachinery v0.35.3v0.37.0 age confidence
k8s.io/cli-runtime v0.35.3v0.37.0 age confidence
k8s.io/client-go v0.35.3v0.37.0 age confidence
sigs.k8s.io/controller-runtime v0.23.3v0.25.1 age confidence

Release Notes

labstack/echo (github.com/labstack/echo/v4)

v4.15.4

Compare Source

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
	}))

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

  • fix(static): reject encoded path separators that bypass route-level middleware by @​vishr in #​3011

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 (#​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 validation

Compare Source

Security

Thanks to @​shblue21 for reporting this issue.

Full Changelog: labstack/echo@v4.15.1...v4.15.2

minio/minio-go (github.com/minio/minio-go/v7)

v7.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.2.1...v7.3.0

v7.2.1

Compare Source

v7.2.0

Compare Source

What's Changed

Full Changelog: minio/minio-go@v7.1.0...v7.2.0

v7.1.0

Compare Source

What's Changed

Full Changelog: minio/minio-go@v7.0.100...v7.1.0

helm/helm (helm.sh/helm/v3)

v3.22.0: Helm v3.22.0

Compare Source

Helm v3.22.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!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Notable Changes

  • primarily dependency updates and k8s-io group to 0.37.0

Installation and Upgrading

Download Helm v3.22.0. The common platform binaries are here:

This release was signed with 208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C 1155 and can be found at @​scottrigby keybase account. 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

  • 4.3.1 and 3.22.1 are the next patch releases scheduled for October 14, 2026
  • 4.4.0 is the next minor release scheduled for January 13, 2027. There will be no further Helm 3 minor releases (see https://helm.sh/blog/helm-v3-end-of-life)

Changelog

  • chore(deps): bump the k8s-io group across 1 directory with 6 updates 144ca65 (dependabot[bot])
  • bump version to 3.22 (#​32606) b5de8bb (Scott Rigby)
  • fix: set [pull,push] scope when helm push to a registry(use token auth) (backport) (#​32362) 9dbcb9f (kimsungmin1)
  • chore(deps): bump the github-actions group across 1 directory with 4 updates (#​32575) 665ab55 (dependabot[bot])
  • chore(deps): bump the k8s-io group with 7 updates (#​32573) 0841093 (dependabot[bot])
  • chore(deps): bump github.com/stretchr/testify from 1.12.0 to 1.12.1 (#​32563) d0569c7 (dependabot[bot])
  • chore(deps): bump the github-actions group across 1 directory with 4 updates (#​32557) bcbdb1e (dependabot[bot])
  • chore(deps): bump github.com/stretchr/testify from 1.11.1 to 1.12.0 (#​32554) 6cdcc8f (dependabot[bot])
  • chore(deps): bump golang.org/x/crypto from 0.54.0 to 0.55.0 (#​32542) 158719f (dependabot[bot])
  • [dev-v3 backport] deps: bump google.golang.org/grpc@​v1.82.1 for GO-2026-6061 (#​32536) a442b8c (Scott Rigby)
  • fix: bump go.opentelemetry.io/otel@​v1.44.0 for GO-2026-5158 (#​32535) adab0ef (Scott Rigby)
  • chore(deps): bump the github-actions group with 4 updates (#​32524) c068b54 (dependabot[bot])
  • chore(deps): bump the github-actions group with 4 updates 74271c4 (dependabot[bot])
  • chore(deps): bump github.com/santhosh-tekuri/jsonschema/v6 1c50d2f (dependabot[bot])
  • chore(deps): bump the github-actions group with 4 updates (#​32509) 8821540 (dependabot[bot])
  • chore(deps): bump actions/stale in the github-actions group (#​32488) 05a2798 (dependabot[bot])
  • chore(deps): bump ossf/scorecard-action in the github-actions group (#​32461) c27e757 (dependabot[bot])
  • fix(provenance): migrate to ProtonMail/go-crypto to resolve GO-2026-5932 bd392c6 (Karan V)
  • chore(deps): bump the k8s-io group with 7 updates 66a6f56 (dependabot[bot])
  • chore(deps): bump the github-actions group with 4 updates 7cd0125 (dependabot[bot])
  • chore(deps): bump github/codeql-action/upload-sarif (#​32449) 79330fc (dependabot[bot])
  • chore(deps): bump actions/labeler from 6.2.0 to 7.0.0 (#​32446) b29c730 (dependabot[bot])
  • chore(deps): bump github/codeql-action/analyze from 4.37.1 to 4.37.2 973bb34 (dependabot[bot])
  • chore(deps): bump github/codeql-action/autobuild from 4.37.1 to 4.37.2 e25efcf (dependabot[bot])
  • chore(deps): bump github/codeql-action/init from 4.37.1 to 4.37.2 98e547f (dependabot[bot])
  • chore(deps): bump actions/checkout from 7.0.0 to 7.0.1 (#​32412) 7f4b72a (dependabot[bot])
  • chore(deps): bump github/codeql-action/autobuild from 4.37.0 to 4.37.1 (#​32381) 2cf1437 (dependabot[bot])
  • chore(deps): bump actions/setup-go from 6.5.0 to 7.0.0 (#​32383) 270f73b (dependabot[bot])
  • chore(deps): bump github/codeql-action/upload-sarif (#​32382) 9e3a010 (dependabot[bot])
  • ci: auto-label PRs targeting dev-v3 (#​32340) c9ed0ca (Benoit Tigeot)
  • chore(deps): bump oras.land/oras-go/v2 from 2.6.1 to 2.6.2 (#​32331) b842ddf (dependabot[bot])
  • chore(deps): bump github.com/mattn/go-shellwords from 1.0.13 to 1.0.14 (#​32332) f6047c9 (dependabot[bot])
  • chore(deps): bump github/codeql-action/analyze from 3.26.6 to 4.37.0 (#​32357) f2f6bf6 (dependabot[bot])
  • chore(deps): bump actions/checkout from 4.2.2 to 7.0.0 (#​32368) 69f70a8 (dependabot[bot])
  • chore(deps): bump actions/stale from 9.0.0 to 10.4.0 (#​32369) c95222a (dependabot[bot])
  • chore(deps): bump actions/setup-go from 5.1.0 to 6.5.0 (#​32358) fc71f51 (dependabot[bot])
  • chore(deps): bump github/codeql-action/upload-sarif (#​32360) 6596318 (dependabot[bot])
  • chore(deps): bump github/codeql-action/init from 3.26.6 to 4.37.0 (#​32359) 5d9943c (dependabot[bot])
  • chore(deps): bump golang/govulncheck-action from 1.0.4 to 1.1.0 (#​32356) a3d7a6c (dependabot[bot])
  • chore(deps): bump golangci/golangci-lint-action from 6.1.1 to 9.3.0 (#​32354) 8e19970 (dependabot[bot])
  • chore(deps): bump ossf/scorecard-action from 2.4.0 to 2.4.3 (#​32353) 24ef09a (dependabot[bot])
  • chore(deps): bump golang.org/x/text from 0.38.0 to 0.40.0 (#​32310) 8082dd4 (dependabot[bot])
  • chore(deps): bump golang.org/x/crypto from 0.53.0 to 0.54.0 (#​32308) 2c24490 (dependabot[bot])
  • chore(deps): bump golang.org/x/term from 0.44.0 to 0.45.0 (#​32306) 953d280 (dependabot[bot])
  • fix(engine): prevent Files.Lines panic on empty file c02a9ae (Mahesh Sadupalli)
  • Apply suggestions from code review 093015b (Benoit Tigeot)
  • fix: drop containerd v1 dep to resolve govulncheck CVEs a061886 (Benoit Tigeot)
  • chore(deps): bump github.com/containerd/containerd from 1.7.32 to 1.7.33 f979836 (dependabot[bot])
  • chore(deps): bump github.com/cyphar/filepath-securejoin c444665 (dependabot[bot])
  • chore(deps): bump the k8s-io group with 2 updates 1bf9b5f (dependabot[bot])
  • fixes b7a0fd0 (Matheus Pimenta)
  • chore(deps): bump the k8s-io group across 1 directory with 2 updates 119a7d9 (dependabot[bot])
  • fix(registry): keep credentials on plain-HTTP fallback with oras-go v2.6.1 2fb05f8 (Terry Howe)
  • chore(deps): bump oras.land/oras-go/v2 from 2.6.0 to 2.6.1 acc867b (dependabot[bot])
  • chore(deps): bump golang.org/x/crypto from 0.52.0 to 0.53.0 b920935 (dependabot[bot])
  • chore(deps): bump golang.org/x/term from 0.43.0 to 0.44.0 5b5ef19 (dependabot[bot])
  • chore(deps): bump golang.org/x/text from 0.37.0 to 0.38.0 af67af8 (dependabot[bot])
  • Update .github/env ceb9a62 (Terry Howe)
  • ci: bump golangci-lint to v2.11.3 for go 1.26 0ed92f0 (Terry Howe)
  • chore: bump go to 1.26 c678c0c (Terry Howe)
  • chore(deps): bump github.com/lib/pq from 1.11.2 to 1.12.3 12c4d45 (dependabot[bot])
  • chore(deps): bump github.com/distribution/distribution/v3 a0f9711 (dependabot[bot])
  • chore(deps): bump github.com/containerd/containerd from 1.7.30 to 1.7.32 995c31e (dependabot[bot])
  • chore(deps): bump github.com/Masterminds/semver/v3 from 3.4.0 to 3.5.0 8c17168 (dependabot[bot])
  • chore(deps): bump github.com/mattn/go-shellwords from 1.0.12 to 1.0.13 fe141bd (dependabot[bot])
  • chore(deps): bump golang.org/x/crypto from 0.51.0 to 0.52.0 980836f (dependabot[bot])
  • fix(deps): bump golang.org/x/net to v0.55.0 to address GO-2026-5026 1dde6c7 (Terry Howe)
  • chore(deps): bump k8s.io/klog/v2 from 2.130.1 to 2.140.0 0162fed (dependabot[bot])
  • chore(deps): bump golang.org/x/text from 0.35.0 to 0.37.0 a664a58 (dependabot[bot])
  • [v3] Bump to version v3.21 (#​32103) 3033a77 (George Jenkins)
  • [v3 backport] Fix rollback for missing resources 0a47573 (Feruzjon Muyassarov)
  • fix(action): avoid nil REST client getter panic when installing CRDs 711a4ea (sergiochan)

v3.21.4: Helm v3.21.4

Compare Source

Helm v3.21.4 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!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Notable Changes

  • fix(engine): prevent Files.Lines panic on empty file (backport to v3)- #​32303 by @​mahesh-sadupalli
  • fix(provenance): migrate to ProtonMail/go-crypto to resolve GO-2026-5932- #​32463 by @​karan-vk
  • [dev-v3 backport] fix: bump go.opentelemetry.io/otel@​v1.44.0 for GO-2026-5158- #​32535 by @​scottrigby
  • [dev-v3 backport] deps: bump google.golang.org/grpc@​v1.82.1 for GO-2026-6061- #​32536 by @​scottrigby
  • chore(deps): bump golang.org/x/crypto from 0.53.0 to 0.54.0- (includes golang.org/x/text v0.40.0 to fix GO-2026-5970) #​32308

Installation and Upgrading

Download Helm v3.21.4. The common platform binaries are here:

This release was signed with 208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C 1155 and can be found at @​scottrigby keybase account. 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

  • 4.3.0 and 3.22.0 are the next minor releases scheduled for September 9, 2026

Changelog

  • chore(deps): bump golang.org/x/crypto from 0.53.0 to 0.54.0 (#​32308) 813176c (dependabot[bot])
  • [dev-v3 backport] deps: bump google.golang.org/grpc@​v1.82.1 for GO-2026-6061 b6aa8b1 (Scott Rigby)
  • fix: bump go.opentelemetry.io/otel@​v1.44.0 for GO-2026-5158 57ce7ae (Scott Rigby)
  • fix(provenance): migrate to ProtonMail/go-crypto to resolve GO-2026-5932 ab71449 (Karan V)
  • fix(engine): prevent Files.Lines panic on empty file 955dfab (Mahesh Sadupalli)

Full Changelog: helm/helm@v3.21.3...v3.21.4

v3.21.3: Helm v3.21.3

Compare Source

Helm v3.21.3 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!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Installation and Upgrading

Download Helm v3.21.3. The common platform binaries are here:

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

  • 4.2.4 and 3.21.4 are the next patch releases scheduled for August 12, 2026
  • 4.3.0 and 3.22.0 are the next minor releases scheduled for September 9, 2026

Changelog

  • Apply suggestions from code review 1ad6e68 (Benoit Tigeot)
  • fix: drop containerd v1 dep to resolve govulncheck CVEs 037733e (Benoit Tigeot)
  • chore(deps): bump github.com/containerd/containerd from 1.7.32 to 1.7.33 d3e178b (dependabot[bot])

v3.21.2: Helm v3.21.2

Compare Source

Helm v3.21.2 is a patch release to correct bump the Kubernetes client libraries (client-go, etc) to match the expected Kubernetes v1.36 release. Users are encouraged to upgrade for the best experience.

The community keeps growing, and we'd love to see you there!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Notable Changes

  • Update Kubernetes client libraries to v1.36

Installation and Upgrading

Download Helm v3.21.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

  • 3.21.3 will contain only bug fixes.
  • 3.22.0 is the next (and final) Helm 3 feature release

Changelog

  • chore(deps): bump the k8s-io group with 2 updates 1259634 (dependabot[bot])
  • fixes b52e276 (Matheus Pimenta)
  • chore(deps): bump the k8s-io group across 1 directory with 2 updates 3342dbf (dependabot[bot])

Full Changelog: helm/helm@v3.21.1...v3.21.2

v3.21.1: Helm v3.21.1

Compare Source

Helm v3.21.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!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Notable Changes

  • Fixed nil pointer panic that could happen with helm template in ClientOnly flows. Now correctly returns a template error #​31920
  • Bumped golang.org/x/net to v0.55.0 to address GO-2026-5026 #​32152
  • Bumped Go from 1.25 to 1.26 #​32168
  • Dependency version updates

Installation and Upgrading

Download Helm v3.21.1. The common platform binaries are here:

This release was signed with 208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C 1155 and can be found at @​scottrigby keybase account. 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

  • 4.2.2 and 3.21.2 are the next patch releases scheduled for July 8, 2026
  • 4.3.0 and 3.22.0 are the next minor releases scheduled for September 9, 2026

Changelog

  • fix(action): avoid nil REST client getter panic when installing CRDs c56dd00 (sergiochan)
  • fix(registry): keep credentials on plain-HTTP fallback with oras-go v2.6.1 702529f (Terry Howe)
  • chore(deps): bump oras.land/oras-go/v2 from 2.6.0 to 2.6.1 178e120 (dependabot[bot])
  • chore(deps): bump golang.org/x/crypto from 0.52.0 to 0.53.0 dcf35f8 (dependabot[bot])
  • chore(deps): bump golang.org/x/term from 0.43.0 to 0.44.0 44aff8b (dependabot[bot])
  • chore(deps): bump golang.org/x/text from 0.37.0 to 0.38.0 ae2f31f (dependabot[bo

Important

✂ PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 3am on sunday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch from 1c2add7 to 0415899 Compare April 27, 2026 05:02
@renovate renovate Bot changed the title fix(deps): update go minor/patch updates to v0.36.0 fix(deps): update go minor/patch updates Apr 27, 2026
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 2 times, most recently from ac97065 to 3ff5376 Compare May 1, 2026 20:29
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 5 times, most recently from 8ea7f96 to cca4f46 Compare May 17, 2026 09:10
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch from cca4f46 to 57b23f2 Compare May 27, 2026 09:58
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 5 times, most recently from 4d9a02c to de30892 Compare June 18, 2026 01:13
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 6 times, most recently from 2e6a6d4 to ccfe0da Compare June 26, 2026 16:16
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 3 times, most recently from a9f0e78 to a8681bc Compare July 9, 2026 23:16
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch from a8681bc to bb6b666 Compare July 13, 2026 03:29
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 4 times, most recently from 5dcd700 to 192f5a0 Compare July 25, 2026 04:27
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch from 192f5a0 to a5eef61 Compare July 29, 2026 21:14
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch from a5eef61 to 2a53806 Compare July 30, 2026 00:53
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch from 2a53806 to 21207c8 Compare August 6, 2026 21:00
@renovate

renovate Bot commented Aug 6, 2026

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: example/complete/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 16 additional dependencies were updated

Details:

Package Change
github.com/Masterminds/semver/v3 v3.4.0 -> v3.5.0
github.com/fatih/color v1.18.0 -> v1.19.0
github.com/klauspost/compress v1.18.2 -> v1.19.2
github.com/klauspost/cpuid/v2 v2.2.11 -> v2.4.0
github.com/mattn/go-runewidth v0.0.15 -> v0.0.23
github.com/rivo/uniseg v0.4.4 -> v0.4.7
github.com/sirupsen/logrus v1.9.3 -> v1.9.4
github.com/tinylib/msgp v1.6.1 -> v1.6.4
go.yaml.in/yaml/v3 v3.0.4 -> v3.0.5
golang.org/x/crypto v0.47.0 -> v0.55.0
golang.org/x/net v0.49.0 -> v0.58.0
golang.org/x/sync v0.19.0 -> v0.22.0
golang.org/x/sys v0.40.0 -> v0.47.0
golang.org/x/term v0.39.0 -> v0.45.0
golang.org/x/text v0.33.0 -> v0.41.0
helm.sh/helm/v3 v3.20.1 -> v3.20.2
File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 39 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.25.1 -> 1.26.0
k8s.io/api v0.35.3 -> v0.36.4
github.com/Masterminds/semver/v3 v3.4.0 -> v3.5.0
github.com/cyphar/filepath-securejoin v0.6.1 -> v0.7.0
github.com/emicklei/go-restful/v3 v3.12.2 -> v3.13.0
github.com/fatih/color v1.18.0 -> v1.19.0
github.com/klauspost/compress v1.18.2 -> v1.19.2
github.com/klauspost/cpuid/v2 v2.2.11 -> v2.4.0
github.com/labstack/gommon v0.4.2 -> v0.5.0
github.com/lib/pq v1.10.9 -> v1.12.3
github.com/mattn/go-colorable v0.1.14 -> v0.1.15
github.com/mattn/go-isatty v0.0.20 -> v0.0.22
github.com/mattn/go-runewidth v0.0.15 -> v0.0.23
github.com/moby/spdystream v0.5.0 -> v0.5.1
github.com/rivo/uniseg v0.4.4 -> v0.4.7
github.com/sirupsen/logrus v1.9.3 -> v1.9.4
github.com/tinylib/msgp v1.6.1 -> v1.6.4
go.yaml.in/yaml/v2 v2.4.3 -> v2.4.4
go.yaml.in/yaml/v3 v3.0.4 -> v3.0.5
golang.org/x/crypto v0.47.0 -> v0.55.0
golang.org/x/mod v0.32.0 -> v0.38.0
golang.org/x/net v0.49.0 -> v0.58.0
golang.org/x/oauth2 v0.34.0 -> v0.36.0
golang.org/x/sync v0.19.0 -> v0.22.0
golang.org/x/sys v0.40.0 -> v0.47.0
golang.org/x/term v0.39.0 -> v0.45.0
golang.org/x/text v0.33.0 -> v0.41.0
golang.org/x/time v0.14.0 -> v0.15.0
golang.org/x/tools v0.41.0 -> v0.48.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 -> v0.0.0-20260414002931-afd174a4e478
google.golang.org/grpc v1.78.0 -> v1.82.1
google.golang.org/protobuf v1.36.11 -> v1.36.12-0.20260120151049-f2248ac996af
k8s.io/apiserver v0.35.3 -> v0.36.4
k8s.io/component-base v0.35.3 -> v0.36.4
k8s.io/klog/v2 v2.130.1 -> v2.140.0
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 -> v0.0.0-20260317180543-43fb72c5454a
k8s.io/kubectl v0.35.1 -> v0.36.2
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 -> v0.0.0-20260210185600-b8788abfbbc2
oras.land/oras-go/v2 v2.6.0 -> v2.6.1
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 -> v6.3.3

@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 5 times, most recently from 17a1d5f to 5c3024d Compare August 13, 2026 23:10
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 7 times, most recently from acd2a0a to c2fe51f Compare August 20, 2026 21:58
@renovate

renovate Bot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: example/complete/go.sum
go: module k8s.io/api@v0.37.0 requires go >= 1.26.0; switching to go1.26.8
go: downloading go1.26.8 (linux/amd64)
go: downloading github.com/minio/minio-go/v7 v7.3.0
go: downloading k8s.io/api v0.37.0
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/dustin/go-humanize v1.0.1
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/klauspost/compress v1.19.2
go: downloading github.com/klauspost/crc32 v1.3.0
go: downloading github.com/minio/crc64nvme v1.1.1
go: downloading github.com/minio/md5-simd v1.1.2
go: downloading github.com/zeebo/xxh3 v1.1.0
go: downloading go.yaml.in/yaml/v3 v3.0.5
go: downloading golang.org/x/net v0.58.0
go: downloading helm.sh/helm/v3 v3.20.2
go: downloading k8s.io/cli-runtime v0.35.3
go: downloading k8s.io/client-go v0.35.3
go: downloading k8s.io/apiextensions-apiserver v0.35.3
go: downloading k8s.io/apimachinery v0.37.0
go: downloading github.com/vmware-tanzu/velero v1.17.0
go: downloading sigs.k8s.io/controller-runtime v0.23.3
go: downloading github.com/labstack/echo/v4 v4.15.1
go: downloading k8s.io/klog/v2 v2.140.0
go: downloading golang.org/x/sys v0.47.0
go: downloading github.com/klauspost/cpuid/v2 v2.4.0
go: downloading gopkg.in/ini.v1 v1.67.3
go: downloading golang.org/x/crypto v0.55.0
go: downloading github.com/rs/xid v1.6.0
go: downloading github.com/tinylib/msgp v1.6.4
go: downloading github.com/joho/godotenv v1.5.1
go: downloading github.com/Masterminds/semver/v3 v3.5.0
go: downloading github.com/Masterminds/sprig/v3 v3.3.0
go: downloading github.com/gosuri/uitable v0.0.4
go: downloading github.com/pkg/errors v0.9.1
go: downloading golang.org/x/term v0.45.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/spf13/pflag v1.0.10
go: downloading github.com/spf13/cobra v1.10.2
go: downloading gopkg.in/evanphx/json-patch.v4 v4.13.0
go: downloading k8s.io/utils v0.0.0-20260626114624-be93311217bd
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading sigs.k8s.io/randfill v1.0.0
go: downloading github.com/evanphx/json-patch/v5 v5.9.11
go: downloading github.com/evanphx/json-patch v5.9.11+incompatible
go: downloading github.com/labstack/gommon v0.4.2
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading k8s.io/kube-openapi v0.0.0-20260721132016-d427ff9ee9ad
go: downloading sigs.k8s.io/structured-merge-diff/v6 v6.4.2
go: downloading github.com/go-logr/logr v1.4.3
go: downloading github.com/philhofer/fwd v1.2.0
go: downloading golang.org/x/text v0.41.0
go: downloading dario.cat/mergo v1.0.1
go: downloading github.com/Masterminds/goutils v1.1.1
go: downloading github.com/huandu/xstrings v1.5.0
go: downloading github.com/mitchellh/copystructure v1.2.0
go: downloading github.com/shopspring/decimal v1.4.0
go: downloading github.com/spf13/cast v1.7.0
go: downloading github.com/fatih/color v1.19.0
go: downloading github.com/cyphar/filepath-securejoin v0.6.1
go: downloading github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
go: downloading github.com/BurntSushi/toml v1.6.0
go: downloading github.com/gobwas/glob v0.2.3
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading k8s.io/kubectl v0.35.1
go: downloading github.com/containerd/containerd v1.7.30
go: downloading github.com/opencontainers/image-spec v1.1.1
go: downloading oras.land/oras-go/v2 v2.6.0
go: downloading github.com/Masterminds/squirrel v1.5.4
go: downloading github.com/jmoiron/sqlx v1.4.0
go: downloading github.com/lib/pq v1.10.9
go: downloading github.com/rubenv/sql-migrate v1.8.1
go: downloading github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de
go: downloading github.com/moby/term v0.5.2
go: downloading github.com/google/gnostic-models v0.7.0
go: downloading go.yaml.in/yaml/v2 v2.4.4
go: downloading golang.org/x/sync v0.22.0
go: downloading sigs.k8s.io/kustomize/api v0.21.1
go: downloading sigs.k8s.io/kustomize/kyaml v0.21.1
go: downloading google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730
go: downloading github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
go: downloading github.com/peterbourgon/diskv v2.0.1+incompatible
go: downloading github.com/fxamacker/cbor/v2 v2.9.1
go: downloading golang.org/x/oauth2 v0.34.0
go: downloading golang.org/x/time v0.15.0
go: downloading github.com/mattn/go-colorable v0.1.14
go: downloading github.com/mattn/go-isatty v0.0.20
go: downloading github.com/valyala/fasttemplate v1.2.2
go: downloading github.com/json-iterator/go v1.1.12
go: downloading github.com/mitchellh/reflectwalk v1.0.2
go: downloading github.com/mattn/go-runewidth v0.0.23
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading k8s.io/component-base v0.35.3
go: downloading github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f
go: downloading github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
go: downloading k8s.io/apiserver v0.35.3
go: downloading github.com/containerd/log v0.1.0
go: downloading github.com/containerd/platforms v0.2.1
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/lann/builder v0.0.0-20180802200727-47ae307949d0
go: downloading github.com/go-gorp/gorp/v3 v3.1.0
go: downloading github.com/go-openapi/swag v0.27.1
go: downloading github.com/go-openapi/jsonreference v1.0.0
go: downloading github.com/google/btree v1.1.3
go: downloading github.com/x448/float16 v0.8.4
go: downloading github.com/valyala/bytebufferpool v1.0.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee
go: downloading github.com/clipperhouse/uax29/v2 v2.7.0
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading github.com/chai2010/gettext-go v1.0.2
go: downloading github.com/MakeNowJust/heredoc v1.0.0
go: downloading github.com/mitchellh/go-wordwrap v1.0.1
go: downloading github.com/russross/blackfriday/v2 v2.1.0
go: downloading github.com/containerd/errdefs v0.3.0
go: downloading google.golang.org/grpc v1.78.0
go: downloading github.com/sirupsen/logrus v1.9.4
go: downloading github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0
go: downloading github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c
go: downloading github.com/go-openapi/jsonpointer v1.0.0
go: downloading github.com/go-openapi/swag/cmdutils v0.27.1
go: downloading github.com/go-openapi/swag/conv v0.27.1
go: downloading github.com/go-openapi/swag/fileutils v0.27.1
go: downloading github.com/go-openapi/swag/jsonutils v0.27.1
go: downloading github.com/go-openapi/swag/loading v0.27.1
go: downloading github.com/go-openapi/swag/mangling v0.27.1
go: downloading github.com/go-openapi/swag/netutils v0.27.1
go: downloading github.com/go-openapi/swag/stringutils v0.27.1
go: downloading github.com/go-openapi/swag/typeutils v0.27.1
go: downloading github.com/go-openapi/swag/yamlutils v0.27.1
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/go-errors/errors v1.5.1
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409
go: downloading github.com/emicklei/go-restful/v3 v3.13.0
go: downloading github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00
go: downloading github.com/xlab/treeprint v1.2.0
go: downloading github.com/go-openapi/swag/pools v0.27.1
go: complete-example imports
	github.com/taking/kubemigrate/pkg/client/velero imports
	k8s.io/client-go/kubernetes/scheme imports
	k8s.io/api/autoscaling/v2beta1: cannot find module providing package k8s.io/api/autoscaling/v2beta1
go: complete-example imports
	github.com/taking/kubemigrate/pkg/client/velero imports
	k8s.io/client-go/kubernetes/scheme imports
	k8s.io/api/autoscaling/v2beta2: cannot find module providing package k8s.io/api/autoscaling/v2beta2
go: complete-example imports
	github.com/taking/kubemigrate/pkg/client/velero imports
	k8s.io/client-go/kubernetes/scheme imports
	k8s.io/api/scheduling/v1alpha1: cannot find module providing package k8s.io/api/scheduling/v1alpha1

File name: example/kubernetes/go.sum
go: module k8s.io/api@v0.37.0 requires go >= 1.26.0; switching to go1.26.8
go: downloading golang.org/x/net v0.57.0
go: downloading golang.org/x/crypto v0.54.0
go: downloading go.yaml.in/yaml/v3 v3.0.4
go: downloading golang.org/x/text v0.40.0
go: kubernetes-example imports
	github.com/taking/kubemigrate/pkg/client/kubernetes imports
	k8s.io/client-go/kubernetes imports
	k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1 imports
	k8s.io/api/autoscaling/v2beta1: cannot find module providing package k8s.io/api/autoscaling/v2beta1
go: kubernetes-example imports
	github.com/taking/kubemigrate/pkg/client/kubernetes imports
	k8s.io/client-go/kubernetes imports
	k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2 imports
	k8s.io/api/autoscaling/v2beta2: cannot find module providing package k8s.io/api/autoscaling/v2beta2
go: kubernetes-example imports
	github.com/taking/kubemigrate/pkg/client/kubernetes imports
	k8s.io/client-go/kubernetes imports
	k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1 imports
	k8s.io/api/scheduling/v1alpha1: cannot find module providing package k8s.io/api/scheduling/v1alpha1

@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 5 times, most recently from b234372 to 04784f4 Compare August 29, 2026 01:03
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch 2 times, most recently from b4bb658 to 248557a Compare September 10, 2026 02:06
@renovate
renovate Bot force-pushed the renovate/go-minorpatch-updates branch from 248557a to c255be6 Compare September 14, 2026 05:30
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