Skip to content

Releases: beforeyoubid/serverless-step-functions-offline

v2.5.0

18 Feb 01:53
Compare
Choose a tag to compare

Release notes:

  • Add support for loading yaml references if serverless has not (#12) 🚀

v2.4.2

18 Feb 01:02
Compare
Choose a tag to compare

Release notes:

  • work on fixing context to ensure completion of all states 🦾
  • fixing module to appropriately exit when done 🐛
  • ensuring Wait states always pass the event forward 🐛

v2.4.0

14 Feb 23:46
Compare
Choose a tag to compare

New features:

  • Retry support with additional support for features (BackoffRate, IntervalSeconds and MaxAttempts) 🚀

v2.3.0

12 Feb 00:22
Compare
Choose a tag to compare

Changes in this release:

  • Fixed Map feature to ensure completion of all map items 🐛
  • Added support for Async functions (this came as a side effect of moving to typescript and adjusting require statements to imports) 🚀

On a side note we have some issues/things to describe:

Due to how completion contexts are managed in this plugin we believe Tasks following Map states may not be executed with the correct event content. Fixing this will require moving class-variable-based contexts into more of a managed local variable or some sort of class symbol table. This will require changes to a majority of the module and so will take some time.

Ideally the next priority is support for Catch and Retry but ensuring Map states act correctly follows that.

v2.2.2

09 Feb 05:26
Compare
Choose a tag to compare

Fixed SLS plugin referencing by transpiling with babel to get default exports working.

v2.2.1

09 Feb 04:21
Compare
Choose a tag to compare

Changes:

  • Swapped manual ASL typings to asl-types
  • Cleaned up process block & added type guards to improve & correct flows for processing.

v 2.2.0

09 Feb 01:20
Compare
Choose a tag to compare

This is the first release from forking original repo. Contains a few things:

  • Converting all code to TypeScript 🚀
  • Adding support for Map by way of merging PR vkkis93#47