@aigne/cli 1.49.0 → 1.49.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,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.49.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.49.1-beta...cli-v1.49.1) (2025-09-27)
4
+
5
+ ## [1.49.1-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.49.0...cli-v1.49.1-beta) (2025-09-27)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **cli:** install deps with `--force` option when installing application ([#560](https://github.com/AIGNE-io/aigne-framework/issues/560)) ([adc49b1](https://github.com/AIGNE-io/aigne-framework/commit/adc49b18907a0c94a1404fa17717aea1f1fc84d3))
11
+
3
12
  ## [1.49.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.49.0-beta.10...cli-v1.49.0) (2025-09-27)
4
13
 
5
14
 
@@ -227,7 +227,7 @@ export async function installApp({ dir, packageName, beta, version, }) {
227
227
  }
228
228
  async function installDependencies(dir, { log } = {}) {
229
229
  await new Promise((resolve, reject) => {
230
- const child = spawn("npm", ["install", "--omit", "dev", "--verbose"], {
230
+ const child = spawn("npm", ["install", "--omit", "dev", "--verbose", "--legacy-peer-deps"], {
231
231
  cwd: dir,
232
232
  stdio: "pipe",
233
233
  shell: process.platform === "win32",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.49.0",
3
+ "version": "1.49.1",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -85,8 +85,8 @@
85
85
  "zod": "^3.25.67",
86
86
  "zod-to-json-schema": "^3.24.6",
87
87
  "@aigne/agent-library": "^1.21.46",
88
- "@aigne/agentic-memory": "^1.0.46",
89
88
  "@aigne/aigne-hub": "^0.10.0",
89
+ "@aigne/agentic-memory": "^1.0.46",
90
90
  "@aigne/core": "^1.61.0",
91
91
  "@aigne/default-memory": "^1.2.9",
92
92
  "@aigne/openai": "^0.16.0",