sonntam / node-red-contrib-xstate-machine

A xstate-based state machine implementation using state-machine-cat visualization for node red.
MIT License
22 stars 8 forks source link

Bump xstate from 4.30.0 to 4.31.0 #50

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps xstate from 4.30.0 to 4.31.0.

Release notes

Sourced from xstate's releases.

xstate@4.31.0

Minor Changes

  • #3190 fbf5ca0ad Thanks @​davidkpiano! - The waitFor(...) helper function, which asynchronously waits for an actor's emitted value to satisfy a predicate before a timeout, is now available.

    Example usage:

    import { waitFor } from 'xstate/lib/waitFor';
    

    // ... const loginService = interpret(loginMachine).start();

    const loggedInState = await waitFor(loginService, state => state.hasTag('loggedIn') );

    loggedInState.hasTag('loggedIn'); // true

  • #3200 56c0a36 Thanks @​Andarist! - Subscribing to a stopped interpreter will now always immediately emit its state and call a completion callback.

Patch Changes

  • #3166 be4c5c74d Thanks @​Andarist! - Fixed an issue with state.tags not having correct values when resolving micro transitions (taken in response to raised events). This was creating issues when checking tags in guards.

  • #3171 14f8b4785 Thanks @​Andarist! - Fixed an issue with onDone on parallel states not being "called" correctly when a parallel state had a history state defined directly on it.

  • #2939 360e85462 Thanks @​Andarist! - Fixed issues with not disposing some cached internal values when stopping interpreters, which could have led to issues when starting such an interpreter again.

  • #3153 b36ef9dda Thanks @​Andarist! - Made type displays (like in the IDE tooltips etc) more readable by using a type interface for the internal ResolveTypegenMeta type.

xstate@4.30.6

Patch Changes

  • #3131 d9a0bcfc9 Thanks @​Andarist! - Fixed an issue with event type being inferred from too many places within createMachine call and possibly ending up as any/AnyEventObject for the entire machine.

  • #3133 4feef9d47 Thanks @​fw6! - Fixed compatibility with esoteric Mini Program environment where global object was available but global.console wasn't.

  • #3140 502ffe91a Thanks @​Andarist! - Fixed an issue with interpreters started using a persisted state not being "resolved" in full. This could cause some things, such as after transitions, not being executed correctly after starting an interpreter like this.

  • #3147 155539c85 Thanks @​Andarist! - Fixed a TS inference issue causing some functions to infer the constraint type for the event type even though a StateMachine passed to the function was parametrized with a concrete type for the event. More information can be found here.

... (truncated)

Commits
  • 7a698d4 Version Packages (#3155)
  • f3d6314 Fixed an issue that caused sending the same event multiple times to the inspe...
  • 2e6a361 Merge pull request #3207 from cunneen/patch-1
  • ce3d88b Update showcase.md
  • 518d2f9 Merge pull request #3190 from statelyai/davidkpiano/waitFor
  • 281f1fe Add missing changeset about changes in the core from #3200 (#3203)
  • 09e2130 Fixed an issue that prevented some states, containing broken~ toJSON, from be...
  • 56c0a36 waitFor fixes for cases when starting to waitFor stopped interpreter (#3200)
  • 8e171eb Consistently dispose internal handles in waitFor (#3201)
  • 4e9a938 Tweak changeset related to the "maximum call stack size exceeded" issue in `@...
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 years ago

Superseded by #53.