Releases: beforeyoubid/serverless-step-functions-offline
Releases · beforeyoubid/serverless-step-functions-offline
v2.5.0
v2.4.2
v2.4.0
v2.3.0
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 toimport
s) 🚀
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
v2.2.1
v 2.2.0
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