@ai-matrx/associations 0.5.1 → 0.5.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 +10 -0
- package/README.md +3 -2
- package/package.json +5 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog — @ai-matrx/associations
|
|
2
2
|
|
|
3
|
+
## 0.5.2 — 2026-08-30 (X3 peer retrofit)
|
|
4
|
+
|
|
5
|
+
- `@ai-matrx/design-system` is now a REAL dependency (`^0.3.1`) instead of an
|
|
6
|
+
optional peer (register row X3 / law C23: sibling `@ai-matrx/*` packages are
|
|
7
|
+
never peers — only react/react-dom/react-native stay peers). Installing this
|
|
8
|
+
package brings the faces' chrome automatically; nothing to resolve by hand.
|
|
9
|
+
The tarball canary no longer installs design-system manually — the graph
|
|
10
|
+
resolves itself from the registry. `react` remains the only (optional) peer.
|
|
11
|
+
No code changes.
|
|
12
|
+
|
|
3
13
|
## 0.5.1 — 2026-08-30 (vocabulary patch)
|
|
4
14
|
|
|
5
15
|
- Entity-token vocabulary regenerated from the live registry: **655 tokens**
|
package/README.md
CHANGED
|
@@ -48,8 +48,9 @@ await assertDemandedSchema(supabase, { selfTest: true });
|
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
```tsx
|
|
51
|
-
// /react — the banner'd React binding (peer: react >=18
|
|
52
|
-
// @ai-matrx/design-system
|
|
51
|
+
// /react — the banner'd React binding (peer: react >=18;
|
|
52
|
+
// @ai-matrx/design-system is a real dependency — the faces' chrome
|
|
53
|
+
// installs automatically). Bind ONCE:
|
|
53
54
|
import {
|
|
54
55
|
AssociationsProvider,
|
|
55
56
|
useAssociations, // the seven hooks keep the app originals' exact signatures
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-matrx/associations",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "THE one way to relate two entities on the AI Matrx platform: the association edge vocabulary, the generated 650-token entity-type registry, the demanded RPC contract (assoc_/cat_/ues_ families), and the typed ports the headless core and React faces bind through. This package DEMANDS the platform.associations schema — a consumer who won't run our schema is not this package's consumer.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -65,17 +65,16 @@
|
|
|
65
65
|
"./package.json": "./package.json"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
|
-
"@ai-matrx/design-system": ">=0.3.0",
|
|
69
68
|
"react": ">=18.0.0"
|
|
70
69
|
},
|
|
71
70
|
"peerDependenciesMeta": {
|
|
72
|
-
"@ai-matrx/design-system": {
|
|
73
|
-
"optional": true
|
|
74
|
-
},
|
|
75
71
|
"react": {
|
|
76
72
|
"optional": true
|
|
77
73
|
}
|
|
78
74
|
},
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"@ai-matrx/design-system": "^0.3.1"
|
|
77
|
+
},
|
|
79
78
|
"devDependencies": {
|
|
80
79
|
"@arethetypeswrong/cli": "^0.18.5",
|
|
81
80
|
"@supabase/supabase-js": "^2.58.0",
|
|
@@ -93,8 +92,7 @@
|
|
|
93
92
|
"typescript": "^5.9.3",
|
|
94
93
|
"vitest": "^4.1.6",
|
|
95
94
|
"@ai-matrx/data": "0.3.0",
|
|
96
|
-
"@ai-matrx/
|
|
97
|
-
"@ai-matrx/kit": "0.7.2"
|
|
95
|
+
"@ai-matrx/kit": "0.7.3"
|
|
98
96
|
},
|
|
99
97
|
"publishConfig": {
|
|
100
98
|
"access": "public",
|