xstate 4.28.1 → 4.30.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +218 -91
- package/README.md +5 -5
- package/dist/xstate.interpreter.js +1 -1
- package/dist/xstate.js +1 -1
- package/dist/xstate.web.js +2 -2
- package/es/Actor.d.ts +2 -3
- package/es/Actor.js +15 -6
- package/es/Machine.d.ts +5 -4
- package/es/State.d.ts +19 -15
- package/es/State.js +4 -9
- package/es/StateNode.d.ts +22 -17
- package/es/StateNode.js +14 -13
- package/es/actions.d.ts +3 -4
- package/es/actions.js +8 -3
- package/es/behaviors.d.ts +1 -1
- package/es/devTools.d.ts +3 -4
- package/es/each.d.ts +1 -1
- package/es/index.d.ts +6 -23
- package/es/index.js +12 -23
- package/es/interpreter.d.ts +35 -27
- package/es/interpreter.js +31 -21
- package/es/model.d.ts +2 -2
- package/es/model.types.d.ts +8 -9
- package/es/schema.d.ts +1 -0
- package/es/schema.js +2 -1
- package/es/scxml.d.ts +2 -2
- package/es/stateUtils.d.ts +6 -5
- package/es/typegenTypes.d.ts +121 -0
- package/es/types.d.ts +128 -64
- package/es/utils.d.ts +5 -5
- package/es/utils.js +5 -2
- package/lib/Actor.d.ts +2 -3
- package/lib/Actor.js +14 -5
- package/lib/Machine.d.ts +5 -4
- package/lib/State.d.ts +19 -15
- package/lib/State.js +4 -9
- package/lib/StateNode.d.ts +22 -17
- package/lib/StateNode.js +14 -13
- package/lib/actions.d.ts +3 -4
- package/lib/actions.js +5 -0
- package/lib/behaviors.d.ts +1 -1
- package/lib/devTools.d.ts +3 -4
- package/lib/each.d.ts +1 -1
- package/lib/index.d.ts +6 -23
- package/lib/index.js +17 -27
- package/lib/interpreter.d.ts +35 -27
- package/lib/interpreter.js +29 -19
- package/lib/model.d.ts +2 -2
- package/lib/model.types.d.ts +8 -9
- package/lib/schema.d.ts +1 -0
- package/lib/schema.js +2 -0
- package/lib/scxml.d.ts +2 -2
- package/lib/stateUtils.d.ts +6 -5
- package/lib/typegenTypes.d.ts +121 -0
- package/lib/typegenTypes.js +2 -0
- package/lib/types.d.ts +128 -64
- package/lib/utils.d.ts +5 -5
- package/lib/utils.js +5 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,132 @@
|
|
|
1
1
|
# xstate
|
|
2
2
|
|
|
3
|
+
## 4.30.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3063](https://github.com/statelyai/xstate/pull/3063) [`c826559b4`](https://github.com/statelyai/xstate/commit/c826559b4c495f64c85dd79f1d1262ae9e7d15bf) Thanks [@Andarist](https://github.com/Andarist)! - Fixed a type compatibility with Svelte's readables. It should be possible again to use XState interpreters directly as readables at the type-level.
|
|
8
|
+
|
|
9
|
+
* [#3051](https://github.com/statelyai/xstate/pull/3051) [`04091f29c`](https://github.com/statelyai/xstate/commit/04091f29cb80dd8e6c95e42668bd56f02f775973) Thanks [@Andarist](https://github.com/Andarist)! - Fixed type compatibility with functions accepting machines that were created before typegen was a thing in XState. This should make it possible to use the latest version of XState with `@xstate/vue`, `@xstate/react@^1` and some community packages.
|
|
10
|
+
|
|
11
|
+
Note that this change doesn't make those functions to accept machines that have typegen information on them. For that the signatures of those functions would have to be adjusted.
|
|
12
|
+
|
|
13
|
+
- [#3077](https://github.com/statelyai/xstate/pull/3077) [`2c76ecac5`](https://github.com/statelyai/xstate/commit/2c76ecac5de73fbb3a2376a0f66802480ec9549f) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with nested `state.matches` calls when the typegen was involved. The `state` ended up being `never` and thus not usable.
|
|
14
|
+
|
|
15
|
+
## 4.30.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#3040](https://github.com/statelyai/xstate/pull/3040) [`18dc2b3e2`](https://github.com/statelyai/xstate/commit/18dc2b3e2c49527b2155063490bb7295f1f06043) Thanks [@davidkpiano](https://github.com/davidkpiano)! - The `AnyState` and `AnyStateMachine` types are now available, which can be used to express any state and state machine, respectively:
|
|
20
|
+
|
|
21
|
+
```ts
|
|
22
|
+
import type { AnyState, AnyStateMachine } from 'xstate';
|
|
23
|
+
|
|
24
|
+
// A function that takes in any state machine
|
|
25
|
+
function visualizeMachine(machine: AnyStateMachine) {
|
|
26
|
+
// (exercise left to reader)
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
function logState(state: AnyState) {
|
|
30
|
+
// ...
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
* [#3042](https://github.com/statelyai/xstate/pull/3042) [`e53396f08`](https://github.com/statelyai/xstate/commit/e53396f083091db26c117000ce6ec070914360e9) Thanks [@suerta-git](https://github.com/suerta-git)! - Added the `AnyStateConfig` type, which represents any `StateConfig<...>`:
|
|
35
|
+
|
|
36
|
+
```ts
|
|
37
|
+
import type { AnyStateConfig } from 'xstate';
|
|
38
|
+
import { State } from 'xstate';
|
|
39
|
+
|
|
40
|
+
// Retrieving the state config from localStorage
|
|
41
|
+
const stateConfig: AnyStateConfig = JSON.parse(
|
|
42
|
+
localStorage.getItem('app-state')
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
// Use State.create() to restore state from config object with correct type
|
|
46
|
+
const previousState = State.create(stateConfig);
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## 4.30.0
|
|
50
|
+
|
|
51
|
+
### Minor Changes
|
|
52
|
+
|
|
53
|
+
- [#2965](https://github.com/statelyai/xstate/pull/2965) [`8b8f719c3`](https://github.com/statelyai/xstate/commit/8b8f719c36ab2c09fcd11b529cc6c9c89a06ad2e) Thanks [@satyasinha](https://github.com/satyasinha)! - All actions are now available in the `actions` variable when importing: `import { actions } from 'xstate'`
|
|
54
|
+
|
|
55
|
+
* [#2892](https://github.com/statelyai/xstate/pull/2892) [`02de3d44f`](https://github.com/statelyai/xstate/commit/02de3d44f8ca87b4dcb4153d3560da7d43ee9d0b) Thanks [@davidkpiano](https://github.com/davidkpiano)! - Persisted state can now be easily restored to a state compatible with the machine without converting it to a `State` instance first:
|
|
56
|
+
|
|
57
|
+
```js
|
|
58
|
+
// Persisting a state
|
|
59
|
+
someService.subscribe(state => {
|
|
60
|
+
localStorage.setItem('some-state', JSON.stringify(state));
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
// Restoring a state
|
|
64
|
+
const stateJson = localStorage.getItem('some-state');
|
|
65
|
+
|
|
66
|
+
// No need to convert `stateJson` object to a state!
|
|
67
|
+
const someService = interpret(someMachine).start(stateJson);
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Patch Changes
|
|
71
|
+
|
|
72
|
+
- [#3012](https://github.com/statelyai/xstate/pull/3012) [`ab431dcb8`](https://github.com/statelyai/xstate/commit/ab431dcb8bd67a3f0bcfc9b6ca31779bb15d14af) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with a reference to `@types/node` being inserted into XState's compiled output. This could cause unexpected issues in projects expecting APIs like `setTimeout` to be typed with browser compatibility in mind.
|
|
73
|
+
|
|
74
|
+
* [#3023](https://github.com/statelyai/xstate/pull/3023) [`642e9f5b8`](https://github.com/statelyai/xstate/commit/642e9f5b83dae79f016be8b657d25499077bbcda) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with states created using `machine.getInitialState` not being "resolved" in full. This could cause some things, such as `after` transitions, not being executed correctly after starting an interpreter using such state.
|
|
75
|
+
|
|
76
|
+
- [#2982](https://github.com/statelyai/xstate/pull/2982) [`a39145580`](https://github.com/statelyai/xstate/commit/a391455803171dcf03a1a0ec589f9dd603260d63) Thanks [@Andarist](https://github.com/Andarist)! - Marked all phantom properties on the `StateMachine` type as deprecated. This deprioritized them in IDEs so they don't popup as first suggestions during property access.
|
|
77
|
+
|
|
78
|
+
* [#2992](https://github.com/statelyai/xstate/pull/2992) [`22737adf2`](https://github.com/statelyai/xstate/commit/22737adf211971197f3809f406ac3bee54dc69f0) Thanks [@Andarist](https://github.com/Andarist), [@mattpocock](https://github.com/mattpocock)! - Fixed an issue with `state.context` becoming `any` after `state.matches` when typegen is used.
|
|
79
|
+
|
|
80
|
+
- [#2981](https://github.com/statelyai/xstate/pull/2981) [`edf60d67b`](https://github.com/statelyai/xstate/commit/edf60d67b3ca58eca96c7853410528c4e4abac7b) Thanks [@Andarist](https://github.com/Andarist)! - Moved an internal `@ts-ignore` to a JSDoc-style comment to fix consuming projects that do not use `skipLibCheck`. Regular inline and block comments are not preserved in the TypeScript's emit.
|
|
81
|
+
|
|
82
|
+
## 4.29.0
|
|
83
|
+
|
|
84
|
+
### Minor Changes
|
|
85
|
+
|
|
86
|
+
- [#2674](https://github.com/statelyai/xstate/pull/2674) [`1cd26811c`](https://github.com/statelyai/xstate/commit/1cd26811cea441366a082b0f77c7a6ffb135dc38) Thanks [@Andarist](https://github.com/Andarist)! - Using `config.schema` becomes the preferred way of "declaring" TypeScript generics with this release:
|
|
87
|
+
|
|
88
|
+
```js
|
|
89
|
+
createMachine({
|
|
90
|
+
schema: {
|
|
91
|
+
context: {} as { count: number },
|
|
92
|
+
events: {} as { type: 'INC' } | { type: 'DEC' }
|
|
93
|
+
}
|
|
94
|
+
})
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
This allows us to leverage the inference algorithm better and unlocks some exciting possibilities for using XState in a more type-strict manner.
|
|
98
|
+
|
|
99
|
+
* [#2674](https://github.com/statelyai/xstate/pull/2674) [`1cd26811c`](https://github.com/statelyai/xstate/commit/1cd26811cea441366a082b0f77c7a6ffb135dc38) Thanks [@Andarist](https://github.com/Andarist), [@mattpocock](https://github.com/mattpocock)! - Added the ability to tighten TS declarations of machine with generated metadata. This opens several exciting doors to being able to use typegen seamlessly with XState to provide an amazing typing experience.
|
|
100
|
+
|
|
101
|
+
With the [VS Code extension](https://marketplace.visualstudio.com/items?itemName=statelyai.stately-vscode), you can specify a new attribute called `tsTypes: {}` in your machine definition:
|
|
102
|
+
|
|
103
|
+
```ts
|
|
104
|
+
const machine = createMachine({
|
|
105
|
+
tsTypes: {}
|
|
106
|
+
});
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
The extension will automatically add a type assertion to this property, which allows for type-safe access to a lot of XState's API's.
|
|
110
|
+
|
|
111
|
+
⚠️ This feature is in beta. Actions/services/guards/delays might currently get incorrectly annotated if they are called "in response" to always transitions or raised events. We are working on fixing this, both in XState and in the typegen.
|
|
112
|
+
|
|
113
|
+
### Patch Changes
|
|
114
|
+
|
|
115
|
+
- [#2962](https://github.com/statelyai/xstate/pull/2962) [`32520650b`](https://github.com/statelyai/xstate/commit/32520650b7d6b43e416b896054033432aaede5d5) Thanks [@mattpocock](https://github.com/mattpocock)! - Added `t()`, which can be used to provide types for `schema` attributes in machine configs:
|
|
116
|
+
|
|
117
|
+
```ts
|
|
118
|
+
import { t, createMachine } from 'xstate';
|
|
119
|
+
|
|
120
|
+
const machine = createMachine({
|
|
121
|
+
schema: {
|
|
122
|
+
context: t<{ value: number }>(),
|
|
123
|
+
events: t<{ type: 'EVENT_1' } | { type: 'EVENT_2' }>()
|
|
124
|
+
}
|
|
125
|
+
});
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
* [#2957](https://github.com/statelyai/xstate/pull/2957) [`8550ddda7`](https://github.com/statelyai/xstate/commit/8550ddda73e2ad291e19173d7fa8d13e3336fbb9) Thanks [@davidkpiano](https://github.com/davidkpiano)! - The repository links have been updated from `github.com/davidkpiano` to `github.com/statelyai`.
|
|
129
|
+
|
|
3
130
|
## 4.28.1
|
|
4
131
|
|
|
5
132
|
### Patch Changes
|
|
@@ -18,7 +145,7 @@
|
|
|
18
145
|
|
|
19
146
|
### Patch Changes
|
|
20
147
|
|
|
21
|
-
- [#2864](https://github.com/statelyai/xstate/pull/2864) [`4252ee212`](https://github.com/statelyai/xstate/commit/4252ee212e59fd074707b933c101662d47938849) Thanks [@davidkpiano](https://github.com/
|
|
148
|
+
- [#2864](https://github.com/statelyai/xstate/pull/2864) [`4252ee212`](https://github.com/statelyai/xstate/commit/4252ee212e59fd074707b933c101662d47938849) Thanks [@davidkpiano](https://github.com/statelyai)! - Generated IDs for invocations that do not provide an `id` are now based on the state ID to avoid collisions:
|
|
22
149
|
|
|
23
150
|
```js
|
|
24
151
|
createMachine({
|
|
@@ -60,7 +187,7 @@
|
|
|
60
187
|
|
|
61
188
|
### Minor Changes
|
|
62
189
|
|
|
63
|
-
- [#2800](https://github.com/statelyai/xstate/pull/2800) [`759a90155`](https://github.com/statelyai/xstate/commit/759a9015512bbf532d7044afe6a889c04dc7edf6) Thanks [@davidkpiano](https://github.com/
|
|
190
|
+
- [#2800](https://github.com/statelyai/xstate/pull/2800) [`759a90155`](https://github.com/statelyai/xstate/commit/759a9015512bbf532d7044afe6a889c04dc7edf6) Thanks [@davidkpiano](https://github.com/statelyai)! - The `sendTo(actorRef, event)` action creator has been introduced. It allows you to specify the recipient actor ref of an event first, so that the event can be strongly typed against the events allowed to be received by the actor ref:
|
|
64
191
|
|
|
65
192
|
```ts
|
|
66
193
|
// ...
|
|
@@ -73,7 +200,7 @@
|
|
|
73
200
|
|
|
74
201
|
### Patch Changes
|
|
75
202
|
|
|
76
|
-
- [#2804](https://github.com/statelyai/xstate/pull/2804) [`f3caecf5a`](https://github.com/statelyai/xstate/commit/f3caecf5ad384cfe2a843c26333aaa46a77ece68) Thanks [@davidkpiano](https://github.com/
|
|
203
|
+
- [#2804](https://github.com/statelyai/xstate/pull/2804) [`f3caecf5a`](https://github.com/statelyai/xstate/commit/f3caecf5ad384cfe2a843c26333aaa46a77ece68) Thanks [@davidkpiano](https://github.com/statelyai)! - The `state.can(...)` method no longer unnecessarily executes `assign()` actions and instead determines if a given event will change the state by reading transition data before evaluating actions.
|
|
77
204
|
|
|
78
205
|
* [#2856](https://github.com/statelyai/xstate/pull/2856) [`49c2e9094`](https://github.com/statelyai/xstate/commit/49c2e90945d369e2dfb2e4fc376b3f46714dce09) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with stopped children sometimes starting their own child actors. This could happen when the child was stopped synchronously (for example by its parent) when transitioning to an invoking state.
|
|
79
206
|
|
|
@@ -85,13 +212,13 @@
|
|
|
85
212
|
|
|
86
213
|
- [#2819](https://github.com/statelyai/xstate/pull/2819) [`0d51d33cd`](https://github.com/statelyai/xstate/commit/0d51d33cd6dc6ab876a5554788300282d03fa5d1) Thanks [@simonihmig](https://github.com/simonihmig)! - Support `globalThis` in `getGlobal()` for better compatibility
|
|
87
214
|
|
|
88
|
-
* [#2828](https://github.com/statelyai/xstate/pull/2828) [`c0ef3e8`](https://github.com/statelyai/xstate/commit/c0ef3e882c688e6beefb196a3293ec71b65625e3) Thanks [@davidkpiano](https://github.com/
|
|
215
|
+
* [#2828](https://github.com/statelyai/xstate/pull/2828) [`c0ef3e8`](https://github.com/statelyai/xstate/commit/c0ef3e882c688e6beefb196a3293ec71b65625e3) Thanks [@davidkpiano](https://github.com/statelyai)! - XState is now compatible with TypeScript version 4.5.
|
|
89
216
|
|
|
90
217
|
## 4.26.0
|
|
91
218
|
|
|
92
219
|
### Minor Changes
|
|
93
220
|
|
|
94
|
-
- [#2672](https://github.com/statelyai/xstate/pull/2672) [`8e1d05d`](https://github.com/statelyai/xstate/commit/8e1d05dcafab0d1c8a63b07694b3f208850b0b4b) Thanks [@davidkpiano](https://github.com/
|
|
221
|
+
- [#2672](https://github.com/statelyai/xstate/pull/2672) [`8e1d05d`](https://github.com/statelyai/xstate/commit/8e1d05dcafab0d1c8a63b07694b3f208850b0b4b) Thanks [@davidkpiano](https://github.com/statelyai)! - The `description` property is a new top-level property for state nodes and transitions, that lets you provide text descriptions:
|
|
95
222
|
|
|
96
223
|
```ts
|
|
97
224
|
const machine = createMachine({
|
|
@@ -121,7 +248,7 @@
|
|
|
121
248
|
|
|
122
249
|
### Patch Changes
|
|
123
250
|
|
|
124
|
-
- [#2738](https://github.com/statelyai/xstate/pull/2738) [`942fd90e0`](https://github.com/statelyai/xstate/commit/942fd90e0c7a942564dd9c2ffebb93d6c86698df) Thanks [@michelsciortino](https://github.com/michelsciortino)! - The `tags` property was missing from state's definitions. This is used when converting a state to a JSON string. Since this is how we serialize states within [`@xstate/inspect`](https://github.com/
|
|
251
|
+
- [#2738](https://github.com/statelyai/xstate/pull/2738) [`942fd90e0`](https://github.com/statelyai/xstate/commit/942fd90e0c7a942564dd9c2ffebb93d6c86698df) Thanks [@michelsciortino](https://github.com/michelsciortino)! - The `tags` property was missing from state's definitions. This is used when converting a state to a JSON string. Since this is how we serialize states within [`@xstate/inspect`](https://github.com/statelyai/xstate/tree/main/packages/xstate-inspect) this has caused inspected machines to miss the `tags` information.
|
|
125
252
|
|
|
126
253
|
* [#2740](https://github.com/statelyai/xstate/pull/2740) [`707cb981f`](https://github.com/statelyai/xstate/commit/707cb981fdb8a5c75cacb7e9bfa5c7e5a1cc1c88) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with tags being missed on a service state after starting that service using a state value, like this:
|
|
127
254
|
|
|
@@ -130,7 +257,7 @@
|
|
|
130
257
|
service.state.hasTag('foo'); // this should now return a correct result
|
|
131
258
|
```
|
|
132
259
|
|
|
133
|
-
- [#2691](https://github.com/statelyai/xstate/pull/2691) [`a72806035`](https://github.com/statelyai/xstate/commit/a728060353c9cb9bdb0cd37aacf793498a8750c8) Thanks [@davidkpiano](https://github.com/
|
|
260
|
+
- [#2691](https://github.com/statelyai/xstate/pull/2691) [`a72806035`](https://github.com/statelyai/xstate/commit/a728060353c9cb9bdb0cd37aacf793498a8750c8) Thanks [@davidkpiano](https://github.com/statelyai)! - Meta data can now be specified for `invoke` configs in the `invoke.meta` property:
|
|
134
261
|
|
|
135
262
|
```js
|
|
136
263
|
const machine = createMachine({
|
|
@@ -203,7 +330,7 @@
|
|
|
203
330
|
|
|
204
331
|
### Minor Changes
|
|
205
332
|
|
|
206
|
-
- [#2546](https://github.com/statelyai/xstate/pull/2546) [`a4cfce18c`](https://github.com/statelyai/xstate/commit/a4cfce18c0c179faef15adf25a75b08903064e28) Thanks [@davidkpiano](https://github.com/
|
|
333
|
+
- [#2546](https://github.com/statelyai/xstate/pull/2546) [`a4cfce18c`](https://github.com/statelyai/xstate/commit/a4cfce18c0c179faef15adf25a75b08903064e28) Thanks [@davidkpiano](https://github.com/statelyai)! - You can now know if an event will cause a state change by using the new `state.can(event)` method, which will return `true` if an interpreted machine will "change" the state when sent the `event`, or `false` otherwise:
|
|
207
334
|
|
|
208
335
|
```js
|
|
209
336
|
const machine = createMachine({
|
|
@@ -244,7 +371,7 @@
|
|
|
244
371
|
|
|
245
372
|
### Patch Changes
|
|
246
373
|
|
|
247
|
-
- [#2632](https://github.com/statelyai/xstate/pull/2632) [`f8cf5dfe0`](https://github.com/statelyai/xstate/commit/f8cf5dfe0bf20c8545208ed7b1ade619933004f9) Thanks [@davidkpiano](https://github.com/
|
|
374
|
+
- [#2632](https://github.com/statelyai/xstate/pull/2632) [`f8cf5dfe0`](https://github.com/statelyai/xstate/commit/f8cf5dfe0bf20c8545208ed7b1ade619933004f9) Thanks [@davidkpiano](https://github.com/statelyai)! - A regression was fixed where actions were being typed as `never` if events were specified in `createModel(...)` but not actions:
|
|
248
375
|
|
|
249
376
|
```ts
|
|
250
377
|
const model = createModel(
|
|
@@ -265,7 +392,7 @@
|
|
|
265
392
|
|
|
266
393
|
### Patch Changes
|
|
267
394
|
|
|
268
|
-
- [#2606](https://github.com/statelyai/xstate/pull/2606) [`01e5d7984`](https://github.com/statelyai/xstate/commit/01e5d7984a5441a6980eacdb06d42c2a9398bdff) Thanks [@davidkpiano](https://github.com/
|
|
395
|
+
- [#2606](https://github.com/statelyai/xstate/pull/2606) [`01e5d7984`](https://github.com/statelyai/xstate/commit/01e5d7984a5441a6980eacdb06d42c2a9398bdff) Thanks [@davidkpiano](https://github.com/statelyai)! - The following utility types were previously returning `never` in some unexpected cases, and are now working as expected:
|
|
269
396
|
|
|
270
397
|
- `ContextFrom<T>`
|
|
271
398
|
- `EventFrom<T>`
|
|
@@ -304,9 +431,9 @@
|
|
|
304
431
|
type Interpreter = InterpreterFrom<ReturnType<typeof machine>>;
|
|
305
432
|
```
|
|
306
433
|
|
|
307
|
-
* [`413a4578`](https://github.com/statelyai/xstate/commit/413a4578cded21beffff822d1485a3725457b768) [#2491](https://github.com/statelyai/xstate/pull/2491) Thanks [@davidkpiano](https://github.com/
|
|
434
|
+
* [`413a4578`](https://github.com/statelyai/xstate/commit/413a4578cded21beffff822d1485a3725457b768) [#2491](https://github.com/statelyai/xstate/pull/2491) Thanks [@davidkpiano](https://github.com/statelyai)! - The custom `.toString()` method on action objects is now removed which improves performance in larger applications (see [#2488](https://github.com/statelyai/xstate/discussions/2488) for more context).
|
|
308
435
|
|
|
309
|
-
- [`5e1223cd`](https://github.com/statelyai/xstate/commit/5e1223cd58485045b192677753946df2c00eddf7) [#2422](https://github.com/statelyai/xstate/pull/2422) Thanks [@davidkpiano](https://github.com/
|
|
436
|
+
- [`5e1223cd`](https://github.com/statelyai/xstate/commit/5e1223cd58485045b192677753946df2c00eddf7) [#2422](https://github.com/statelyai/xstate/pull/2422) Thanks [@davidkpiano](https://github.com/statelyai)! - The `context` property has been removed from `StateNodeConfig`, as it has never been allowed, nor has it ever done anything. The previous typing was unsafe and allowed `context` to be specified on nested state nodes:
|
|
310
437
|
|
|
311
438
|
```ts
|
|
312
439
|
createMachine({
|
|
@@ -324,7 +451,7 @@
|
|
|
324
451
|
});
|
|
325
452
|
```
|
|
326
453
|
|
|
327
|
-
* [`5b70c2ff`](https://github.com/statelyai/xstate/commit/5b70c2ff21cc5d8c6cf1c13b6eb7bb12611a9835) [#2508](https://github.com/statelyai/xstate/pull/2508) Thanks [@davidkpiano](https://github.com/
|
|
454
|
+
* [`5b70c2ff`](https://github.com/statelyai/xstate/commit/5b70c2ff21cc5d8c6cf1c13b6eb7bb12611a9835) [#2508](https://github.com/statelyai/xstate/pull/2508) Thanks [@davidkpiano](https://github.com/statelyai)! - A race condition occurred when a child service is immediately stopped and the parent service tried to remove it from its undefined state (during its own initialization). This has been fixed, and the race condition no longer occurs. See [this issue](https://github.com/statelyai/xstate/issues/2507) for details.
|
|
328
455
|
|
|
329
456
|
- [`5a9500d1`](https://github.com/statelyai/xstate/commit/5a9500d1cde9bf2300a85bc81529da83f2d08361) [#2522](https://github.com/statelyai/xstate/pull/2522) Thanks [@farskid](https://github.com/farskid), [@Andarist](https://github.com/Andarist)! - Adjusted TS type definitions of the `withContext` and `withConfig` methods so that they accept "lazy context" now.
|
|
330
457
|
|
|
@@ -357,7 +484,7 @@
|
|
|
357
484
|
|
|
358
485
|
### Minor Changes
|
|
359
486
|
|
|
360
|
-
- [`7dc7ceb8`](https://github.com/statelyai/xstate/commit/7dc7ceb8707569b48ceb35069125763a701a0a58) [#2379](https://github.com/statelyai/xstate/pull/2379) Thanks [@davidkpiano](https://github.com/
|
|
487
|
+
- [`7dc7ceb8`](https://github.com/statelyai/xstate/commit/7dc7ceb8707569b48ceb35069125763a701a0a58) [#2379](https://github.com/statelyai/xstate/pull/2379) Thanks [@davidkpiano](https://github.com/statelyai)! - There is a new `.preserveActionOrder` (default: `false`) setting in the machine configuration that preserves the order of actions when set to `true`. Normally, actions are executed in order _except_ for `assign(...)` actions, which are prioritized and executed first. When `.preserveActionOrder` is set to `true`, `assign(...)` actions will _not_ be prioritized, and will instead run in order. As a result, actions will capture the **intermediate `context` values** instead of the resulting `context` value from all `assign(...)` actions.
|
|
361
488
|
|
|
362
489
|
```ts
|
|
363
490
|
// With `.preserveActionOrder: true`
|
|
@@ -391,7 +518,7 @@
|
|
|
391
518
|
|
|
392
519
|
- [`4e305372`](https://github.com/statelyai/xstate/commit/4e30537266eb082ccd85f050c9372358247b4167) [#2361](https://github.com/statelyai/xstate/pull/2361) Thanks [@woutermont](https://github.com/woutermont)! - Add type for `Symbol.observable` to the `Interpreter` to improve the compatibility with RxJS.
|
|
393
520
|
|
|
394
|
-
* [`1def6cf6`](https://github.com/statelyai/xstate/commit/1def6cf6109867a87b4323ee83d20a9ee0c49d7b) [#2374](https://github.com/statelyai/xstate/pull/2374) Thanks [@davidkpiano](https://github.com/
|
|
521
|
+
* [`1def6cf6`](https://github.com/statelyai/xstate/commit/1def6cf6109867a87b4323ee83d20a9ee0c49d7b) [#2374](https://github.com/statelyai/xstate/pull/2374) Thanks [@davidkpiano](https://github.com/statelyai)! - Existing actors can now be identified in `spawn(...)` calls by providing an `id`. This allows them to be referenced by string:
|
|
395
522
|
|
|
396
523
|
```ts
|
|
397
524
|
const machine = createMachine({
|
|
@@ -406,7 +533,7 @@
|
|
|
406
533
|
});
|
|
407
534
|
```
|
|
408
535
|
|
|
409
|
-
- [`da6861e3`](https://github.com/statelyai/xstate/commit/da6861e34a2b28bf6eeaa7c04a2d4cf9a90f93f1) [#2391](https://github.com/statelyai/xstate/pull/2391) Thanks [@davidkpiano](https://github.com/
|
|
536
|
+
- [`da6861e3`](https://github.com/statelyai/xstate/commit/da6861e34a2b28bf6eeaa7c04a2d4cf9a90f93f1) [#2391](https://github.com/statelyai/xstate/pull/2391) Thanks [@davidkpiano](https://github.com/statelyai)! - There are two new helper types for extracting `context` and `event` types:
|
|
410
537
|
|
|
411
538
|
- `ContextFrom<T>` which extracts the `context` from any type that uses context
|
|
412
539
|
- `EventFrom<T>` which extracts the `event` type (which extends `EventObject`) from any type which uses events
|
|
@@ -415,7 +542,7 @@
|
|
|
415
542
|
|
|
416
543
|
### Minor Changes
|
|
417
544
|
|
|
418
|
-
- [`1b32aa0d`](https://github.com/statelyai/xstate/commit/1b32aa0d3a0eca11ffcb7ec9d710eb8828107aa0) [#2356](https://github.com/statelyai/xstate/pull/2356) Thanks [@davidkpiano](https://github.com/
|
|
545
|
+
- [`1b32aa0d`](https://github.com/statelyai/xstate/commit/1b32aa0d3a0eca11ffcb7ec9d710eb8828107aa0) [#2356](https://github.com/statelyai/xstate/pull/2356) Thanks [@davidkpiano](https://github.com/statelyai)! - The model created from `createModel(...)` now provides a `.createMachine(...)` method that does not require passing any generic type parameters:
|
|
419
546
|
|
|
420
547
|
```diff
|
|
421
548
|
const model = createModel(/* ... */);
|
|
@@ -424,7 +551,7 @@
|
|
|
424
551
|
+const machine = model.createMachine(/* ... */);
|
|
425
552
|
```
|
|
426
553
|
|
|
427
|
-
* [`432b60f7`](https://github.com/statelyai/xstate/commit/432b60f7bcbcee9510e0d86311abbfd75b1a674e) [#2280](https://github.com/statelyai/xstate/pull/2280) Thanks [@davidkpiano](https://github.com/
|
|
554
|
+
* [`432b60f7`](https://github.com/statelyai/xstate/commit/432b60f7bcbcee9510e0d86311abbfd75b1a674e) [#2280](https://github.com/statelyai/xstate/pull/2280) Thanks [@davidkpiano](https://github.com/statelyai)! - Actors can now be invoked/spawned from reducers using the `fromReducer(...)` behavior creator:
|
|
428
555
|
|
|
429
556
|
```ts
|
|
430
557
|
import { fromReducer } from 'xstate/lib/behaviors';
|
|
@@ -457,7 +584,7 @@
|
|
|
457
584
|
});
|
|
458
585
|
```
|
|
459
586
|
|
|
460
|
-
- [`f9bcea2c`](https://github.com/
|
|
587
|
+
- [`f9bcea2c`](https://github.com/statelyai/xstate/commit/f9bcea2ce909ac59fcb165b352a7b51a8b29a56d) [#2366](https://github.com/statelyai/xstate/pull/2366) Thanks [@davidkpiano](https://github.com/statelyai)! - Actors can now be spawned directly in the initial `machine.context` using lazy initialization, avoiding the need for intermediate states and unsafe typings for immediately spawned actors:
|
|
461
588
|
|
|
462
589
|
```ts
|
|
463
590
|
const machine = createMachine<{ ref: ActorRef<SomeEvent> }>({
|
|
@@ -472,13 +599,13 @@
|
|
|
472
599
|
|
|
473
600
|
### Patch Changes
|
|
474
601
|
|
|
475
|
-
- [`1ef29e83`](https://github.com/
|
|
602
|
+
- [`1ef29e83`](https://github.com/statelyai/xstate/commit/1ef29e83e14331083279d50fd3a8907eb63793eb) [#2343](https://github.com/statelyai/xstate/pull/2343) Thanks [@davidkpiano](https://github.com/statelyai)! - Eventless ("always") transitions will no longer be ignored if an event is sent to a machine in a state that does not have any enabled transitions for that event.
|
|
476
603
|
|
|
477
604
|
## 4.20.1
|
|
478
605
|
|
|
479
606
|
### Patch Changes
|
|
480
607
|
|
|
481
|
-
- [`99bc5fb9`](https://github.com/
|
|
608
|
+
- [`99bc5fb9`](https://github.com/statelyai/xstate/commit/99bc5fb9d1d7be35f4c767dcbbf5287755b306d0) [#2275](https://github.com/statelyai/xstate/pull/2275) Thanks [@davidkpiano](https://github.com/statelyai)! - The `SpawnedActorRef` TypeScript interface has been deprecated in favor of a unified `ActorRef` interface, which contains the following:
|
|
482
609
|
|
|
483
610
|
```ts
|
|
484
611
|
interface ActorRef<TEvent extends EventObject, TEmitted = any>
|
|
@@ -503,7 +630,7 @@
|
|
|
503
630
|
}
|
|
504
631
|
```
|
|
505
632
|
|
|
506
|
-
* [`38e6a5e9`](https://github.com/
|
|
633
|
+
* [`38e6a5e9`](https://github.com/statelyai/xstate/commit/38e6a5e98a1dd54b4f2ef96942180ec0add88f2b) [#2334](https://github.com/statelyai/xstate/pull/2334) Thanks [@davidkpiano](https://github.com/statelyai)! - When using a model type in `createMachine<typeof someModel>(...)`, TypeScript will no longer compile machines that are missing the `context` property in the machine configuration:
|
|
507
634
|
|
|
508
635
|
```ts
|
|
509
636
|
const machine = createMachine<typeof someModel>({
|
|
@@ -516,7 +643,7 @@
|
|
|
516
643
|
});
|
|
517
644
|
```
|
|
518
645
|
|
|
519
|
-
- [`5f790ba5`](https://github.com/
|
|
646
|
+
- [`5f790ba5`](https://github.com/statelyai/xstate/commit/5f790ba5478cb733a59e3b0603e8976c11bcdd04) [#2320](https://github.com/statelyai/xstate/pull/2320) Thanks [@davidkpiano](https://github.com/statelyai)! - The typing for `InvokeCallback` have been improved for better event constraints when using the `sendBack` parameter of invoked callbacks:
|
|
520
647
|
|
|
521
648
|
```ts
|
|
522
649
|
invoke: () => (sendBack, receive) => {
|
|
@@ -525,7 +652,7 @@
|
|
|
525
652
|
};
|
|
526
653
|
```
|
|
527
654
|
|
|
528
|
-
* [`2de3ec3e`](https://github.com/
|
|
655
|
+
* [`2de3ec3e`](https://github.com/statelyai/xstate/commit/2de3ec3e994e0deb5a142aeac15e1eddeb18d1e1) [#2272](https://github.com/statelyai/xstate/pull/2272) Thanks [@davidkpiano](https://github.com/statelyai)! - The `state.meta` value is now calculated directly from `state.configuration`. This is most useful when starting a service from a persisted state:
|
|
529
656
|
|
|
530
657
|
```ts
|
|
531
658
|
const machine = createMachine({
|
|
@@ -562,7 +689,7 @@
|
|
|
562
689
|
|
|
563
690
|
### Minor Changes
|
|
564
691
|
|
|
565
|
-
- [`28059b9f`](https://github.com/
|
|
692
|
+
- [`28059b9f`](https://github.com/statelyai/xstate/commit/28059b9f09926d683d80b7d816f5b703c0667a9f) [#2197](https://github.com/statelyai/xstate/pull/2197) Thanks [@davidkpiano](https://github.com/statelyai)! - All spawned and invoked actors now have a `.getSnapshot()` method, which allows you to retrieve the latest value emitted from that actor. That value may be `undefined` if no value has been emitted yet.
|
|
566
693
|
|
|
567
694
|
```js
|
|
568
695
|
const machine = createMachine({
|
|
@@ -593,31 +720,31 @@
|
|
|
593
720
|
|
|
594
721
|
### Patch Changes
|
|
595
722
|
|
|
596
|
-
- [`4ef03465`](https://github.com/
|
|
723
|
+
- [`4ef03465`](https://github.com/statelyai/xstate/commit/4ef03465869e27dc878ec600661c9253d90f74f0) [#2240](https://github.com/statelyai/xstate/pull/2240) Thanks [@VanTanev](https://github.com/VanTanev)! - Preserve StateMachine type when .withConfig() and .withContext() modifiers are used on a machine.
|
|
597
724
|
|
|
598
725
|
## 4.19.2
|
|
599
726
|
|
|
600
727
|
### Patch Changes
|
|
601
728
|
|
|
602
|
-
- [`18789aa9`](https://github.com/
|
|
729
|
+
- [`18789aa9`](https://github.com/statelyai/xstate/commit/18789aa94669e48b71e2ae22e524d9bbe9dbfc63) [#2107](https://github.com/statelyai/xstate/pull/2107) Thanks [@woutermont](https://github.com/woutermont)! - This update restricts invoked `Subscribable`s to `EventObject`s,
|
|
603
730
|
so that type inference can be done on which `Subscribable`s are
|
|
604
731
|
allowed to be invoked. Existing `MachineConfig`s that invoke
|
|
605
732
|
`Subscribable<any>`s that are not `Subscribable<EventObject>`s
|
|
606
733
|
should be updated accordingly.
|
|
607
734
|
|
|
608
|
-
* [`38dcec1d`](https://github.com/
|
|
735
|
+
* [`38dcec1d`](https://github.com/statelyai/xstate/commit/38dcec1dad60c62cf8c47c88736651483276ff87) [#2149](https://github.com/statelyai/xstate/pull/2149) Thanks [@davidkpiano](https://github.com/statelyai)! - Invocations and entry actions for _combinatorial_ machines (machines with only a single root state) now behave predictably and will not re-execute upon targetless transitions.
|
|
609
736
|
|
|
610
737
|
## 4.19.1
|
|
611
738
|
|
|
612
739
|
### Patch Changes
|
|
613
740
|
|
|
614
|
-
- [`64ab1150`](https://github.com/
|
|
741
|
+
- [`64ab1150`](https://github.com/statelyai/xstate/commit/64ab1150e0a383202f4af1d586b28e081009c929) [#2173](https://github.com/statelyai/xstate/pull/2173) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with tags not being set correctly after sending an event to a machine that didn't result in selecting any transitions.
|
|
615
742
|
|
|
616
743
|
## 4.19.0
|
|
617
744
|
|
|
618
745
|
### Minor Changes
|
|
619
746
|
|
|
620
|
-
- [`4f2f626d`](https://github.com/
|
|
747
|
+
- [`4f2f626d`](https://github.com/statelyai/xstate/commit/4f2f626dc84f45bb18ded6dd9aad3b6f6a2190b1) [#2143](https://github.com/statelyai/xstate/pull/2143) Thanks [@davidkpiano](https://github.com/statelyai)! - Tags can now be added to state node configs under the `.tags` property:
|
|
621
748
|
|
|
622
749
|
```js
|
|
623
750
|
const machine = createMachine({
|
|
@@ -645,15 +772,15 @@
|
|
|
645
772
|
|
|
646
773
|
### Patch Changes
|
|
647
774
|
|
|
648
|
-
- [`a61d01ce`](https://github.com/
|
|
775
|
+
- [`a61d01ce`](https://github.com/statelyai/xstate/commit/a61d01cefab5734adf9bfb167291f5b0ba712684) [#2125](https://github.com/statelyai/xstate/pull/2125) Thanks [@VanTanev](https://github.com/VanTanev)! - In callback invokes, the types of `callback` and `onReceive` are properly scoped to the machine TEvent.
|
|
649
776
|
|
|
650
777
|
## 4.18.0
|
|
651
778
|
|
|
652
779
|
### Minor Changes
|
|
653
780
|
|
|
654
|
-
- [`d0939ec6`](https://github.com/
|
|
781
|
+
- [`d0939ec6`](https://github.com/statelyai/xstate/commit/d0939ec60161c34b053cecdaeb277606b5982375) [#2046](https://github.com/statelyai/xstate/pull/2046) Thanks [@SimeonC](https://github.com/SimeonC)! - Allow machines to communicate with the inspector even in production builds.
|
|
655
782
|
|
|
656
|
-
* [`e37fffef`](https://github.com/
|
|
783
|
+
* [`e37fffef`](https://github.com/statelyai/xstate/commit/e37fffefb742f45765945c02727edfbd5e2f9d47) [#2079](https://github.com/statelyai/xstate/pull/2079) Thanks [@davidkpiano](https://github.com/statelyai)! - There is now support for "combinatorial machines" (state machines that only have one state):
|
|
657
784
|
|
|
658
785
|
```js
|
|
659
786
|
const testMachine = createMachine({
|
|
@@ -670,19 +797,19 @@
|
|
|
670
797
|
|
|
671
798
|
### Patch Changes
|
|
672
799
|
|
|
673
|
-
- [`6a9247d4`](https://github.com/
|
|
800
|
+
- [`6a9247d4`](https://github.com/statelyai/xstate/commit/6a9247d4d3a39e6c8c4724d3368a13fcdef10907) [#2102](https://github.com/statelyai/xstate/pull/2102) Thanks [@VanTanev](https://github.com/VanTanev)! - Provide a convenience type for getting the `Interpreter` type based on the `StateMachine` type by transferring all generic parameters onto it. It can be used like this: `InterpreterFrom<typeof machine>`
|
|
674
801
|
|
|
675
802
|
## 4.17.1
|
|
676
803
|
|
|
677
804
|
### Patch Changes
|
|
678
805
|
|
|
679
|
-
- [`33302814`](https://github.com/
|
|
806
|
+
- [`33302814`](https://github.com/statelyai/xstate/commit/33302814c38587d0044afd2ae61a4ff4779416c6) [#2041](https://github.com/statelyai/xstate/pull/2041) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with creatorless models not being correctly matched by `createMachine`'s overload responsible for using model-induced types.
|
|
680
807
|
|
|
681
808
|
## 4.17.0
|
|
682
809
|
|
|
683
810
|
### Minor Changes
|
|
684
811
|
|
|
685
|
-
- [`7763db8d`](https://github.com/
|
|
812
|
+
- [`7763db8d`](https://github.com/statelyai/xstate/commit/7763db8d3615321d03839b2bd31c9b118ddee50c) [#1977](https://github.com/statelyai/xstate/pull/1977) Thanks [@davidkpiano](https://github.com/statelyai)! - The `schema` property has been introduced to the machine config passed into `createMachine(machineConfig)`, which allows you to provide metadata for the following:
|
|
686
813
|
|
|
687
814
|
- Context
|
|
688
815
|
- Events
|
|
@@ -734,7 +861,7 @@
|
|
|
734
861
|
});
|
|
735
862
|
```
|
|
736
863
|
|
|
737
|
-
* [`5febfe83`](https://github.com/
|
|
864
|
+
* [`5febfe83`](https://github.com/statelyai/xstate/commit/5febfe83a7e5e866c0a4523ea4f86a966af7c50f) [#1955](https://github.com/statelyai/xstate/pull/1955) Thanks [@davidkpiano](https://github.com/statelyai)! - Event creators can now be modeled inside of the 2nd argument of `createModel()`, and types for both `context` and `events` will be inferred properly in `createMachine()` when given the `typeof model` as the first generic parameter.
|
|
738
865
|
|
|
739
866
|
```ts
|
|
740
867
|
import { createModel } from 'xstate/lib/model';
|
|
@@ -782,25 +909,25 @@
|
|
|
782
909
|
|
|
783
910
|
### Patch Changes
|
|
784
911
|
|
|
785
|
-
- [`4194ffe8`](https://github.com/
|
|
912
|
+
- [`4194ffe8`](https://github.com/statelyai/xstate/commit/4194ffe84cfe7910e2c183701e36bc5cac5c9bcc) [#1710](https://github.com/statelyai/xstate/pull/1710) Thanks [@davidkpiano](https://github.com/statelyai)! - Stopping an already stopped interpreter will no longer crash. See [#1697](https://github.com/statelyai/xstate/issues/1697) for details.
|
|
786
913
|
|
|
787
914
|
## 4.16.1
|
|
788
915
|
|
|
789
916
|
### Patch Changes
|
|
790
917
|
|
|
791
|
-
- [`af6b7c70`](https://github.com/
|
|
918
|
+
- [`af6b7c70`](https://github.com/statelyai/xstate/commit/af6b7c70015db29d84f79dfd29ea0dc221b8f3e6) [#1865](https://github.com/statelyai/xstate/pull/1865) Thanks [@Andarist](https://github.com/Andarist)! - Improved `.matches(value)` inference for typestates containing union types as values.
|
|
792
919
|
|
|
793
920
|
## 4.16.0
|
|
794
921
|
|
|
795
922
|
### Minor Changes
|
|
796
923
|
|
|
797
|
-
- [`d2e328f8`](https://github.com/
|
|
924
|
+
- [`d2e328f8`](https://github.com/statelyai/xstate/commit/d2e328f8efad7e8d3500d39976d1153a26e835a3) [#1439](https://github.com/statelyai/xstate/pull/1439) Thanks [@davidkpiano](https://github.com/statelyai)! - An opt-in `createModel()` helper has been introduced to make it easier to work with typed `context` and events.
|
|
798
925
|
|
|
799
926
|
- `createModel(initialContext)` creates a `model` object
|
|
800
927
|
- `model.initialContext` returns the `initialContext`
|
|
801
928
|
- `model.assign(assigner, event?)` creates an `assign` action that is properly scoped to the `event` in TypeScript
|
|
802
929
|
|
|
803
|
-
See https://github.com/
|
|
930
|
+
See https://github.com/statelyai/xstate/pull/1439 for more details.
|
|
804
931
|
|
|
805
932
|
```js
|
|
806
933
|
import { createMachine } from 'xstate';
|
|
@@ -843,31 +970,31 @@
|
|
|
843
970
|
|
|
844
971
|
### Patch Changes
|
|
845
972
|
|
|
846
|
-
- [`0cb8df9b`](https://github.com/
|
|
973
|
+
- [`0cb8df9b`](https://github.com/statelyai/xstate/commit/0cb8df9b6c8cd01ada82afe967bf1015e24e75d9) [#1816](https://github.com/statelyai/xstate/pull/1816) Thanks [@Andarist](https://github.com/Andarist)! - `machine.resolveState(state)` calls should resolve to the correct value of `.done` property now.
|
|
847
974
|
|
|
848
975
|
## 4.15.3
|
|
849
976
|
|
|
850
977
|
### Patch Changes
|
|
851
978
|
|
|
852
|
-
- [`63ba888e`](https://github.com/
|
|
979
|
+
- [`63ba888e`](https://github.com/statelyai/xstate/commit/63ba888e19bd2b72f9aad2c9cd36cde297e0ffe5) [#1770](https://github.com/statelyai/xstate/pull/1770) Thanks [@davidkpiano](https://github.com/statelyai)! - Instead of referencing `window` directly, XState now internally calls a `getGlobal()` function that will resolve to the proper `globalThis` value in all environments. This affects the dev tools code only.
|
|
853
980
|
|
|
854
981
|
## 4.15.2
|
|
855
982
|
|
|
856
983
|
### Patch Changes
|
|
857
984
|
|
|
858
|
-
- [`497c543d`](https://github.com/
|
|
985
|
+
- [`497c543d`](https://github.com/statelyai/xstate/commit/497c543d2980ea1a277b30b340a7bcd3dd0b3cb6) [#1766](https://github.com/statelyai/xstate/pull/1766) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with events received from callback actors not having the appropriate `_event.origin` set.
|
|
859
986
|
|
|
860
987
|
## 4.15.1
|
|
861
988
|
|
|
862
989
|
### Patch Changes
|
|
863
990
|
|
|
864
|
-
- [`8a8cfa32`](https://github.com/
|
|
991
|
+
- [`8a8cfa32`](https://github.com/statelyai/xstate/commit/8a8cfa32d99aedf11f4af93ba56fa9ba68925c74) [#1704](https://github.com/statelyai/xstate/pull/1704) Thanks [@blimmer](https://github.com/blimmer)! - The default `clock` methods (`setTimeout` and `clearTimeout`) are now invoked properly with the global context preserved for those invocations which matter for some JS environments. More details can be found in the corresponding issue: [#1703](https://github.com/statelyai/xstate/issues/1703).
|
|
865
992
|
|
|
866
993
|
## 4.15.0
|
|
867
994
|
|
|
868
995
|
### Minor Changes
|
|
869
996
|
|
|
870
|
-
- [`6596d0ba`](https://github.com/
|
|
997
|
+
- [`6596d0ba`](https://github.com/statelyai/xstate/commit/6596d0ba163341fc43d214b48115536cb4815b68) [#1622](https://github.com/statelyai/xstate/pull/1622) Thanks [@davidkpiano](https://github.com/statelyai)! - Spawned/invoked actors and interpreters are now typed as extending `ActorRef` (e.g., `SpawnedActorRef`) rather than `Actor` or `Interpreter`. This unification of types should make it more straightforward to provide actor types:
|
|
871
998
|
|
|
872
999
|
```diff
|
|
873
1000
|
import {
|
|
@@ -904,19 +1031,19 @@
|
|
|
904
1031
|
|
|
905
1032
|
### Patch Changes
|
|
906
1033
|
|
|
907
|
-
- [`75a91b07`](https://github.com/
|
|
1034
|
+
- [`75a91b07`](https://github.com/statelyai/xstate/commit/75a91b078a10a86f13edc9eec3ac1d6246607002) [#1692](https://github.com/statelyai/xstate/pull/1692) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with history state entering a wrong state if the most recent visit in its parent has been caused by a transient transition.
|
|
908
1035
|
|
|
909
1036
|
## 4.14.1
|
|
910
1037
|
|
|
911
1038
|
### Patch Changes
|
|
912
1039
|
|
|
913
|
-
- [`02c76350`](https://github.com/
|
|
1040
|
+
- [`02c76350`](https://github.com/statelyai/xstate/commit/02c763504da0808eeb281587981a5baf8ba884a1) [#1656](https://github.com/statelyai/xstate/pull/1656) Thanks [@Andarist](https://github.com/Andarist)! - Exit actions will now be properly called when a service gets canceled by calling its `stop` method.
|
|
914
1041
|
|
|
915
1042
|
## 4.14.0
|
|
916
1043
|
|
|
917
1044
|
### Minor Changes
|
|
918
1045
|
|
|
919
|
-
- [`119db8fb`](https://github.com/
|
|
1046
|
+
- [`119db8fb`](https://github.com/statelyai/xstate/commit/119db8fbccd08f899e1275a502d8c4c51b5a130e) [#1577](https://github.com/statelyai/xstate/pull/1577) Thanks [@davidkpiano](https://github.com/statelyai)! - Expressions can now be used in the `stop()` action creator:
|
|
920
1047
|
|
|
921
1048
|
```js
|
|
922
1049
|
// ...
|
|
@@ -925,27 +1052,27 @@
|
|
|
925
1052
|
|
|
926
1053
|
### Patch Changes
|
|
927
1054
|
|
|
928
|
-
- [`8c78e120`](https://github.com/
|
|
1055
|
+
- [`8c78e120`](https://github.com/statelyai/xstate/commit/8c78e1205a729d933e30db01cd4260d82352a9be) [#1570](https://github.com/statelyai/xstate/pull/1570) Thanks [@davidkpiano](https://github.com/statelyai)! - The return type of `spawn(machine)` will now be `Actor<State<TContext, TEvent>, TEvent>`, which is a supertype of `Interpreter<...>`.
|
|
929
1056
|
|
|
930
|
-
* [`602687c2`](https://github.com/
|
|
1057
|
+
* [`602687c2`](https://github.com/statelyai/xstate/commit/602687c235c56cca552c2d5a9d78adf224f522d8) [#1566](https://github.com/statelyai/xstate/pull/1566) Thanks [@davidkpiano](https://github.com/statelyai)! - Exit actions will now be properly called when an invoked machine reaches its final state. See [#1109](https://github.com/statelyai/xstate/issues/1109) for more details.
|
|
931
1058
|
|
|
932
|
-
- [`6e44d02a`](https://github.com/
|
|
1059
|
+
- [`6e44d02a`](https://github.com/statelyai/xstate/commit/6e44d02ad03af4041046120dd6c975e3b5b3772a) [#1553](https://github.com/statelyai/xstate/pull/1553) Thanks [@davidkpiano](https://github.com/statelyai)! - The `state.children` property now properly shows all spawned and invoked actors. See [#795](https://github.com/statelyai/xstate/issues/795) for more details.
|
|
933
1060
|
|
|
934
|
-
* [`72b0880e`](https://github.com/
|
|
1061
|
+
* [`72b0880e`](https://github.com/statelyai/xstate/commit/72b0880e6444ae009adca72088872bb5c0760ce3) [#1504](https://github.com/statelyai/xstate/pull/1504) Thanks [@Andarist](https://github.com/Andarist)! - Added `status` property on the `Interpreter` - this can be used to differentiate not started, running and stopped interpreters. This property is best compared to values on the new `InterpreterStatus` export.
|
|
935
1062
|
|
|
936
1063
|
## 4.13.0
|
|
937
1064
|
|
|
938
1065
|
### Minor Changes
|
|
939
1066
|
|
|
940
|
-
- [`f51614df`](https://github.com/
|
|
1067
|
+
- [`f51614df`](https://github.com/statelyai/xstate/commit/f51614dff760cfe4511c0bc7cca3d022157c104c) [#1409](https://github.com/statelyai/xstate/pull/1409) Thanks [@jirutka](https://github.com/jirutka)! - Fix type `ExtractStateValue` so that it generates a type actually describing a `State.value`
|
|
941
1068
|
|
|
942
1069
|
### Patch Changes
|
|
943
1070
|
|
|
944
|
-
- [`b1684ead`](https://github.com/
|
|
1071
|
+
- [`b1684ead`](https://github.com/statelyai/xstate/commit/b1684eadb1f859db5c733b8d403afc825c294948) [#1402](https://github.com/statelyai/xstate/pull/1402) Thanks [@Andarist](https://github.com/Andarist)! - Improved TypeScript type-checking performance a little bit by using distributive conditional type within `TransitionsConfigArray` declarations instead of a mapped type. Kudos to [@amcasey](https://github.com/amcasey), some discussion around this can be found [here](https://github.com/microsoft/TypeScript/issues/39826#issuecomment-675790689)
|
|
945
1072
|
|
|
946
|
-
* [`ad3026d4`](https://github.com/
|
|
1073
|
+
* [`ad3026d4`](https://github.com/statelyai/xstate/commit/ad3026d4309e9a1c719e09fd8c15cdfefce22055) [#1407](https://github.com/statelyai/xstate/pull/1407) Thanks [@tomenden](https://github.com/tomenden)! - Fixed an issue with not being able to run XState in Web Workers due to assuming that `window` or `global` object is available in the executing environment, but none of those are actually available in the Web Workers context.
|
|
947
1074
|
|
|
948
|
-
- [`4e949ec8`](https://github.com/
|
|
1075
|
+
- [`4e949ec8`](https://github.com/statelyai/xstate/commit/4e949ec856349062352562c825beb0654e528f81) [#1401](https://github.com/statelyai/xstate/pull/1401) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with spawned actors being spawned multiple times when they got spawned in an initial state of a child machine that is invoked in the initial state of a parent machine.
|
|
949
1076
|
|
|
950
1077
|
<details>
|
|
951
1078
|
<summary>
|
|
@@ -989,9 +1116,9 @@
|
|
|
989
1116
|
|
|
990
1117
|
### Minor Changes
|
|
991
1118
|
|
|
992
|
-
- [`b72e29dd`](https://github.com/
|
|
1119
|
+
- [`b72e29dd`](https://github.com/statelyai/xstate/commit/b72e29dd728b4c1be4bdeaec93909b4e307db5cf) [#1354](https://github.com/statelyai/xstate/pull/1354) Thanks [@davidkpiano](https://github.com/statelyai)! - The `Action` type was simplified, and as a result, you should see better TypeScript performance.
|
|
993
1120
|
|
|
994
|
-
* [`4dbabfe7`](https://github.com/
|
|
1121
|
+
* [`4dbabfe7`](https://github.com/statelyai/xstate/commit/4dbabfe7d5ba154e852b4d460a2434c6fc955726) [#1320](https://github.com/statelyai/xstate/pull/1320) Thanks [@davidkpiano](https://github.com/statelyai)! - The `invoke.src` property now accepts an object that describes the invoke source with its `type` and other related metadata. This can be read from the `services` option in the `meta.src` argument:
|
|
995
1122
|
|
|
996
1123
|
```js
|
|
997
1124
|
const machine = createMachine(
|
|
@@ -1023,13 +1150,13 @@
|
|
|
1023
1150
|
|
|
1024
1151
|
Specifying a string for `invoke.src` will continue to work the same; e.g., if `src: 'search'` was specified, this would be the same as `src: { type: 'search' }`.
|
|
1025
1152
|
|
|
1026
|
-
- [`8662e543`](https://github.com/
|
|
1153
|
+
- [`8662e543`](https://github.com/statelyai/xstate/commit/8662e543393de7e2f8a6d92ff847043781d10f4d) [#1317](https://github.com/statelyai/xstate/pull/1317) Thanks [@Andarist](https://github.com/Andarist)! - All `TTypestate` type parameters default to `{ value: any; context: TContext }` now and the parametrized type is passed correctly between various types which results in more accurate types involving typestates.
|
|
1027
1154
|
|
|
1028
1155
|
### Patch Changes
|
|
1029
1156
|
|
|
1030
|
-
- [`3ab3f25e`](https://github.com/
|
|
1157
|
+
- [`3ab3f25e`](https://github.com/statelyai/xstate/commit/3ab3f25ea297e4d770eef512e9583475c943845d) [#1285](https://github.com/statelyai/xstate/pull/1285) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with initial state of invoked machines being read without custom data passed to them which could lead to a crash when evaluating transient transitions for the initial state.
|
|
1031
1158
|
|
|
1032
|
-
* [`a7da1451`](https://github.com/
|
|
1159
|
+
* [`a7da1451`](https://github.com/statelyai/xstate/commit/a7da14510fd1645ad041836b567771edb5b90827) [#1290](https://github.com/statelyai/xstate/pull/1290) Thanks [@davidkpiano](https://github.com/statelyai)! - The "Attempted to spawn an Actor [...] outside of a service. This will have no effect." warnings are now silenced for "lazily spawned" actors, which are actors that aren't immediately active until the function that creates them are called:
|
|
1033
1160
|
|
|
1034
1161
|
```js
|
|
1035
1162
|
// ⚠️ "active" actor - will warn
|
|
@@ -1044,19 +1171,19 @@
|
|
|
1044
1171
|
|
|
1045
1172
|
It is recommended that all `spawn(...)`-ed actors are lazy, to avoid accidentally initializing them e.g., when reading `machine.initialState` or calculating otherwise pure transitions. In V5, this will be enforced.
|
|
1046
1173
|
|
|
1047
|
-
- [`c1f3d260`](https://github.com/
|
|
1174
|
+
- [`c1f3d260`](https://github.com/statelyai/xstate/commit/c1f3d26069ee70343f8045a48411e02a68f98cbd) [#1317](https://github.com/statelyai/xstate/pull/1317) Thanks [@Andarist](https://github.com/Andarist)! - Fixed a type returned by a `raise` action - it's now `RaiseAction<TEvent> | SendAction<TContext, AnyEventObject, TEvent>` instead of `RaiseAction<TEvent> | SendAction<TContext, TEvent, TEvent>`. This makes it comaptible in a broader range of scenarios.
|
|
1048
1175
|
|
|
1049
|
-
* [`8270d5a7`](https://github.com/
|
|
1176
|
+
* [`8270d5a7`](https://github.com/statelyai/xstate/commit/8270d5a76c71add3a5109e069bd85716b230b5d4) [#1372](https://github.com/statelyai/xstate/pull/1372) Thanks [@christianchown](https://github.com/christianchown)! - Narrowed the `ServiceConfig` type definition to use a specific event type to prevent compilation errors on strictly-typed `MachineOptions`.
|
|
1050
1177
|
|
|
1051
|
-
- [`01e3e2dc`](https://github.com/
|
|
1178
|
+
- [`01e3e2dc`](https://github.com/statelyai/xstate/commit/01e3e2dcead63dce3eef5ab745395584efbf05fa) [#1320](https://github.com/statelyai/xstate/pull/1320) Thanks [@davidkpiano](https://github.com/statelyai)! - The JSON definition for `stateNode.invoke` objects will no longer include the `onDone` and `onError` transitions, since those transitions are already merged into the `transitions` array. This solves the issue of reviving a serialized machine from JSON, where before, the `onDone` and `onError` transitions for invocations were wrongly duplicated.
|
|
1052
1179
|
|
|
1053
1180
|
## 4.11.0
|
|
1054
1181
|
|
|
1055
1182
|
### Minor Changes
|
|
1056
1183
|
|
|
1057
|
-
- [`36ed8d0a`](https://github.com/
|
|
1184
|
+
- [`36ed8d0a`](https://github.com/statelyai/xstate/commit/36ed8d0a3adf5b7fd187b0abe198220398e8b056) [#1262](https://github.com/statelyai/xstate/pull/1262) Thanks [@Andarist](https://github.com/Andarist)! - Improved type inference for `InvokeConfig['data']`. This has required renaming `data` property on `StateNode` instances to `doneData`. This property was never meant to be a part of the public API, so we don't consider this to be a breaking change.
|
|
1058
1185
|
|
|
1059
|
-
* [`2c75ab82`](https://github.com/
|
|
1186
|
+
* [`2c75ab82`](https://github.com/statelyai/xstate/commit/2c75ab822e49cb1a23c1e14eb7bd04548ab143eb) [#1219](https://github.com/statelyai/xstate/pull/1219) Thanks [@davidkpiano](https://github.com/statelyai)! - The resolved value of the `invoke.data` property is now available in the "invoke meta" object, which is passed as the 3rd argument to the service creator in `options.services`. This will work for all types of invoked services now, including promises, observables, and callbacks.
|
|
1060
1187
|
|
|
1061
1188
|
```js
|
|
1062
1189
|
const machine = createMachine({
|
|
@@ -1089,7 +1216,7 @@
|
|
|
1089
1216
|
}
|
|
1090
1217
|
```
|
|
1091
1218
|
|
|
1092
|
-
- [`a6c78ae9`](https://github.com/
|
|
1219
|
+
- [`a6c78ae9`](https://github.com/statelyai/xstate/commit/a6c78ae960acba36b61a41a5d154ea59908010b0) [#1249](https://github.com/statelyai/xstate/pull/1249) Thanks [@davidkpiano](https://github.com/statelyai)! - New property introduced for eventless (transient) transitions: **`always`**, which indicates a transition that is always taken when in that state. Empty string transition configs for [transient transitions](https://xstate.js.org/docs/guides/transitions.html#transient-transitions) are deprecated in favor of `always`:
|
|
1093
1220
|
|
|
1094
1221
|
```diff
|
|
1095
1222
|
// ...
|
|
@@ -1115,45 +1242,45 @@
|
|
|
1115
1242
|
|
|
1116
1243
|
### Patch Changes
|
|
1117
1244
|
|
|
1118
|
-
- [`36ed8d0a`](https://github.com/
|
|
1245
|
+
- [`36ed8d0a`](https://github.com/statelyai/xstate/commit/36ed8d0a3adf5b7fd187b0abe198220398e8b056) [#1262](https://github.com/statelyai/xstate/pull/1262) Thanks [@Andarist](https://github.com/Andarist)! - `StateMachine<any, any, any>` is no longer a part of the `InvokeConfig` type, but rather it creates a union with `InvokeConfig` in places where it is needed. This change shouldn't affect consumers' code.
|
|
1119
1246
|
|
|
1120
1247
|
## 4.10.0
|
|
1121
1248
|
|
|
1122
1249
|
### Minor Changes
|
|
1123
1250
|
|
|
1124
|
-
- [`0133954`](https://github.com/
|
|
1251
|
+
- [`0133954`](https://github.com/statelyai/xstate/commit/013395463b955e950ab24cb4be51faf524b0de6e) [#1178](https://github.com/statelyai/xstate/pull/1178) Thanks [@davidkpiano](https://github.com/statelyai)! - The types for the `send()` and `sendParent()` action creators have been changed to fix the issue of only being able to send events that the machine can receive. In reality, a machine can and should send events to other actors that it might not be able to receive itself. See [#711](https://github.com/statelyai/xstate/issues/711) for more information.
|
|
1125
1252
|
|
|
1126
|
-
* [`a1f1239`](https://github.com/
|
|
1253
|
+
* [`a1f1239`](https://github.com/statelyai/xstate/commit/a1f1239e20e05e338ed994d031e7ef6f2f09ad68) [#1189](https://github.com/statelyai/xstate/pull/1189) Thanks [@davidkpiano](https://github.com/statelyai)! - Previously, `state.matches(...)` was problematic because it was casting `state` to `never` if it didn't match the state value. This is now fixed by making the `Typestate` resolution more granular.
|
|
1127
1254
|
|
|
1128
|
-
- [`dbc6a16`](https://github.com/
|
|
1255
|
+
- [`dbc6a16`](https://github.com/statelyai/xstate/commit/dbc6a161c068a3e12dd12452b68a66fe3f4fb8eb) [#1183](https://github.com/statelyai/xstate/pull/1183) Thanks [@davidkpiano](https://github.com/statelyai)! - Actions from a restored state provided as a custom initial state to `interpret(machine).start(initialState)` are now executed properly. See #1174 for more information.
|
|
1129
1256
|
|
|
1130
1257
|
### Patch Changes
|
|
1131
1258
|
|
|
1132
|
-
- [`a10d604`](https://github.com/
|
|
1259
|
+
- [`a10d604`](https://github.com/statelyai/xstate/commit/a10d604a6afcf39048b02be5436acdd197f16c2b) [#1176](https://github.com/statelyai/xstate/pull/1176) Thanks [@itfarrier](https://github.com/itfarrier)! - Fix passing state schema into State generic
|
|
1133
1260
|
|
|
1134
|
-
* [`326db72`](https://github.com/
|
|
1261
|
+
* [`326db72`](https://github.com/statelyai/xstate/commit/326db725e50f7678af162626c6c7491e4364ec07) [#1185](https://github.com/statelyai/xstate/pull/1185) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with invoked service not being correctly started if other service got stopped in a subsequent microstep (in response to raised or null event).
|
|
1135
1262
|
|
|
1136
|
-
- [`c3a496e`](https://github.com/
|
|
1263
|
+
- [`c3a496e`](https://github.com/statelyai/xstate/commit/c3a496e1f92ec27db0643fd1ddc32d683db4e751) [#1160](https://github.com/statelyai/xstate/pull/1160) Thanks [@davidkpiano](https://github.com/statelyai)! - Delayed transitions defined using `after` were previously causing a circular dependency when the machine was converted using `.toJSON()`. This has now been fixed.
|
|
1137
1264
|
|
|
1138
|
-
* [`e16e48e`](https://github.com/
|
|
1265
|
+
* [`e16e48e`](https://github.com/statelyai/xstate/commit/e16e48e05e6243a3eacca58a13d3e663cd641f55) [#1153](https://github.com/statelyai/xstate/pull/1153) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with `choose` and `pure` not being able to use actions defined in options.
|
|
1139
1266
|
|
|
1140
|
-
- [`d496ecb`](https://github.com/
|
|
1267
|
+
- [`d496ecb`](https://github.com/statelyai/xstate/commit/d496ecb11b26011f2382d1ce6c4433284a7b3e9b) [#1165](https://github.com/statelyai/xstate/pull/1165) Thanks [@davidkpiano](https://github.com/statelyai)! - XState will now warn if you define an `.onDone` transition on the root node. Root nodes which are "done" represent the machine being in its final state, and can no longer accept any events. This has been reported as confusing in [#1111](https://github.com/statelyai/xstate/issues/1111).
|
|
1141
1268
|
|
|
1142
1269
|
## 4.9.1
|
|
1143
1270
|
|
|
1144
1271
|
### Patch Changes
|
|
1145
1272
|
|
|
1146
|
-
- [`8a97785`](https://github.com/
|
|
1273
|
+
- [`8a97785`](https://github.com/statelyai/xstate/commit/8a97785055faaeb1b36040dd4dc04e3b90fa9ec2) [#1137](https://github.com/statelyai/xstate/pull/1137) Thanks [@davidkpiano](https://github.com/statelyai)! - Added docs for the `choose()` and `pure()` action creators, as well as exporting the `pure()` action creator in the `actions` object.
|
|
1147
1274
|
|
|
1148
|
-
* [`e65dee9`](https://github.com/
|
|
1275
|
+
* [`e65dee9`](https://github.com/statelyai/xstate/commit/e65dee928fea60df1e9f83c82fed8102dfed0000) [#1131](https://github.com/statelyai/xstate/pull/1131) Thanks [@wKovacs64](https://github.com/wKovacs64)! - Include the new `choose` action in the `actions` export from the `xstate` core package. This was missed in v4.9.0.
|
|
1149
1276
|
|
|
1150
1277
|
## 4.9.0
|
|
1151
1278
|
|
|
1152
1279
|
### Minor Changes
|
|
1153
1280
|
|
|
1154
|
-
- [`f3ff150`](https://github.com/
|
|
1281
|
+
- [`f3ff150`](https://github.com/statelyai/xstate/commit/f3ff150f7c50f402704d25cdc053b76836e447e3) [#1103](https://github.com/statelyai/xstate/pull/1103) Thanks [@davidkpiano](https://github.com/statelyai)! - Simplify the `TransitionConfigArray` and `TransitionConfigMap` types in order to fix excessively deep type instantiation TypeScript reports. This addresses [#1015](https://github.com/statelyai/xstate/issues/1015).
|
|
1155
1282
|
|
|
1156
|
-
* [`6c47b66`](https://github.com/
|
|
1283
|
+
* [`6c47b66`](https://github.com/statelyai/xstate/commit/6c47b66c3289ff161dc96d9b246873f55c9e18f2) [#1076](https://github.com/statelyai/xstate/pull/1076) Thanks [@Andarist](https://github.com/Andarist)! - Added support for conditional actions. It's possible now to have actions executed based on conditions using following:
|
|
1157
1284
|
|
|
1158
1285
|
```js
|
|
1159
1286
|
entry: [
|
|
@@ -1172,45 +1299,45 @@
|
|
|
1172
1299
|
|
|
1173
1300
|
### Patch Changes
|
|
1174
1301
|
|
|
1175
|
-
- [`1a129f0`](https://github.com/
|
|
1302
|
+
- [`1a129f0`](https://github.com/statelyai/xstate/commit/1a129f0f35995981c160d756a570df76396bfdbd) [#1073](https://github.com/statelyai/xstate/pull/1073) Thanks [@Andarist](https://github.com/Andarist)! - Cleanup internal structures upon receiving termination events from spawned actors.
|
|
1176
1303
|
|
|
1177
|
-
* [`e88aa18`](https://github.com/
|
|
1304
|
+
* [`e88aa18`](https://github.com/statelyai/xstate/commit/e88aa18431629e1061b74dfd4a961b910e274e0b) [#1085](https://github.com/statelyai/xstate/pull/1085) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue with data expressions of root's final nodes being called twice.
|
|
1178
1305
|
|
|
1179
|
-
- [`88b17b2`](https://github.com/
|
|
1306
|
+
- [`88b17b2`](https://github.com/statelyai/xstate/commit/88b17b2476ff9a0fbe810df9d00db32c2241cd6e) [#1090](https://github.com/statelyai/xstate/pull/1090) Thanks [@rjdestigter](https://github.com/rjdestigter)! - This change carries forward the typestate type information encoded in the arguments of the following functions and assures that the return type also has the same typestate type information:
|
|
1180
1307
|
|
|
1181
1308
|
- Cloned state machine returned by `.withConfig`.
|
|
1182
1309
|
- `.state` getter defined for services.
|
|
1183
1310
|
- `start` method of services.
|
|
1184
1311
|
|
|
1185
|
-
* [`d5f622f`](https://github.com/
|
|
1312
|
+
* [`d5f622f`](https://github.com/statelyai/xstate/commit/d5f622f68f4065a2615b5a4a1caae6b508b4840e) [#1069](https://github.com/statelyai/xstate/pull/1069) Thanks [@davidkpiano](https://github.com/statelyai)! - Loosened event type for `SendAction<TContext, AnyEventObject>`
|
|
1186
1313
|
|
|
1187
1314
|
## 4.8.0
|
|
1188
1315
|
|
|
1189
1316
|
### Minor Changes
|
|
1190
1317
|
|
|
1191
|
-
- [`55aa589`](https://github.com/
|
|
1318
|
+
- [`55aa589`](https://github.com/statelyai/xstate/commit/55aa589648a9afbd153e8b8e74cbf2e0ebf573fb) [#960](https://github.com/statelyai/xstate/pull/960) Thanks [@davidkpiano](https://github.com/statelyai)! - The machine can now be safely JSON-serialized, using `JSON.stringify(machine)`. The shape of this serialization is defined in `machine.schema.json` and reflected in `machine.definition`.
|
|
1192
1319
|
|
|
1193
1320
|
Note that `onEntry` and `onExit` have been deprecated in the definition in favor of `entry` and `exit`.
|
|
1194
1321
|
|
|
1195
1322
|
### Patch Changes
|
|
1196
1323
|
|
|
1197
|
-
- [`1ae31c1`](https://github.com/
|
|
1324
|
+
- [`1ae31c1`](https://github.com/statelyai/xstate/commit/1ae31c17dc81fb63e699b4b9bf1cf4ead023001d) [#1023](https://github.com/statelyai/xstate/pull/1023) Thanks [@Andarist](https://github.com/Andarist)! - Fixed memory leak - `State` objects had been retained in closures.
|
|
1198
1325
|
|
|
1199
1326
|
## 4.7.8
|
|
1200
1327
|
|
|
1201
1328
|
### Patch Changes
|
|
1202
1329
|
|
|
1203
|
-
- [`520580b`](https://github.com/
|
|
1330
|
+
- [`520580b`](https://github.com/statelyai/xstate/commit/520580b4af597f7c83c329757ae972278c2d4494) [#967](https://github.com/statelyai/xstate/pull/967) Thanks [@andrewgordstewart](https://github.com/andrewgordstewart)! - Add context & event types to InvokeConfig
|
|
1204
1331
|
|
|
1205
1332
|
## 4.7.7
|
|
1206
1333
|
|
|
1207
1334
|
### Patch Changes
|
|
1208
1335
|
|
|
1209
|
-
- [`c8db035`](https://github.com/
|
|
1336
|
+
- [`c8db035`](https://github.com/statelyai/xstate/commit/c8db035b90a7ab4a557359d493d3dd7973dacbdd) [#936](https://github.com/statelyai/xstate/pull/936) Thanks [@davidkpiano](https://github.com/statelyai)! - The `escalate()` action can now take in an expression, which will be evaluated against the `context`, `event`, and `meta` to return the error data.
|
|
1210
1337
|
|
|
1211
|
-
* [`2a3fea1`](https://github.com/
|
|
1338
|
+
* [`2a3fea1`](https://github.com/statelyai/xstate/commit/2a3fea18dcd5be18880ad64007d44947cc327d0d) [#952](https://github.com/statelyai/xstate/pull/952) Thanks [@davidkpiano](https://github.com/statelyai)! - The typings for the raise() action have been fixed to allow any event to be raised. This typed behavior will be refined in version 5, to limit raised events to those that the machine accepts.
|
|
1212
1339
|
|
|
1213
|
-
- [`f86d419`](https://github.com/
|
|
1340
|
+
- [`f86d419`](https://github.com/statelyai/xstate/commit/f86d41979ed108e2ac4df63299fc16f798da69f7) [#957](https://github.com/statelyai/xstate/pull/957) Thanks [@Andarist](https://github.com/Andarist)! - Fixed memory leak - each created service has been registered in internal map but it was never removed from it. Registration has been moved to a point where Interpreter is being started and it's deregistered when it is being stopped.
|
|
1214
1341
|
|
|
1215
1342
|
## 4.7.6
|
|
1216
1343
|
|