Skip to content

0.3.0(28.01.2017)

Compare
Choose a tag to compare
@horike37 horike37 released this 28 Jan 12:18
· 845 commits to master since this release

Breaking Changes

The structure of serverless.yaml has changed as follows.
Please edit serverless.yaml with updating the plugin.

before

stepFunctions:
  hellostepfunc:
    Comment: "A Hello World example of the Amazon States Language using an AWS External Lambda Function"
    StartAt: HelloWorld

after

stepFunctions:
  stateMachines:
    hellostepfunc:
      Comment: "A Hello World example of the Amazon States Language using an AWS External Lambda Function"
      StartAt: HelloWorld

Feature

  • Improved outputs of all commands.
    2017-01-28 21 11 51
  • You can deploy and remove multiple statemachines in bulk. sls deploy stepf and sls remove stepf is to be no longer require statemachine specification
  • The structure of serverless.yaml has changed