Skip to content

Commit

Permalink
Update libcnb from 0.14.0 to 0.15.0
Browse files Browse the repository at this point in the history
This also required updating `toml` to 0.8 to prevent a type mismatch
error due to the `jvm-function-invoker` buildpack using
`libherokubuildpack::toml::toml_select_value` (which itself  is now using
toml 0.8).

GUS-W-14354898.
  • Loading branch information
edmorley committed Oct 24, 2023
1 parent 8dabacc commit 5fe4f55
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 25 deletions.
124 changes: 104 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ publish = false
[workspace.dependencies]
# libcnb has a much bigger impact on buildpack behaviour than any other dependencies,
# so it's pinned to an exact version to isolate it from lockfile refreshes.
libcnb = "=0.14.0"
libcnb-test = "=0.14.0"
libherokubuildpack = "=0.14.0"
toml = "0.7"
libcnb = "=0.15.0"
libcnb-test = "=0.15.0"
libherokubuildpack = "=0.15.0"
toml = "0.8"
buildpacks-jvm-shared = { path = "shared" }
buildpacks-jvm-shared-test = { path = "shared-test" }
2 changes: 1 addition & 1 deletion buildpacks/jvm-function-invoker/tests/integration/smoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fn smoke_test_simple_function() {
BuildConfig::new(DEFAULT_INTEGRATION_TEST_BUILDER, "test-apps/simple-function").buildpacks([
BuildpackReference::Other(String::from("heroku/jvm")),
BuildpackReference::Other(String::from("heroku/maven")),
BuildpackReference::Crate,
BuildpackReference::CurrentCrate,
]),
|context| {
context.start_container(
Expand Down

0 comments on commit 5fe4f55

Please sign in to comment.