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
.sidepro
will 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/myapp
is used,myapp
will be the name. - If the source if an archive (
*.zip
), use the name of the file as the name. Example:myapp
will 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
-n
flag. sidepro
will create asidepro.yml
file with the name of the app in the location the command is run to persist the name acrosspush
es.
- It is no longer required to specify a
- Add completions! Apply with the following or place in your
.bashrc
or.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 vmfarms/sidepro-cli#71
- Fix/paketo full buildpack by @falpires in vmfarms/sidepro-cli#72
Full Changelog: vmfarms/sidepro-cli@v0.3.17...v0.3.18