@particle-academy/fancy-conformance 0.23.0 → 0.25.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/README.md +2 -0
- package/VERSION +1 -1
- package/package.json +1 -1
- package/suites/flow/durable-dispatch/cases.json +1199 -0
- package/suites/flow/durable-dispatch/manifest.json +30 -0
- package/suites/flow/run-diagnostics/cases.json +1334 -0
- package/suites/flow/run-diagnostics/manifest.json +29 -0
package/README.md
CHANGED
|
@@ -69,6 +69,8 @@ verbatim.
|
|
|
69
69
|
| `shared/image-header` | 16 | Image dimensions read from the header bytes, without an image library |
|
|
70
70
|
| `shared/flow-run-identity` | 25 | fancy-flow's run/step identity: the idempotency key a retrying connector sends, and when a retry may still reuse it |
|
|
71
71
|
| `flow/graph-runs` | 23 | Whole-graph execution: the same `WorkflowSchema` in, the same `RunResult.outputs` out |
|
|
72
|
+
| `flow/run-diagnostics` | 14 | The run-time warnings for a graph that delivers nothing: an edge naming a port its source can never publish, and a route taken on a path that did not resolve. Half the rows pin when to stay silent |
|
|
73
|
+
| `flow/durable-dispatch` | 14 | How a queued run hands out nodes: one at a time by default, in declaration order, with a paused gate keeping its slot; a cap and the whole frontier only when a host asks |
|
|
72
74
|
|
|
73
75
|
Every case carries an `id`, a `title`, the suite version it arrived in, and —
|
|
74
76
|
where it exists to catch something specific — a `notes` field saying what.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.25.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@particle-academy/fancy-conformance",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.0",
|
|
4
4
|
"description": "Shared cross-language conformance fixtures for the Fancy suite. One contract, N implementations, and a single table that every implementation asserts in its own CI — so 'parity' is a test result rather than a claim. Ships the fixture data itself, so a Rust, Go or Python runner can consume it without a JavaScript toolchain.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|