@aigne/default-memory 1.2.10-beta.4 → 1.2.10-beta.5
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
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.10-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/default-memory-v1.2.10-beta.4...default-memory-v1.2.10-beta.5) (2025-10-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update deps compatibility in CommonJS environment ([#580](https://github.com/AIGNE-io/aigne-framework/issues/580)) ([a1e35d0](https://github.com/AIGNE-io/aigne-framework/commit/a1e35d016405accb51c1aeb6a544503a1c78e912))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/core bumped to 1.62.0-beta.4
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @aigne/openai bumped to 0.16.1-beta.5
|
|
18
|
+
|
|
3
19
|
## [1.2.10-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/default-memory-v1.2.10-beta.3...default-memory-v1.2.10-beta.4) (2025-10-01)
|
|
4
20
|
|
|
5
21
|
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DefaultMemoryStorage = void 0;
|
|
4
4
|
const sqlite_1 = require("@aigne/sqlite");
|
|
5
|
+
const uuid_1 = require("@aigne/uuid");
|
|
5
6
|
const drizzle_orm_1 = require("drizzle-orm");
|
|
6
|
-
const uuid_1 = require("uuid");
|
|
7
7
|
const yaml_1 = require("yaml");
|
|
8
8
|
const storage_js_1 = require("../storage.js");
|
|
9
9
|
const migrate_js_1 = require("./migrate.js");
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Memories = void 0;
|
|
4
4
|
const type_js_1 = require("@aigne/sqlite/type.js");
|
|
5
|
+
const uuid_1 = require("@aigne/uuid");
|
|
5
6
|
const sqlite_core_1 = require("drizzle-orm/sqlite-core");
|
|
6
|
-
const uuid_1 = require("uuid");
|
|
7
7
|
exports.Memories = (0, sqlite_core_1.sqliteTable)("Memories", {
|
|
8
8
|
id: (0, sqlite_core_1.text)("id")
|
|
9
9
|
.notNull()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { initDatabase } from "@aigne/sqlite";
|
|
2
|
+
import { v7 } from "@aigne/uuid";
|
|
2
3
|
import { asc, desc, eq, isNull, sql } from "drizzle-orm";
|
|
3
|
-
import { v7 } from "uuid";
|
|
4
4
|
import { stringify } from "yaml";
|
|
5
5
|
import { MemoryStorage } from "../storage.js";
|
|
6
6
|
import { migrate } from "./migrate.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/default-memory",
|
|
3
|
-
"version": "1.2.10-beta.
|
|
3
|
+
"version": "1.2.10-beta.5",
|
|
4
4
|
"description": "Default memory for AIGNE framework",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
+
"@aigne/uuid": "^13.0.1",
|
|
35
36
|
"drizzle-orm": "^0.44.5",
|
|
36
|
-
"uuid": "^13.0.0",
|
|
37
37
|
"yaml": "^2.8.1",
|
|
38
38
|
"zod": "^3.25.67",
|
|
39
|
-
"@aigne/core": "^1.62.0-beta.
|
|
39
|
+
"@aigne/core": "^1.62.0-beta.4",
|
|
40
40
|
"@aigne/sqlite": "^0.4.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"npm-run-all": "^4.1.5",
|
|
45
45
|
"rimraf": "^6.0.1",
|
|
46
46
|
"typescript": "^5.9.2",
|
|
47
|
-
"@aigne/openai": "^0.16.1-beta.
|
|
47
|
+
"@aigne/openai": "^0.16.1-beta.5"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"lint": "tsc --noEmit",
|