@indexnetwork/protocol 8.0.2-rc.418.1 → 8.0.3-rc.420.1
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 +6 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -39,6 +39,12 @@ See [STABILITY.md](./STABILITY.md) for the public-contract and tier definitions.
|
|
|
39
39
|
with that change; this entry and the regenerated export inventory record it.
|
|
40
40
|
|
|
41
41
|
### Fixed
|
|
42
|
+
- `architecture:cycles` graphs runtime edges only (8.0.3). It counted `import
|
|
43
|
+
type` / `export type` edges, which TypeScript erases, so it reported a
|
|
44
|
+
7-module negotiation/questions cycle that no runtime can observe — penalizing
|
|
45
|
+
the capability-facade pattern of depending on a port *type* instead of an
|
|
46
|
+
implementation. Tooling only; no source or public-surface change. The full
|
|
47
|
+
`architecture:check` suite now passes and runs in CI.
|
|
42
48
|
- Stop force-rewriting an opening-move refusal (IND-611 prerequisite; 7.11.0):
|
|
43
49
|
`negotiation.graph.ts` ran the turn-0 opening force *before* the IND-564
|
|
44
50
|
opening-withdraw guard, so a v2 initiator that judged a match not worth making
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indexnetwork/protocol",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.3-rc.420.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dev": "tsc --watch",
|
|
23
23
|
"test": "bun test",
|
|
24
24
|
"test:isolated": "bun scripts/test.ts",
|
|
25
|
-
"test:architecture": "bun test src/architecture/tests",
|
|
25
|
+
"test:architecture": "bun test src/architecture/tests scripts/architecture/tests",
|
|
26
26
|
"architecture:exports": "bun scripts/architecture/export-inventory.ts",
|
|
27
27
|
"architecture:exports:update": "bun scripts/architecture/export-inventory.ts --write",
|
|
28
28
|
"architecture:consumer": "bunx tsc --project architecture/consumer/tsconfig.json",
|