Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update lifecycle from v0.19.0 to v0.19.2 (and v0.17.5 to v0.17.6) #493

Merged
merged 2 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ For more information, see: [What is a builder?](https://buildpacks.io/docs/for-p
| Builder Image | Base Build Image | Base Run Image | Lifecycle Version | Buildpack Types | Status |
|-----------------------------------------------------|---------------------------------------------|---------------------------------------|-------------------|------------------|-------------|
| [`heroku/buildpacks:18`][buildpacks-tags] | [`heroku/heroku:18-cnb-build`][heroku-tags] | [`heroku/heroku:18-cnb`][heroku-tags] | 0.16.1 | Shimmed + Native | End-of-life |
| [`heroku/buildpacks:20`][buildpacks-tags] | [`heroku/heroku:20-cnb-build`][heroku-tags] | [`heroku/heroku:20-cnb`][heroku-tags] | 0.17.5 | Shimmed + Native | End-of-life |
| [`heroku/builder-classic:22`][builder-classic-tags] | [`heroku/heroku:22-cnb-build`][heroku-tags] | [`heroku/heroku:22-cnb`][heroku-tags] | 0.17.5 | Shimmed | End-of-life |
| [`heroku/builder:20`][builder-tags] | [`heroku/heroku:20-cnb-build`][heroku-tags] | [`heroku/heroku:20-cnb`][heroku-tags] | 0.19.0 | Native | Available |
| [`heroku/builder:22`][builder-tags] | [`heroku/heroku:22-cnb-build`][heroku-tags] | [`heroku/heroku:22-cnb`][heroku-tags] | 0.19.0 | Native | Recommended |
| [`heroku/buildpacks:20`][buildpacks-tags] | [`heroku/heroku:20-cnb-build`][heroku-tags] | [`heroku/heroku:20-cnb`][heroku-tags] | 0.17.6 | Shimmed + Native | End-of-life |
| [`heroku/builder-classic:22`][builder-classic-tags] | [`heroku/heroku:22-cnb-build`][heroku-tags] | [`heroku/heroku:22-cnb`][heroku-tags] | 0.17.6 | Shimmed | End-of-life |
| [`heroku/builder:20`][builder-tags] | [`heroku/heroku:20-cnb-build`][heroku-tags] | [`heroku/heroku:20-cnb`][heroku-tags] | 0.19.2 | Native | Available |
| [`heroku/builder:22`][builder-tags] | [`heroku/heroku:22-cnb-build`][heroku-tags] | [`heroku/heroku:22-cnb`][heroku-tags] | 0.19.2 | Native | Recommended |

The builder images above include buildpack support for the following languages: Go, Java, Node.js, PHP, Python, Ruby & Scala. The `heroku/builder-classic:22` builder image variant additionally supports Clojure.

Expand Down
2 changes: 1 addition & 1 deletion builder-20/builder.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-image = "heroku/heroku:20-cnb-build"
run-image = "heroku/heroku:20-cnb"

[lifecycle]
version = "0.19.0"
version = "0.19.2"

[[buildpacks]]
id = "heroku/go"
Expand Down
2 changes: 1 addition & 1 deletion builder-22/builder.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-image = "heroku/heroku:22-cnb-build"
run-image = "heroku/heroku:22-cnb"

[lifecycle]
version = "0.19.0"
version = "0.19.2"

[[buildpacks]]
id = "heroku/go"
Expand Down
2 changes: 1 addition & 1 deletion builder-classic-22/builder.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ run-image = "heroku/heroku:22-cnb"
# We have to use an older lifecycle version in this builder image since lifecycle 0.18.0
# dropped support for Buildpack API versions <0.7, and cnb-shim is currently using v0.4:
# https://github.com/heroku/cnb-shim/issues/69
version = "0.17.5"
version = "0.17.6"

[[buildpacks]]
id = "heroku/builder-eol-warning"
Expand Down
2 changes: 1 addition & 1 deletion buildpacks-20/builder.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ run-image = "heroku/heroku:20-cnb"
# We have to use an older lifecycle version in this builder image since lifecycle 0.18.0
# dropped support for Buildpack API versions <0.7, and cnb-shim is currently using v0.4:
# https://github.com/heroku/cnb-shim/issues/69
version = "0.17.5"
version = "0.17.6"

[[buildpacks]]
id = "heroku/builder-eol-warning"
Expand Down
2 changes: 1 addition & 1 deletion salesforce-functions/builder.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ run-image = "heroku/heroku:22-cnb"
# - heroku/nodejs-function is still using the old Bash based NPM CNB (which is using Buildpack API 0.6)
# - we know of at least one custom buildpack that's also using a legacy Buildpack API:
# https://github.com/CSGAMERSServices/puppeteer-heroku-buildpack
version = "0.17.5"
version = "0.17.6"

[[buildpacks]]
id = "heroku/java-function"
Expand Down