Skip to content

v0.11.0 breaking change

Compare
Choose a tag to compare
@davidovich davidovich released this 24 Aug 01:18
3acecc0

Breaking change on summon.config.yaml

This release brings a breaking change on the handle format of exec handles. The handles are now arrays of params. Prior to this they were of string format, this has proved difficult to use when passing multiple args to the invoker.

Before:

...
exec: 
  bash:
    echo: echo david

After (notice the array):

...
exec:
  bash:
    echo: [echo, david]