@aigne/default-memory 1.2.10-beta.4 → 1.2.10-beta.6

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,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.10-beta.6](https://github.com/AIGNE-io/aigne-framework/compare/default-memory-v1.2.10-beta.5...default-memory-v1.2.10-beta.6) (2025-10-02)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/core bumped to 1.62.0-beta.5
11
+ * devDependencies
12
+ * @aigne/openai bumped to 0.16.1-beta.6
13
+
14
+ ## [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)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * 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))
20
+
21
+
22
+ ### Dependencies
23
+
24
+ * The following workspace dependencies were updated
25
+ * dependencies
26
+ * @aigne/core bumped to 1.62.0-beta.4
27
+ * devDependencies
28
+ * @aigne/openai bumped to 0.16.1-beta.5
29
+
3
30
  ## [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
31
 
5
32
 
@@ -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";
@@ -1,6 +1,6 @@
1
1
  import { datetime, json } from "@aigne/sqlite/type.js";
2
+ import { v7 } from "@aigne/uuid";
2
3
  import { sqliteTable, text } from "drizzle-orm/sqlite-core";
3
- import { v7 } from "uuid";
4
4
  export const Memories = sqliteTable("Memories", {
5
5
  id: text("id")
6
6
  .notNull()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/default-memory",
3
- "version": "1.2.10-beta.4",
3
+ "version": "1.2.10-beta.6",
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.3",
39
+ "@aigne/core": "^1.62.0-beta.5",
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.4"
47
+ "@aigne/openai": "^0.16.1-beta.6"
48
48
  },
49
49
  "scripts": {
50
50
  "lint": "tsc --noEmit",