Conversation
Signed-off-by: Jesse Brown <jabrown85@gmail.com>
Contributor
Author
|
buildpacks/spec#419 has been merged. Once 0.15 is cut, this can be merged in and released. |
jkutner
approved these changes
Dec 2, 2025
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 pull request introduces support for merging system buildpacks (defined in
system.toml) into the buildpack order for Platform API >= 0.15. It includes changes to the detector phase, CLI flags, configuration handling, and adds comprehensive tests to verify the new behavior. The most important changes are grouped below.Platform API 0.15+ system buildpack support:
system.toml) with the buildpack order when Platform API >= 0.15. System buildpacks are prepended and appended to each group in the order. [1] [2] [3] [4]--systemto specify the path tosystem.tomlfor relevant commands, and enabled it for Platform API >= 0.15. [1] [2] [3]Configuration and handler updates:
ConfigHandlerinterface now supports reading system buildpacks via a newReadSystemmethod.getOrderWithSystemmethod, which merges system buildpacks as needed.Testing and validation:
system.tomlandmiddle_order.tomlto support acceptance tests. [1] [2]Minor code cleanup:
Release notes
Related
Implements Spec Changes here
Context