github-actions
released this
05 Feb 23:59
·
3534 commits
to main
since this release
Minor Changes
-
b990d527
#1911 Thanks @davidkpiano! - Transitions withundefined
targets will no longer exit and re-enter the state, which means thatexit
andentry
actions will not be executed:// ... someState: { entry: [/* ... */], exit: [/* ... */], on: { SOME_EVENT: { // undefined target - will not exit/re-enter actions: [/* ... */] } } } // ...