chore: bump Go to 1.26.1 and update all dependencies to latest#1070
Open
ddusht wants to merge 2 commits intopaketo-buildpacks:mainfrom
Open
chore: bump Go to 1.26.1 and update all dependencies to latest#1070ddusht wants to merge 2 commits intopaketo-buildpacks:mainfrom
ddusht wants to merge 2 commits intopaketo-buildpacks:mainfrom
Conversation
Author
|
@jericop — this is fairly urgent. Our company is consuming this downstream, and the Go packages not being updated are starting to cause security issues. Could you please take a look when you get a chance? Thanks so much! |
Author
|
will close out: #1063 |
5 tasks
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.
Summary
Bumps the Go toolchain version from
1.24.6to1.26.1and updates allGo module dependencies to their latest available versions via
go get -u ./....Changes
1.24.6→1.26.1replacedirectives to pin three transitive dependencies that haveintroduced breaking interface changes not yet handled by upstream packages
Pinned Dependencies
Three
replacedirectives are required to keep the build compiling afterthe dependency updates:
github.com/diskfs/go-diskfsv1.7.0ReadDirreturn type from[]os.FileInfoto[]fs.DirEntry, breakingsyft'sinternal/file/squashfs.gowhich passes the result towalkDiskDir(... os.FileInfo ...)github.com/sylabs/squashfsv1.0.5fs.DirEntryusage that is incompatible with howsyftcallswalkDiskDir, which expectsos.FileInfogithub.qkg1.top/google/go-containerregistryv0.20.6daemon.Clientinterface to usegithub.qkg1.top/moby/moby/client, breakingoccam@v0.31.0which was built against thegithub.qkg1.top/docker/docker/clientinterfaceFollow-up
The
replacedirectives should be removed once:occamis updated to supportgo-containerregistryv0.21+syftis updated to useio/fs.ReadDirFSthroughoutChecklist