Skip to content

Improvements to `sam package` command

Compare
Choose a tag to compare
@sanathkr sanathkr released this 07 Nov 00:38
· 2513 commits to master since this release
f183dbb

Improvements to sam package command

SAM CLI now supports running sam package without AWS CLI installed. This release also includes user experience improvements to interactive sam init command.

Breaking Change

sam local invoke command will no longer require an event data by default. Previously, this behavior was available by passing the --no-event parameter. To pass event data via stdin, you can use the --event parameter with a value of -.

Example: echo '{"message": "Hey, are you there?" }' | sam local invoke "HelloWorldFunction" --event -

Changelog