@aigne/cli 1.55.1 → 1.55.2

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,46 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.55.2](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.55.2-beta...cli-v1.55.2) (2025-11-15)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/afs-local-fs bumped to 1.1.2
11
+ * @aigne/agent-library bumped to 1.21.55
12
+ * @aigne/agentic-memory bumped to 1.0.55
13
+ * @aigne/aigne-hub bumped to 0.10.9
14
+ * @aigne/core bumped to 1.68.2
15
+ * @aigne/default-memory bumped to 1.2.18
16
+ * @aigne/observability-api bumped to 0.11.8
17
+ * @aigne/openai bumped to 0.16.9
18
+ * devDependencies
19
+ * @aigne/test-utils bumped to 0.5.62
20
+
21
+ ## [1.55.2-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.55.1...cli-v1.55.2-beta) (2025-11-15)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * **core:** memory leak in AIGNEContext by preventing duplicate signal handler ([#748](https://github.com/AIGNE-io/aigne-framework/issues/748)) ([7f17592](https://github.com/AIGNE-io/aigne-framework/commit/7f175929d78e4289e2d551746b12a73bb5c0eb22))
27
+
28
+
29
+ ### Dependencies
30
+
31
+ * The following workspace dependencies were updated
32
+ * dependencies
33
+ * @aigne/afs-local-fs bumped to 1.1.2-beta
34
+ * @aigne/agent-library bumped to 1.21.55-beta
35
+ * @aigne/agentic-memory bumped to 1.0.55-beta
36
+ * @aigne/aigne-hub bumped to 0.10.9-beta
37
+ * @aigne/core bumped to 1.68.2-beta
38
+ * @aigne/default-memory bumped to 1.2.18-beta
39
+ * @aigne/observability-api bumped to 0.11.8-beta
40
+ * @aigne/openai bumped to 0.16.9-beta
41
+ * devDependencies
42
+ * @aigne/test-utils bumped to 0.5.62-beta
43
+
3
44
  ## [1.55.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.55.1-beta...cli-v1.55.1) (2025-11-15)
4
45
 
5
46
 
@@ -31,6 +31,9 @@ export function createObservabilityCommand() {
31
31
  handler: async (options) => {
32
32
  const port = await detectPort(options.port || DEFAULT_PORT());
33
33
  const dbUrl = getObservabilityDbPath();
34
+ process.once("SIGINT", async () => {
35
+ process.exit(0);
36
+ });
34
37
  console.log("Observability database path:", chalk.greenBright(dbUrl));
35
38
  await startObservabilityCLIServer({ port, dbUrl });
36
39
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.55.1",
3
+ "version": "1.55.2",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -89,16 +89,16 @@
89
89
  "yoctocolors-cjs": "^2.1.3",
90
90
  "zod": "^3.25.67",
91
91
  "zod-to-json-schema": "^3.24.6",
92
- "@aigne/afs": "^1.2.1",
93
- "@aigne/afs-local-fs": "^1.1.1",
94
92
  "@aigne/afs-history": "^1.0.2",
95
- "@aigne/agent-library": "^1.21.54",
96
- "@aigne/agentic-memory": "^1.0.54",
97
- "@aigne/aigne-hub": "^0.10.8",
98
- "@aigne/default-memory": "^1.2.17",
99
- "@aigne/core": "^1.68.1",
100
- "@aigne/openai": "^0.16.8",
101
- "@aigne/observability-api": "^0.11.7"
93
+ "@aigne/agent-library": "^1.21.55",
94
+ "@aigne/afs-local-fs": "^1.1.2",
95
+ "@aigne/agentic-memory": "^1.0.55",
96
+ "@aigne/afs": "^1.2.1",
97
+ "@aigne/aigne-hub": "^0.10.9",
98
+ "@aigne/core": "^1.68.2",
99
+ "@aigne/observability-api": "^0.11.8",
100
+ "@aigne/openai": "^0.16.9",
101
+ "@aigne/default-memory": "^1.2.18"
102
102
  },
103
103
  "devDependencies": {
104
104
  "@inquirer/testing": "^2.1.50",
@@ -115,7 +115,7 @@
115
115
  "rimraf": "^6.0.1",
116
116
  "typescript": "^5.9.2",
117
117
  "ufo": "^1.6.1",
118
- "@aigne/test-utils": "^0.5.61"
118
+ "@aigne/test-utils": "^0.5.62"
119
119
  },
120
120
  "scripts": {
121
121
  "lint": "tsc --noEmit",