@indexnetwork/protocol 14.3.0-rc.475.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 +86 -0
- package/STABILITY.md +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -20,6 +20,74 @@ 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
|
+
|
|
47
|
+
## 14.3.1 - 2026-08-16
|
|
48
|
+
|
|
49
|
+
No source change. Tooling and release record only.
|
|
50
|
+
|
|
51
|
+
### Added
|
|
52
|
+
|
|
53
|
+
- `bun run architecture:exports` generates `architecture/exports.snapshot.json`
|
|
54
|
+
from `src/index.ts`, and `bun run check:exports` reports drift and exits
|
|
55
|
+
non-zero. `check:exports` is now part of `architecture:check`, which CI runs.
|
|
56
|
+
|
|
57
|
+
The inventory is read by `scripts/build-protocol-atlas.ts` as the export
|
|
58
|
+
inventory, but that only validates the subset in `ROOT_EXPORT_COMPONENTS` —
|
|
59
|
+
the other ~380 entries were hand-maintained, which is how 300 of them came to
|
|
60
|
+
point at directories renamed in 14.2.1. The generator derives `name`, `kind`,
|
|
61
|
+
and `source` from the entry point, so that class of drift cannot recur.
|
|
62
|
+
|
|
63
|
+
`stability` is the one field that is not mechanical: `src/index.ts` groups its
|
|
64
|
+
re-exports under banner comments, and a section carrying a standalone
|
|
65
|
+
`@experimental` line is experimental until the next banner. Two traps that
|
|
66
|
+
cost a wrong first implementation each are covered by tests — the file header
|
|
67
|
+
explains the tiering in prose ("Sections marked `@experimental` below"), which
|
|
68
|
+
must not match, and the marker scopes to its own section rather than to the
|
|
69
|
+
rest of the file.
|
|
70
|
+
|
|
71
|
+
Anything the inventory cannot describe — a bare `export *`, a locally
|
|
72
|
+
declared export, a re-export with no module specifier — raises rather than
|
|
73
|
+
being skipped. Silently dropping one means `check:exports` reports "matches"
|
|
74
|
+
while the public surface has grown unrecorded, which is the failure the
|
|
75
|
+
inventory exists to prevent. `export * as ns from` is representable and is
|
|
76
|
+
recorded as the single name it introduces.
|
|
77
|
+
|
|
78
|
+
Drift is compared positionally, not by set membership: the inventory mirrors
|
|
79
|
+
declaration order, so reordering or duplicating an entry is real drift that a
|
|
80
|
+
set comparison reports as an empty diff above a "stale" error.
|
|
81
|
+
|
|
82
|
+
Verified by reproducing the committed inventory byte-for-byte, all 443
|
|
83
|
+
entries.
|
|
84
|
+
|
|
85
|
+
### Fixed
|
|
86
|
+
|
|
87
|
+
- Backfilled the missing `14.0.0` CHANGELOG section. That release shipped in
|
|
88
|
+
#1402 and bumped `package.json` without a changelog entry, so the record
|
|
89
|
+
jumped 13.2.1 → 14.1.0 with a breaking change unrecorded in between.
|
|
90
|
+
|
|
23
91
|
## 14.3.0 - 2026-08-16
|
|
24
92
|
|
|
25
93
|
No public API change: all 443 exported symbols are byte-identical to 14.2.2.
|
|
@@ -220,6 +288,24 @@ This is internal structure only.
|
|
|
220
288
|
touching `QUESTIONER_ENABLED` — so the accessor deliberately does not reuse
|
|
221
289
|
`positiveIntEnv`. Configured by `QUESTIONER_INTENT_DAILY_CAP`.
|
|
222
290
|
|
|
291
|
+
## 14.0.0 - 2026-08-15
|
|
292
|
+
|
|
293
|
+
Backfilled. This release shipped in #1402 and bumped `package.json` without a
|
|
294
|
+
CHANGELOG section, so the record jumped 13.2.1 → 14.1.0. Reconstructed from the
|
|
295
|
+
commit (`225425371d`) rather than from memory.
|
|
296
|
+
|
|
297
|
+
### Removed
|
|
298
|
+
|
|
299
|
+
- **BREAKING**: retired the pre-personafication `orchestrator` chat persona.
|
|
300
|
+
`ORCHESTRATOR_PERSONA_ID` and `ORCHESTRATOR_PERSONA` are gone from the package
|
|
301
|
+
surface, and `ChatGraphFactory` and `ChatAgent.create()` now require a persona
|
|
302
|
+
— there is no default to fall back on, and unknown values fail closed.
|
|
303
|
+
|
|
304
|
+
Production evidence at the time: the orchestrator had written no new session
|
|
305
|
+
since 2026-08-04, and the presence of `onboarding`-persona rows showed the
|
|
306
|
+
Signal cutover flag was already on. The 9,464 historical orchestrator
|
|
307
|
+
conversations remain readable.
|
|
308
|
+
|
|
223
309
|
## 13.2.1 - 2026-08-16
|
|
224
310
|
|
|
225
311
|
No public API change: all 441 exported symbols are byte-identical to 13.2.0, and
|
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`.
|