Bump imgutil to latest and docker from v27.5.1 to v28.3.0#2406
Merged
jjbustamante merged 3 commits intobuildpacks:mainfrom Jun 27, 2025
Merged
Bump imgutil to latest and docker from v27.5.1 to v28.3.0#2406jjbustamante merged 3 commits intobuildpacks:mainfrom
jjbustamante merged 3 commits intobuildpacks:mainfrom
Conversation
2138f82 to
51c29c8
Compare
Signed-off-by: Jerico Pena <jericop@gmail.com>
Signed-off-by: Jerico Pena <jericop@gmail.com>
Signed-off-by: Jerico Pena <jericop@gmail.com>
sgaist
approved these changes
Jun 27, 2025
jjbustamante
approved these changes
Jun 27, 2025
Member
jjbustamante
left a comment
There was a problem hiding this comment.
Approved: Docker v27.5.1 → v28.3.0 Interface Migration
Summary
This PR successfully migrates from deprecated Docker interfaces to their v28.3.0 replacements. The changes are primarily structural with minimal functional impact.
Key Changes Reviewed
✅ CommonAPIClient → APIClient: Clean migration across 19 files with no functional differences
✅ ImageInspectWithRaw → ImageInspect: Simplified API - raw bytes were unused in all locations
✅ DSA SSH Key Removal: Security improvement removing deprecated DSA support
Impact Assessment
- Low Risk: Interface changes are structural only
- Breaking Change: DSA users need to migrate to RSA/ECDSA/Ed25519 keys
- Library Compatibility: Critical for jam and other pack library consumers
Verification
- All deprecated interface usage patterns identified and replaced
- Good abstraction layer in pkg/client/docker.go isolates changes
- imgutil alignment ensures library compatibility
The migration is clean and necessary for maintaining compatibility with projects using pack as a library.
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
This change updates docker library from v27.5.1 to v28.3.0 in order to match what is used in imgutil. This is necessary for any projects that use pack as a library, such as jam, because there are removed types and other changes which cause build and test errors unless everything is using the same version. It also removes DSA as a supported key type from sshdialer.
Output
Before
After
Documentation
Related
Resolves #___