Skip to content

Commit

Permalink
Update to buildpack API 0.10, invoke processes via bash (#205)
Browse files Browse the repository at this point in the history
* Update to buildpack API 0.10, update to libcnb 0.18, invoke via bash

* Drop stacks from buildpack.toml (no longer supported)

* Cleanup in gitignore

* Update changelog with note about Buildpack API 0.10

* Use String::from to match existing style

* Move user provided command to args[0]

* Update changelog with implicit changes from buildpack api 0.10

* Add integration test for argument overrides

* Remove trailing comma after last element in `vec![]` usages

---------

Co-authored-by: Ed Morley <[email protected]>
  • Loading branch information
joshwlewis and edmorley authored Feb 22, 2024
1 parent a35b911 commit 891de26
Show file tree
Hide file tree
Showing 7 changed files with 225 additions and 932 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/target
/packaged
.tool-versions
.idea
.DS_Store
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Update to Buildpack API 0.10. ([#205](https://github.com/heroku/procfile-cnb/pull/205)
- All launch processes are now wrapped in `bash -c` instead of using CNB's `direct = false` directive, which is no longer available.
- `.profile` and `.profile.d` scripts will no longer be automatically sourced.
- CNB Lifecycle 0.17 or newer is now required.

## [2.0.2] - 2023-10-24

### Changed
Expand Down
Loading

0 comments on commit 891de26

Please sign in to comment.