Skip to content

v13.10.1

Latest
Compare
Choose a tag to compare
@j3k0 j3k0 released this 19 Jan 15:18
· 9 commits to master since this release
09253c5

Fix store.initialize() when passed a single value

store.initialize() was supposed to work when passed a single value instead of an array. It turns out there was a regression, fixed with this release.

Add store.when().initiated(transaction)

Allows monitoring INITIATED (new) transactions.

store.when().initiated(transaction => {
  // a new transaction has been initiated.
});