Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 05 Feb 23:59
· 3534 commits to main since this release
7b8462b

Minor Changes

  • b990d527 #1911 Thanks @davidkpiano! - Transitions with undefined targets will no longer exit and re-enter the state, which means that exit and entry actions will not be executed:

    // ...
    someState: {
      entry: [/* ... */],
      exit: [/* ... */],
      on: {
        SOME_EVENT: {
          // undefined target - will not exit/re-enter
          actions: [/* ... */]
        }
      }
    }
    // ...