@ai-matrx/associations 0.7.0 → 0.7.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 +9 -0
- package/dist/core/index.cjs +1 -1
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.js +1 -1
- package/dist/core/index.js.map +1 -1
- package/dist/react/index.cjs +3 -3
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.js +3 -3
- package/dist/react/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog — @ai-matrx/associations
|
|
2
2
|
|
|
3
|
+
## 0.7.1 — 2026-09-01 (reference-pickable universal search)
|
|
4
|
+
|
|
5
|
+
- Universal search and attach defaults now use `registry.listableTokens()`.
|
|
6
|
+
Display-only content types remain visible when already attached, but no
|
|
7
|
+
longer generate candidate RPC calls or picker chips.
|
|
8
|
+
- Explicit token lists remain supported for specialized host adapters.
|
|
9
|
+
- A regression proves the default RPC sweep exactly matches the registry's
|
|
10
|
+
reference-pickable, listable set. Full package suite: 190 tests.
|
|
11
|
+
|
|
3
12
|
## 0.7.0 — 2026-08-31 (role-safe pin and detach)
|
|
4
13
|
|
|
5
14
|
- `useContainerLinks` now exposes `setPinned`, which updates the exact
|
package/dist/core/index.cjs
CHANGED
|
@@ -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.
|
|
2430
|
+
const list = tokens ?? registry.listableTokens();
|
|
2431
2431
|
if (list.length === 0) return [];
|
|
2432
2432
|
const out = [];
|
|
2433
2433
|
let cursor = 0;
|