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.32.0 #53

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps xstate from 4.30.0 to 4.32.0.

Release notes

Sourced from xstate's releases.

xstate@4.32.0

Minor Changes

  • #3234 ce376b388 Thanks @​Andarist! - Added a StateValueFrom helper that can be used to extract valid state values from a machine. This might specifically be useful with typegen because typegenless state.matches accepts any anyway.

Patch Changes

  • #3215 44c66e74f Thanks @​tom-sherman! - Removing the timeout that's built in to waitFor is now supported by explicitly passing an Infinity value.

    Example usage:

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

    // This will const loggedInState = await waitFor( loginService, state => state.hasTag('loggedIn'), { timeout: Infinity } );

    This fixes a bug that causes waitFor to reject with an error immediately due to the behaviour of setTimeout.

  • #3230 780458c92 Thanks @​Andarist! - Fixed an issue with typegen types not being able to provide events that had a union of strings as their type (such as { type: 'INC' | 'DEC'; value: number; }).

  • #3252 a94dfd467 Thanks @​Andarist! - Fixed an issue with EventFrom not being able to extract events that had a union of strings as their type (such as { type: 'INC' | 'DEC'; value: number; }).

  • #3090 c4f73ca13 Thanks @​Andarist! - Fixed an issue with action objects not receiving correct event types when used in the second argument to the createMachine.

  • #3238 3df6335ef Thanks @​davidkpiano! - The typings for sendTo(...) have been fixed.

  • #3228 fe5f0e6c9 Thanks @​Andarist! - Fixed an issue with inline functions in the config object used as transition actions not having their argument types inferred.

  • #3252 a94dfd467 Thanks @​Andarist! - Fixed an issue with default TEvent ({ type: string }) not being correctly provided to inline transition actions.

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:

... (truncated)

Commits
  • bd4a332 Merge pull request #3225 from statelyai/changeset-release/main
  • 1bfef36 Version Packages
  • de66457 Merge pull request #3272 from brunocrosier/patch-1
  • f99bccd Add context object to typegen examples
  • 0c00e3f Merge pull request #3264 from alex-sherwin/patch-1
  • d24b746 Merge pull request #3265 from SerkanSipahi/main
  • 0f57680 Update docs/packages/xstate-react/index.md
  • 80f3d2b Update docs/packages/xstate-react/index.md
  • d2e54e7 removed asEffect and asLayoutEffect from docs because it no longer exists
  • 205f616 Adding useMachine/useInterpreter options clarity
  • 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 #54.