@aigne/cli 1.48.3 → 1.48.4-beta.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 CHANGED
@@ -1,5 +1,39 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.48.4-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.48.4-beta...cli-v1.48.4-beta.1) (2025-09-23)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/agent-library bumped to 1.21.46-beta.1
11
+ * @aigne/agentic-memory bumped to 1.0.46-beta.1
12
+ * @aigne/aigne-hub bumped to 0.10.0-beta.1
13
+ * @aigne/default-memory bumped to 1.2.9-beta.1
14
+ * @aigne/openai bumped to 0.16.0-beta.1
15
+
16
+ ## [1.48.4-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.48.3...cli-v1.48.4-beta) (2025-09-22)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * resolve Windows file import URI issues ([#528](https://github.com/AIGNE-io/aigne-framework/issues/528)) ([bf807c5](https://github.com/AIGNE-io/aigne-framework/commit/bf807c5a3563c4423dc82fddff7fba280ef57957))
22
+
23
+
24
+ ### Dependencies
25
+
26
+ * The following workspace dependencies were updated
27
+ * dependencies
28
+ * @aigne/agent-library bumped to 1.21.46-beta
29
+ * @aigne/agentic-memory bumped to 1.0.46-beta
30
+ * @aigne/aigne-hub bumped to 0.10.0-beta
31
+ * @aigne/core bumped to 1.61.0-beta
32
+ * @aigne/default-memory bumped to 1.2.9-beta
33
+ * @aigne/openai bumped to 0.16.0-beta
34
+ * devDependencies
35
+ * @aigne/test-utils bumped to 0.5.53-beta
36
+
3
37
  ## [1.48.3](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.48.3-beta...cli-v1.48.3) (2025-09-22)
4
38
 
5
39
  ## [1.48.3-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.48.2...cli-v1.48.3-beta) (2025-09-22)
@@ -226,7 +226,7 @@ async function isInstallationAvailable(dir, { cacheTimeMs = NPM_PACKAGE_CACHE_TI
226
226
  }
227
227
  async function installDependencies(dir, { log } = {}) {
228
228
  await new Promise((resolve, reject) => {
229
- const child = spawn("corepack", ["npm", "install", "--omit", "dev", "--verbose"], {
229
+ const child = spawn("npm", ["install", "--omit", "dev", "--verbose"], {
230
230
  cwd: dir,
231
231
  stdio: "pipe",
232
232
  shell: process.platform === "win32",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.48.3",
3
+ "version": "1.48.4-beta.1",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -81,13 +81,13 @@
81
81
  "yargs": "^18.0.0",
82
82
  "yoctocolors-cjs": "^2.1.3",
83
83
  "zod": "^3.25.67",
84
- "@aigne/agent-library": "^1.21.45",
85
- "@aigne/agentic-memory": "^1.0.45",
86
- "@aigne/aigne-hub": "^0.9.6",
87
- "@aigne/core": "^1.60.3",
88
- "@aigne/default-memory": "^1.2.8",
84
+ "@aigne/agentic-memory": "^1.0.46-beta.1",
85
+ "@aigne/agent-library": "^1.21.46-beta.1",
86
+ "@aigne/core": "^1.61.0-beta",
87
+ "@aigne/default-memory": "^1.2.9-beta.1",
88
+ "@aigne/aigne-hub": "^0.10.0-beta.1",
89
89
  "@aigne/observability-api": "^0.10.4",
90
- "@aigne/openai": "^0.15.4"
90
+ "@aigne/openai": "^0.16.0-beta.1"
91
91
  },
92
92
  "devDependencies": {
93
93
  "@inquirer/testing": "^2.1.50",
@@ -104,7 +104,7 @@
104
104
  "rimraf": "^6.0.1",
105
105
  "typescript": "^5.9.2",
106
106
  "ufo": "^1.6.1",
107
- "@aigne/test-utils": "^0.5.52"
107
+ "@aigne/test-utils": "^0.5.53-beta"
108
108
  },
109
109
  "scripts": {
110
110
  "lint": "tsc --noEmit",