Releases: vmfarms/sidepro
Releases · vmfarms/sidepro
v0.3.20
v0.3.19
What's Changed
- Infer application name from source.
- It is no longer required to specify a
-n <app_name>parameter when usingsidepro push.sideprowill infer the name based on the source provided, using the following logic:- If user supplied a
-n <app_name>option, use that name. - If the source is a directory, use the directory name. Example: If the current working directory is
/Users/me/projectname, it will use the nameprojectname. Similarly if-p /path/to/myappis used,myappwill be the name. - If the source if an archive (
*.zip), use the name of the file as the name. Example:myappwill be used formyapp.zip. - If the source is a Git repo, the name of the repo will be the name.
- If the source is a Docker image, the name of the image (without tags) will be the name.
- If user supplied a
- User will be prompted to override the name a project is pushed without an explicit
-nflag. sideprowill create asidepro.ymlfile with the name of the app in the location the command is run to persist the name acrosspushes.
- It is no longer required to specify a
- Add completions! Apply with the following or place in your
.bashrcor.zshrc:eval "$(sidepro completions)"
- Remove dependence on
wget. - Make install script more robust.
v0.3.18
What's Changed
- fix: account for lack of newline in env var files by @hany in https://github.com/vmfarms/sidepro-cli/pull/71
- Fix/paketo full buildpack by @falpires in https://github.com/vmfarms/sidepro-cli/pull/72
Full Changelog: https://github.com/vmfarms/sidepro-cli/compare/v0.3.17...v0.3.18