@indexnetwork/protocol 14.3.1-rc.476.1 → 14.3.2-rc.477.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 CHANGED
@@ -20,6 +20,30 @@ 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
+ ## 14.3.2 - 2026-08-16
24
+
25
+ No source change. The public contract in `src/index.ts` is untouched; only
26
+ non-shipped tooling was removed.
27
+
28
+ ### Removed
29
+
30
+ - `architecture/exports.snapshot.json`, the `architecture:exports` and
31
+ `check:exports` scripts, and `scripts/architecture/export-inventory.ts`.
32
+ `check:exports` is gone from `architecture:check` and from the CI lint job.
33
+
34
+ The inventory was fully derived from `src/index.ts` as of 14.3.1, so
35
+ `check:exports` could not catch a genuine defect — only a missed regenerate.
36
+ Its remaining value was making stable-export removals visible in a PR diff,
37
+ and that is now a review responsibility: consult [STABILITY.md](./STABILITY.md)
38
+ when changing the barrel, because nothing mechanical will flag a major bump.
39
+
40
+ The snapshot was never published (`files` covers `dist`, `IMPLEMENTATION.md`,
41
+ `STABILITY.md`, `CHANGELOG.md`), so no consumer is affected.
42
+
43
+ - `scripts/architecture/module-graph.ts` and its spec. Its only non-test caller
44
+ was the deleted protocol atlas generator. `capability-model.ts` is unaffected —
45
+ `capability-boundaries.ts` and the `src/architecture` specs still use it.
46
+
23
47
  ## 14.3.1 - 2026-08-16
24
48
 
25
49
  No source change. Tooling and release record only.
package/STABILITY.md CHANGED
@@ -13,7 +13,9 @@ change. It is the reference behind the tier annotations in `src/index.ts`.
13
13
  of the contract and may change or disappear in any release — do not rely on them.
14
14
  - The contract is exactly the set of symbols re-exported from `src/index.ts`.
15
15
  Exports are listed explicitly (no `export *` wildcards), so the surface is
16
- reviewable and additions are always intentional.
16
+ reviewable and additions are always intentional. Nothing checks this
17
+ mechanically — a removed or renamed stable export is caught in review of the
18
+ `src/index.ts` diff, and that is what triggers the major bump below.
17
19
  - Root exports are assembled through named capability facades. Those facades are
18
20
  implementation seams, not package subpath entry points: consumers must still
19
21
  import only from `@indexnetwork/protocol`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indexnetwork/protocol",
3
- "version": "14.3.1-rc.476.1",
3
+ "version": "14.3.2-rc.477.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -26,9 +26,7 @@
26
26
  "test:architecture": "bun test src/architecture/tests 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
- "architecture:exports": "bun scripts/architecture/export-inventory.ts",
30
- "check:exports": "bun scripts/architecture/export-inventory.ts --check",
31
- "architecture:check": "bun run architecture:host-isolation && bun run architecture:capabilities && bun run check:exports && bun run test:architecture",
29
+ "architecture:check": "bun run architecture:host-isolation && bun run architecture:capabilities && bun run test:architecture",
32
30
  "prepublishOnly": "bun run build",
33
31
  "prepack": "bun run build:package",
34
32
  "eval:matching": "bun --env-file=../../.env.test ./eval/matching/matching.eval.ts",