fix(deps): update Go packages to latest patch revisions for upstream bug fixes - #1136
Merged
Merged
Conversation
…bug fixes Update key upstream Go packages across all Go applications to the latest patch revisions on their current release lines, mirroring the equivalent updates made on the 3.8.0 release branch: - assets-server: cobra 1.7.0 -> 1.10.2, pflag 1.0.5 -> 1.0.10 - node-ca-injector: k8s.io modules 0.34.2 -> 0.34.10, controller-runtime 0.22.4 -> 0.22.5 - installer/operator: k8s.io modules 0.35.2 -> 0.35.7 - client-programs: k8s.io modules 0.36.0 -> 0.36.3, controller-runtime 0.24.0 -> 0.24.1 Also replace klauspost/compress 1.18.1 in node-ca-injector, which has been retracted by the upstream maintainer, with 1.19.1, and in client-programs bump klauspost/compress to 1.19.1 (GO-2026-5841) and opentelemetry modules to 1.44.0 (GO-2026-5158), clearing the same advisories already addressed on the 3.8.0 release branch. Remaining govulncheck findings in client-programs are limited to advisories with no released fix.
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.
Updates key upstream Go packages across all four Go applications to the latest patch revisions on their current release lines, mirroring the equivalent updates already made on the
release/3.8.0branch (dad07b0).Changes
Notes
GOWORK=off go mod tidy;go work syncwas deliberately not used as it would force every workspace member up to the workspace-wide maximum versions (k8s 0.36.x / controller-runtime 0.24.x), which is not wanted for node-ca-injector and installer/operator.go.work.sumonly gained the new hashes needed for workspace builds.make build-client-programs) and a workspace build from the repository root passes.