Skip to content

v0.8.0

Compare
Choose a tag to compare
@jeffbski jeffbski released this 14 Aug 03:54
· 355 commits to master since this release

Slight interface change, createLogic will now only accept either validate or transform since they now both refer to the same hook internally. Both aliases have been kept to help communicate the intent of the logic being used, though either can do the same things. So there are basically 2 hooks now validate/transfer and process. The internal code was greatly simplified in this change, I couldn't find a reason to justify the extra complexity. None of my non-test examples ever used both validate and transfer in the same logic so I doubt that this should be much of a problem. The migration path is simply to move all the logic into the validate or transform hook.

More documentation updates and a few jsfiddle async await examples and a full async await example were added.