@aigne/afs-sqlite 1.0.1-beta.1 → 1.1.0
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 +33 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.0](https://github.com/AIGNE-io/aigne-framework/compare/afs-sqlite-v1.1.0-beta.1...afs-sqlite-v1.1.0) (2026-01-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* @aigne/afs bumped to 1.4.0
|
|
11
|
+
* @aigne/sqlite bumped to 0.4.9
|
|
12
|
+
* devDependencies
|
|
13
|
+
* @aigne/test-utils bumped to 0.5.69
|
|
14
|
+
|
|
15
|
+
## [1.1.0-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/afs-sqlite-v1.0.1-beta.1...afs-sqlite-v1.1.0-beta.1) (2026-01-16)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **afs:** add generic AFS adapter for sqlite databases ([#908](https://github.com/AIGNE-io/aigne-framework/issues/908)) ([b9b5a8f](https://github.com/AIGNE-io/aigne-framework/commit/b9b5a8fc2680e8e3ae7f28dd720b0089520981b9))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* update @aigne/afs-sqlite release config ([ef0f254](https://github.com/AIGNE-io/aigne-framework/commit/ef0f2547920e0e95545c57c7dd55ff059b5a2e7a))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Dependencies
|
|
29
|
+
|
|
30
|
+
* The following workspace dependencies were updated
|
|
31
|
+
* dependencies
|
|
32
|
+
* @aigne/afs bumped to 1.4.0-beta.11
|
|
33
|
+
* devDependencies
|
|
34
|
+
* @aigne/test-utils bumped to 0.5.69-beta.25
|
|
35
|
+
|
|
3
36
|
## [1.0.1-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/afs-sqlite-v1.0.1-beta...afs-sqlite-v1.0.1-beta.1) (2026-01-16)
|
|
4
37
|
|
|
5
38
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/afs-sqlite",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "AIGNE AFS module for SQLite database storage with schema introspection",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"radix3": "^1.1.2",
|
|
51
51
|
"zod": "^3.25.67",
|
|
52
|
-
"@aigne/
|
|
53
|
-
"@aigne/
|
|
52
|
+
"@aigne/afs": "^1.4.0",
|
|
53
|
+
"@aigne/sqlite": "^0.4.9"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/bun": "^1.2.22",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"npm-run-all": "^4.1.5",
|
|
59
59
|
"rimraf": "^6.0.1",
|
|
60
60
|
"typescript": "^5.9.2",
|
|
61
|
-
"@aigne/test-utils": "^0.5.69
|
|
61
|
+
"@aigne/test-utils": "^0.5.69"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"lint": "tsc --noEmit",
|