Hi all,
I want to alert you to some changes we're going to be making to the step API. The changes are minimal, and shouldn't have an impact on existing plugins, but I want to make sure people are aware of it.
If you have your plugin dependencies pegged through govendor or similar, you should not be impacted. Existing plugin binaries will continue to work, and your plugin will continue to build.
If, however, you update your dependencies to the latest version of packer, you'll need to do two things:
2. Change your Step.Run signatures to have `context.Context` as the first parameter. I did this with `find . -iname "step_*.go" -exec gsed -i'' 's/func \(.*\)Run(/func \1Run(_ context.Context, /' {} \;`
Thanks!
--Matt Hooker