@aigne/cli 1.48.3 → 1.48.4-beta

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,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.48.4-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.48.3...cli-v1.48.4-beta) (2025-09-22)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * 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))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/agent-library bumped to 1.21.46-beta
16
+ * @aigne/agentic-memory bumped to 1.0.46-beta
17
+ * @aigne/aigne-hub bumped to 0.10.0-beta
18
+ * @aigne/core bumped to 1.61.0-beta
19
+ * @aigne/default-memory bumped to 1.2.9-beta
20
+ * @aigne/openai bumped to 0.16.0-beta
21
+ * devDependencies
22
+ * @aigne/test-utils bumped to 0.5.53-beta
23
+
3
24
  ## [1.48.3](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.48.3-beta...cli-v1.48.3) (2025-09-22)
4
25
 
5
26
  ## [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",
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",
89
- "@aigne/observability-api": "^0.10.4",
90
- "@aigne/openai": "^0.15.4"
84
+ "@aigne/agent-library": "^1.21.46-beta",
85
+ "@aigne/agentic-memory": "^1.0.46-beta",
86
+ "@aigne/aigne-hub": "^0.10.0-beta",
87
+ "@aigne/core": "^1.61.0-beta",
88
+ "@aigne/default-memory": "^1.2.9-beta",
89
+ "@aigne/openai": "^0.16.0-beta",
90
+ "@aigne/observability-api": "^0.10.4"
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",