Ebro 0.11.0
Breaking Changes
- Now the
interactive
andlabels
properties introduced in version0.10.0
are included inextends
operations.
Environment variable expansion
Expanding environment variables now supports referencing variables that were defined before the current variable in the same map.
environment:
VERSION: "1.0.0"
tasks:
default:
environment:
VERSION: "2.0.0"
VERSION_RC: "${VERSION}-rc"
script: echo "$VERSION_RC"
Running the Ebro.yaml
file above would result in:
- before:
1.0.0-rc
- now:
2.0.0-rc
Miscellanea
- Change on the
ebrow
workspace script: Now usingshasum
instead ofsha256sum
so the used command behaves the same in both Linux and MacOs.