@ai-matrx/associations 0.7.0 → 0.7.2

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
@@ -1,5 +1,20 @@
1
1
  # Changelog — @ai-matrx/associations
2
2
 
3
+ ## 0.7.2 — 2026-09-01 (verified republish of universal-search repair)
4
+
5
+ - Republishes the 0.7.1 reference-pickable universal-search repair under a
6
+ fresh immutable version because npm accepted 0.7.1 metadata but never served
7
+ its tarball. Consumers must adopt this hash-verified release, not 0.7.1.
8
+
9
+ ## 0.7.1 — 2026-09-01 (reference-pickable universal search)
10
+
11
+ - Universal search and attach defaults now use `registry.listableTokens()`.
12
+ Display-only content types remain visible when already attached, but no
13
+ longer generate candidate RPC calls or picker chips.
14
+ - Explicit token lists remain supported for specialized host adapters.
15
+ - A regression proves the default RPC sweep exactly matches the registry's
16
+ reference-pickable, listable set. Full package suite: 190 tests.
17
+
3
18
  ## 0.7.0 — 2026-08-31 (role-safe pin and detach)
4
19
 
5
20
  - `useContainerLinks` now exposes `setPinned`, which updates the exact
@@ -2427,7 +2427,7 @@ function createCandidatesService(deps) {
2427
2427
  }
2428
2428
  async function searchCandidatesAcrossTokens(args) {
2429
2429
  const { tokens, search, ownerId, perTokenLimit = 5, concurrency = 6 } = args;
2430
- const list = tokens ?? registry.curatedTokens();
2430
+ const list = tokens ?? registry.listableTokens();
2431
2431
  if (list.length === 0) return [];
2432
2432
  const out = [];
2433
2433
  let cursor = 0;