@tangleai/store 0.20.0 → 0.21.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 +39 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @tangleai/store
|
|
2
2
|
|
|
3
|
+
## 0.21.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Update the exact Jaren foundation dependencies and source pin to the published
|
|
8
|
+
0.84.3 release after verifying its AI-free archives against source-built bytes.
|
|
9
|
+
Retain Tangle's model, context and agent ownership and align the development
|
|
10
|
+
Node pin with 24.20.0. Tangle publication remains a manual author action.
|
|
11
|
+
Allow release preparation after an already committed local release while
|
|
12
|
+
preserving its record and rejecting unprepared version edits.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @tangleai/core@0.21.1
|
|
15
|
+
- @tangleai/config@0.21.1
|
|
16
|
+
- @tangleai/mas@0.21.1
|
|
17
|
+
- @tangleai/documents@0.21.1
|
|
18
|
+
- @tangleai/memory@0.21.1
|
|
19
|
+
|
|
20
|
+
## 0.21.0
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @tangleai/core@0.21.0
|
|
26
|
+
- @tangleai/config@0.21.0
|
|
27
|
+
- @tangleai/mas@0.21.0
|
|
28
|
+
- @tangleai/documents@0.21.0
|
|
29
|
+
- @tangleai/memory@0.21.0
|
|
30
|
+
|
|
31
|
+
## 0.20.1
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
- @tangleai/core@0.20.1
|
|
37
|
+
- @tangleai/config@0.20.1
|
|
38
|
+
- @tangleai/documents@0.20.1
|
|
39
|
+
- @tangleai/mas@0.20.1
|
|
40
|
+
- @tangleai/memory@0.20.1
|
|
41
|
+
|
|
3
42
|
## 0.20.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangleai/store",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.1",
|
|
4
4
|
"description": "Tangle AI persistence — the MemoryStore contract over SQLite via @jarenjs/db, plus the run/event log the DAG surface reads",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
},
|
|
54
54
|
"sideEffects": false,
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@tangleai/documents": "^0.
|
|
57
|
-
"@tangleai/core": "^0.
|
|
58
|
-
"@tangleai/config": "^0.
|
|
59
|
-
"@jarenjs/db": "0.
|
|
60
|
-
"@jarenjs/validate": "0.
|
|
61
|
-
"@tangleai/mas": "^0.
|
|
62
|
-
"@jarenjs/core": "0.
|
|
63
|
-
"@tangleai/memory": "^0.
|
|
56
|
+
"@tangleai/documents": "^0.21.1",
|
|
57
|
+
"@tangleai/core": "^0.21.1",
|
|
58
|
+
"@tangleai/config": "^0.21.1",
|
|
59
|
+
"@jarenjs/db": "0.84.3",
|
|
60
|
+
"@jarenjs/validate": "0.84.3",
|
|
61
|
+
"@tangleai/mas": "^0.21.1",
|
|
62
|
+
"@jarenjs/core": "0.84.3",
|
|
63
|
+
"@tangleai/memory": "^0.21.1"
|
|
64
64
|
},
|
|
65
65
|
"private": false,
|
|
66
66
|
"types": "./src/index.d.ts",
|