Bump all dependencies to their latest revisions#4532
Merged
Conversation
✅ Deploy Preview for kptdocs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates kpt’s Go toolchain pin and bumps Go module dependencies across the repo by running go get -u and go mod tidy in each directory containing a go.mod.
Changes:
- Bump the pinned Go toolchain patch version in the root Makefile.
- Update dependency versions in the root module (
go.mod/go.sum) and thehealthchecksubmodule. - Remove all dependencies from
documentation/go.mod(and emptydocumentation/go.sum) as a result ofgo mod tidy.
Reviewed changes
Copilot reviewed 4 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Makefile | Bumps GOLANG_VERSION from 1.26.2 to 1.26.3. |
| go.mod | Updates a set of direct + indirect module versions (K8s libs, x/*, etc.). |
| go.sum | Updates checksums to match the upgraded dependencies. |
| healthcheck/go.mod | Bumps controller-runtime and apimachinery versions; tidies indirects. |
| healthcheck/go.sum | Updates checksums for the healthcheck module dependency graph. |
| documentation/go.mod | Removes the Docsy theme module requirement entirely (now no require entries). |
| documentation/go.sum | Becomes empty after tidying removed all tracked deps. |
Comments suppressed due to low confidence (1)
documentation/go.mod:3
documentation/config.tomldeclarestheme = ["github.com/google/docsy"], which relies on Hugo modules. Runninggo mod tidyindocumentation/removed the Docsy module requirement, leavingdocumentation/go.modwith norequireentries (andgo.sumempty), which is likely to breakhugobuilds that need Docsy.
Consider restoring the Docsy dependency in documentation/go.mod and managing this module with hugo mod tidy (or by explicitly configuring Hugo [module] imports), rather than go mod tidy, so the theme module remains tracked.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: liamfallon <liam.fallon@est.tech>
Signed-off-by: liamfallon <liam.fallon@est.tech>
Signed-off-by: liamfallon <liam.fallon@est.tech>
Signed-off-by: liamfallon <liam.fallon@est.tech>
Signed-off-by: liamfallon <liam.fallon@est.tech>
Signed-off-by: liamfallon <liam.fallon@est.tech>
b10c30a to
b199238
Compare
Signed-off-by: liamfallon <liam.fallon@est.tech>
Signed-off-by: liamfallon <liam.fallon@est.tech>
Signed-off-by: liamfallon <liam.fallon@est.tech>
mozesl-nokia
approved these changes
May 21, 2026
aravindtga
approved these changes
May 21, 2026
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 is an upgrade of all the dependencies in the kpt repo to their latest version. The PR was created by running
go get -uon each directory int he repo that contains a "go.mod" file and then runninggo mod tidyto update the "go.sum" files.