@indexnetwork/protocol 17.0.0-rc.479.1 → 17.0.1-rc.480.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -20,6 +20,19 @@ went 6.7.1 → 8.0.2 with no 7.x in between because the whole 7.x line shipped a
20
20
  prereleases between the two promotions. To track every change, read `rc`; to
21
21
  pin a supported release, use `latest`.
22
22
 
23
+ ## 17.0.1 - 2026-08-17
24
+
25
+ ### Removed
26
+
27
+ - Remove `src/architecture/tests/` (`capability-barrels`, `package-entry`,
28
+ `execution-matrix`). These asserted that source files contain particular
29
+ strings — including the wording of `capability-boundaries.ts`'s own violation
30
+ messages — and duplicated the model assertions already in
31
+ `scripts/architecture/tests/capability-model.spec.ts`. Enforcement is
32
+ unchanged: `architecture:host-isolation` and `architecture:capabilities` walk
33
+ the real import graph and are what the CI gate depends on. `test:architecture`
34
+ now runs `scripts/architecture/tests` only.
35
+
23
36
  ## 17.0.0 - 2026-08-17
24
37
 
25
38
  ### Removed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indexnetwork/protocol",
3
- "version": "17.0.0-rc.479.1",
3
+ "version": "17.0.1-rc.480.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  "test": "bun test scripts/tests/test-runner.spec.ts && bun scripts/test.ts",
24
24
  "test:isolated": "bun test scripts/tests/test-runner.spec.ts && bun scripts/test.ts",
25
25
  "test:shared": "bun test",
26
- "test:architecture": "bun test src/architecture/tests scripts/architecture/tests",
26
+ "test:architecture": "bun test scripts/architecture/tests",
27
27
  "architecture:host-isolation": "bun scripts/architecture/host-isolation.ts",
28
28
  "architecture:capabilities": "bun scripts/architecture/capability-boundaries.ts",
29
29
  "architecture:check": "bun run architecture:host-isolation && bun run architecture:capabilities && bun run test:architecture",