@ai-matrx/associations 0.8.6 → 0.8.7
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 +16 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog — @ai-matrx/associations
|
|
2
2
|
|
|
3
|
+
## 0.8.7
|
|
4
|
+
|
|
5
|
+
`pnpm gen:entity-types` no longer requires a package-local `.env.local` that has
|
|
6
|
+
never existed in any checkout. The generator now walks `.env.local`/`.env` from
|
|
7
|
+
this package up to the repo root (stopping at `.git`) and accepts
|
|
8
|
+
`SUPABASE_MATRIX_URL` / `SUPABASE_MATRIX_SECRET_KEY` alongside the app-side
|
|
9
|
+
`NEXT_PUBLIC_SUPABASE_URL` / `SUPABASE_SECRET_KEY`. When no credentials are
|
|
10
|
+
found it names every accepted spelling and every directory it searched instead
|
|
11
|
+
of pointing at a file nobody has.
|
|
12
|
+
|
|
13
|
+
No API change; the generated vocabulary is unchanged (670 tokens). This is the
|
|
14
|
+
papercut half of the fix for the entity-vocabulary drift that froze
|
|
15
|
+
matrx-frontend releases on 2026-08-30 and 2026-08-31 — the structural half is
|
|
16
|
+
aidream's blocking release gate,
|
|
17
|
+
`scripts/check_entity_vocabulary_published.py`.
|
|
18
|
+
|
|
3
19
|
## 0.8.6
|
|
4
20
|
|
|
5
21
|
Regenerated `src/entity-types.generated.ts` from live
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-matrx/associations",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.7",
|
|
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",
|
|
@@ -106,8 +106,8 @@
|
|
|
106
106
|
"tsx": "^4.19.2",
|
|
107
107
|
"typescript": "^5.9.3",
|
|
108
108
|
"vitest": "^4.1.6",
|
|
109
|
-
"@ai-matrx/data": "0.12.
|
|
110
|
-
"@ai-matrx/kit": "0.
|
|
109
|
+
"@ai-matrx/data": "0.12.1",
|
|
110
|
+
"@ai-matrx/kit": "0.12.1"
|
|
111
111
|
},
|
|
112
112
|
"publishConfig": {
|
|
113
113
|
"access": "public",
|