@aigne/cli 1.25.0 → 1.25.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 +27 -0
- package/package.json +18 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.25.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.25.0...cli-v1.25.1) (2025-07-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add missing dependencies ([#280](https://github.com/AIGNE-io/aigne-framework/issues/280)) ([5da315e](https://github.com/AIGNE-io/aigne-framework/commit/5da315e29dc02818293e74ad159294f137e2c7f7))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/agent-library bumped to 1.21.5
|
|
16
|
+
* @aigne/agentic-memory bumped to 1.0.5
|
|
17
|
+
* @aigne/aigne-hub bumped to 0.2.1
|
|
18
|
+
* @aigne/anthropic bumped to 0.10.1
|
|
19
|
+
* @aigne/bedrock bumped to 0.8.5
|
|
20
|
+
* @aigne/core bumped to 1.38.1
|
|
21
|
+
* @aigne/deepseek bumped to 0.7.5
|
|
22
|
+
* @aigne/default-memory bumped to 1.0.5
|
|
23
|
+
* @aigne/gemini bumped to 0.8.5
|
|
24
|
+
* @aigne/observability-api bumped to 0.8.1
|
|
25
|
+
* @aigne/ollama bumped to 0.7.5
|
|
26
|
+
* @aigne/open-router bumped to 0.7.5
|
|
27
|
+
* @aigne/openai bumped to 0.10.5
|
|
28
|
+
* @aigne/xai bumped to 0.7.5
|
|
29
|
+
|
|
3
30
|
## [1.25.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.24.1...cli-v1.25.0) (2025-07-24)
|
|
4
31
|
|
|
5
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.25.
|
|
3
|
+
"version": "1.25.1",
|
|
4
4
|
"description": "cli for AIGNE framework",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -52,27 +52,30 @@
|
|
|
52
52
|
"gradient-string": "^3.0.0",
|
|
53
53
|
"https-proxy-agent": "^7.0.6",
|
|
54
54
|
"inquirer": "^12.7.0",
|
|
55
|
+
"log-update": "^6.1.0",
|
|
55
56
|
"marked": "^16.0.0",
|
|
56
57
|
"open": "10.1.2",
|
|
58
|
+
"openai": "^5.8.3",
|
|
59
|
+
"p-wait-for": "^5.0.2",
|
|
57
60
|
"prettier": "^3.6.2",
|
|
58
61
|
"tar": "^7.4.3",
|
|
59
62
|
"wrap-ansi": "^9.0.0",
|
|
60
63
|
"yaml": "^2.8.0",
|
|
61
64
|
"zod": "^3.25.67",
|
|
62
|
-
"@aigne/
|
|
63
|
-
"@aigne/
|
|
64
|
-
"@aigne/
|
|
65
|
-
"@aigne/anthropic": "^0.10.
|
|
66
|
-
"@aigne/core": "^1.38.
|
|
67
|
-
"@aigne/
|
|
68
|
-
"@aigne/deepseek": "^0.7.
|
|
69
|
-
"@aigne/
|
|
70
|
-
"@aigne/gemini": "^0.8.
|
|
71
|
-
"@aigne/ollama": "^0.7.
|
|
72
|
-
"@aigne/
|
|
73
|
-
"@aigne/
|
|
74
|
-
"@aigne/
|
|
75
|
-
"@aigne/xai": "^0.7.
|
|
65
|
+
"@aigne/agent-library": "^1.21.5",
|
|
66
|
+
"@aigne/agentic-memory": "^1.0.5",
|
|
67
|
+
"@aigne/aigne-hub": "^0.2.1",
|
|
68
|
+
"@aigne/anthropic": "^0.10.1",
|
|
69
|
+
"@aigne/core": "^1.38.1",
|
|
70
|
+
"@aigne/default-memory": "^1.0.5",
|
|
71
|
+
"@aigne/deepseek": "^0.7.5",
|
|
72
|
+
"@aigne/bedrock": "^0.8.5",
|
|
73
|
+
"@aigne/gemini": "^0.8.5",
|
|
74
|
+
"@aigne/ollama": "^0.7.5",
|
|
75
|
+
"@aigne/open-router": "^0.7.5",
|
|
76
|
+
"@aigne/observability-api": "^0.8.1",
|
|
77
|
+
"@aigne/openai": "^0.10.5",
|
|
78
|
+
"@aigne/xai": "^0.7.5"
|
|
76
79
|
},
|
|
77
80
|
"devDependencies": {
|
|
78
81
|
"@types/archiver": "^6.0.3",
|