@indexnetwork/protocol 10.1.0-rc.450.1 → 10.1.1-rc.451.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 +2 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -67,6 +67,8 @@ pin a supported release, use `latest`.
|
|
|
67
67
|
`SynthesisResult` types. Minor bump: additive surface only.
|
|
68
68
|
|
|
69
69
|
### Changed
|
|
70
|
+
- Add a fail-closed isolated provider-free test gate (10.1.1). Tooling-only
|
|
71
|
+
safety foundation; no runtime or public API behavior changes.
|
|
70
72
|
- Share capability classification metadata between the existing architecture
|
|
71
73
|
boundary gate and the protocol atlas generator; allowed dependency directions
|
|
72
74
|
are unchanged.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indexnetwork/protocol",
|
|
3
|
-
"version": "10.1.
|
|
3
|
+
"version": "10.1.1-rc.451.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -20,8 +20,9 @@
|
|
|
20
20
|
"build": "rm -rf dist && tsc",
|
|
21
21
|
"build:package": "rm -rf dist && tsc --project tsconfig.package.json",
|
|
22
22
|
"dev": "tsc --watch",
|
|
23
|
-
"test": "bun test",
|
|
24
|
-
"test:isolated": "bun scripts/test.ts",
|
|
23
|
+
"test": "bun test scripts/tests/test-runner.spec.ts && bun scripts/test.ts",
|
|
24
|
+
"test:isolated": "bun test scripts/tests/test-runner.spec.ts && bun scripts/test.ts",
|
|
25
|
+
"test:shared": "bun test",
|
|
25
26
|
"test:architecture": "bun test src/architecture/tests scripts/architecture/tests",
|
|
26
27
|
"architecture:exports": "bun scripts/architecture/export-inventory.ts",
|
|
27
28
|
"architecture:exports:update": "bun scripts/architecture/export-inventory.ts --write",
|