@ai-matrx/content-ir-react 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 +8 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.7.1 — 2026-08-30
|
|
4
|
+
|
|
5
|
+
- `@ai-matrx/content-ir` is now a REAL dependency (`^0.9.0`) instead of a peer
|
|
6
|
+
(register row X3 / law C23: sibling `@ai-matrx/*` packages are ordinary
|
|
7
|
+
dependencies — only react/react-dom/react-native stay peers). The kernel
|
|
8
|
+
resolves itself on install. `react` is the only remaining peer. No code
|
|
9
|
+
changes.
|
|
10
|
+
|
|
3
11
|
## 0.7.0 — 2026-08-29
|
|
4
12
|
|
|
5
13
|
- **`kindIsRoutable` no longer counts the generic fallback as a render path.**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-matrx/content-ir-react",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "The shared AI Matrx Content IR RENDER layer: kind routing, the component resolver, provisional (streaming) rendering, the runtime-wrapper chrome, and the generic structured floor — as portable React.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -36,9 +36,11 @@
|
|
|
36
36
|
"./package.json": "./package.json"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@ai-matrx/content-ir": ">=0.8.0",
|
|
40
39
|
"react": ">=19.0.0"
|
|
41
40
|
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@ai-matrx/content-ir": "^0.9.0"
|
|
43
|
+
},
|
|
42
44
|
"devDependencies": {
|
|
43
45
|
"@arethetypeswrong/cli": "^0.18.5",
|
|
44
46
|
"@testing-library/react": "^16.3.0",
|
|
@@ -50,8 +52,7 @@
|
|
|
50
52
|
"react-dom": "^19.2.0",
|
|
51
53
|
"tsup": "^8.5.1",
|
|
52
54
|
"typescript": "^5.9.3",
|
|
53
|
-
"vitest": "^4.1.6"
|
|
54
|
-
"@ai-matrx/content-ir": "0.8.0"
|
|
55
|
+
"vitest": "^4.1.6"
|
|
55
56
|
},
|
|
56
57
|
"publishConfig": {
|
|
57
58
|
"access": "public",
|