@indexnetwork/protocol 8.1.0-rc.421.1 → 8.1.1-rc.422.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 +47 -7
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -10,8 +10,45 @@ See [STABILITY.md](./STABILITY.md) for the public-contract and tier definitions.
10
10
  > itemized. From `2.0.0` onward, keep this file updated as part of every release
11
11
  > (bump `package.json` and the `[Unreleased]` section before promoting to `main`).
12
12
 
13
+ ## Release model
14
+
15
+ Every push to `dev` publishes `<package.json version>-rc.<run>.<attempt>` under
16
+ the npm `rc` tag; `latest` moves only when `main` is promoted, and only if that
17
+ exact version is not already on npm. **Stable releases are therefore sparse and
18
+ skip versions on purpose** — most versions only ever exist as an `rc`. `latest`
19
+ went 6.7.1 → 8.0.2 with no 7.x in between because the whole 7.x line shipped as
20
+ prereleases between the two promotions. To track every change, read `rc`; to
21
+ pin a supported release, use `latest`.
22
+
13
23
  ## [Unreleased]
14
24
 
25
+ ### Added
26
+ - Deterministic fast signal intake (#1307; 8.1.0). `SignalIntakePackGenerator`
27
+ precomputes a per-user intake brief plus round-1 question, and
28
+ `SignalIntakeOrchestrator` drives the funnel as a deterministic state machine
29
+ on flash instead of sequential pro turns, with synthesis speculated during a
30
+ deterministic community picker. New stable exports from the `signals` facade:
31
+ `SignalIntakePackGenerator`, `normalizeIntakePack`, `SignalIntakeOrchestrator`,
32
+ `answerLabel`, `FALLBACK_WHO_QUESTION`, `FALLBACK_BRING_QUESTION`, and the
33
+ `IntakePack` / `IntakePackInput` / `IntakePackQuestion` /
34
+ `IntakePackQuestionOption` / `IntakeAnswer` / `SynthesisInput` /
35
+ `SynthesisResult` types. Minor bump: additive surface only.
36
+
37
+ ### Fixed
38
+ - `architecture:cycles` graphs runtime edges only (8.0.3). It counted `import
39
+ type` / `export type` edges, which TypeScript erases, so it reported a
40
+ 7-module negotiation/questions cycle that no runtime can observe — penalizing
41
+ the capability-facade pattern of depending on a port *type* instead of an
42
+ implementation. Tooling only; no source or public-surface change. The full
43
+ `architecture:check` suite now passes and runs in CI.
44
+
45
+ ## [8.0.2] — 2026-07-30
46
+
47
+ Promoted to npm `latest` on 2026-07-30, carrying the whole 7.6.0 → 8.0.2 line.
48
+ Those intermediate versions were published as `-rc` prereleases from `dev`
49
+ only, so `latest` moved 6.7.1 → 8.0.2 in one step; see **Release model**
50
+ above. Entries below keep the version they were developed under.
51
+
15
52
  ### Added
16
53
  - Configurable negotiator stance `NEGOTIATOR_STANCE` (IND-611; 7.11.0), shipped
17
54
  dark. `advocate` (default) | `evaluator` | `skeptic`, resolved by the new
@@ -39,12 +76,6 @@ See [STABILITY.md](./STABILITY.md) for the public-contract and tier definitions.
39
76
  with that change; this entry and the regenerated export inventory record it.
40
77
 
41
78
  ### 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.
48
79
  - Stop force-rewriting an opening-move refusal (IND-611 prerequisite; 7.11.0):
49
80
  `negotiation.graph.ts` ran the turn-0 opening force *before* the IND-564
50
81
  opening-withdraw guard, so a v2 initiator that judged a match not worth making
@@ -710,7 +741,16 @@ the matching/opportunity/premise eval harnesses, premise source tracking and
710
741
  cascade retraction, network-scoped agents, and the agent registry. Reconstructed
711
742
  from git history; not itemized.
712
743
 
713
- [Unreleased]: https://github.com/indexnetwork/protocol/compare/v4.3.0...HEAD
744
+ <!--
745
+ Release tags stopped being created when publishing moved to the automated
746
+ subtree workflow: only v0.2.1 and v0.3.0 still exist in indexnetwork/protocol,
747
+ so every `compare/vX.Y.Z` link below 404s. They are kept for historical intent.
748
+ New entries link to the npm release instead, and [Unreleased] compares the
749
+ branches that actually define it.
750
+ -->
751
+
752
+ [Unreleased]: https://github.com/indexnetwork/protocol/compare/main...dev
753
+ [8.0.2]: https://www.npmjs.com/package/@indexnetwork/protocol/v/8.0.2
714
754
  [4.3.0]: https://github.com/indexnetwork/protocol/compare/v4.2.0...v4.3.0
715
755
  [4.2.0]: https://github.com/indexnetwork/protocol/compare/v4.1.0...v4.2.0
716
756
  [4.1.0]: https://github.com/indexnetwork/protocol/compare/v4.0.0...v4.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indexnetwork/protocol",
3
- "version": "8.1.0-rc.421.1",
3
+ "version": "8.1.1-rc.422.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",