@temporalio/core-bridge 1.4.1 → 1.4.3
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/package.json +2 -2
- package/releases/aarch64-apple-darwin/index.node +0 -0
- package/releases/aarch64-unknown-linux-gnu/index.node +0 -0
- package/releases/x86_64-apple-darwin/index.node +0 -0
- package/releases/x86_64-pc-windows-msvc/index.node +0 -0
- package/releases/x86_64-unknown-linux-gnu/index.node +0 -0
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temporalio/core-bridge",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "Temporal.io SDK Core<>Node bridge",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "be51cfac7016b66151d70dbd5aca7f7ef02b260a"
|
|
46
46
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -71,6 +71,7 @@ fsm! {
|
|
|
71
71
|
// Ignore any spurious cancellations after resolution
|
|
72
72
|
Cancelled --(Cancel) --> Cancelled;
|
|
73
73
|
Failed --(Cancel) --> Failed;
|
|
74
|
+
StartFailed --(Cancel) --> StartFailed;
|
|
74
75
|
TimedOut --(Cancel) --> TimedOut;
|
|
75
76
|
Completed --(Cancel) --> Completed;
|
|
76
77
|
}
|
|
@@ -845,6 +846,7 @@ mod test {
|
|
|
845
846
|
for state in [
|
|
846
847
|
ChildWorkflowMachineState::Cancelled(Cancelled {}),
|
|
847
848
|
Failed {}.into(),
|
|
849
|
+
StartFailed {}.into(),
|
|
848
850
|
TimedOut {}.into(),
|
|
849
851
|
Completed {}.into(),
|
|
850
852
|
] {
|