@systemfsoftware/stryker-js-cli 4.0.2 → 5.0.0
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 +32 -0
- package/README.md +2 -2
- package/dist/main.mjs +349 -396
- package/dist/node-D-ynY_kk.mjs +105 -0
- package/dist/worker-runtime-CT5LMMgY.mjs +20 -0
- package/dist/workers/checker-worker.mjs +53 -0
- package/dist/workers/child-process-test-runner-worker.mjs +67 -0
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @systemfsoftware/stryker-js-cli
|
|
2
2
|
|
|
3
|
+
## 5.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- The Node host package `@systemfsoftware/stryker-js-platform-node` is gone: the engine (`@systemfsoftware/stryker-js-engine`) is the host-neutral mutation run, and the `stryker` CLI owns the Node composition roots and worker entries. Depend on the engine for the run and the CLI for process entries; install the new names.
|
|
8
|
+
|
|
9
|
+
- RunOutcome now places the genuine verdicts (RunParseFailed, RunSurvivorsRejected, RunConfigFailed, RunFailed) on the decision channel as a branded tagged union; RunInterrupted remains a failure. Output.workflow resolves a branded HumanOutput|MachineOutput union instead of a plain record
|
|
10
|
+
|
|
11
|
+
- Disposing a worker now terminates the whole process group and escalates. The
|
|
12
|
+
runner signals the group so a worker's own child processes go with it, waits for
|
|
13
|
+
the exit, and sends `SIGKILL` if the worker is still alive two seconds later.
|
|
14
|
+
Previously a single `SIGTERM` went to one process id and the runner moved on
|
|
15
|
+
after a fixed wait, so a worker that installed a `SIGTERM` handler — or that had
|
|
16
|
+
spawned children of its own — outlived the run.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies:
|
|
21
|
+
- @systemfsoftware/effect-cell-types@6.0.0
|
|
22
|
+
- @systemfsoftware/stryker-js@1.0.0
|
|
23
|
+
- @systemfsoftware/stryker-js-html-reporter@1.0.0
|
|
24
|
+
|
|
25
|
+
## 4.0.3
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Refreshed builds on the platform-services dependency graph; the packages no longer reach for host builtins directly. No CLI flags or option names change.
|
|
30
|
+
|
|
31
|
+
- Updated dependencies:
|
|
32
|
+
- @systemfsoftware/stryker-js@0.2.0
|
|
33
|
+
- @systemfsoftware/stryker-js-platform-node@0.2.0
|
|
34
|
+
|
|
3
35
|
## 4.0.2
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -84,7 +84,7 @@ The highest pending class wins; a terminating signal outranks all of them.
|
|
|
84
84
|
|
|
85
85
|
## Related
|
|
86
86
|
|
|
87
|
-
The mutation engine is [`@systemfsoftware/stryker-js-
|
|
87
|
+
The mutation engine is [`@systemfsoftware/stryker-js-engine`][engine].
|
|
88
88
|
This package is the terminal-facing half and reaches it through an injected
|
|
89
89
|
run-event sink;
|
|
90
90
|
it ships a command and exposes no importable API.
|
|
@@ -100,5 +100,5 @@ Licensed under [Apache 2.0][license-url].
|
|
|
100
100
|
[license-badge]: https://img.shields.io/badge/license-Apache_2.0-blue?style=flat-square
|
|
101
101
|
[license-url]: https://github.com/systemfsoftware/systemfsoftware/blob/main/LICENSE
|
|
102
102
|
[repo]: https://github.com/systemfsoftware/systemfsoftware
|
|
103
|
-
[engine]: https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/testing/mutation/stryker-js/
|
|
103
|
+
[engine]: https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/testing/mutation/stryker-js/engine
|
|
104
104
|
[docs]: https://stryker-mutator.io/docs/stryker-js/configuration/
|