@aigne/cli 1.57.0-beta → 1.57.0-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,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.57.0-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.57.0-beta...cli-v1.57.0-beta.1) (2025-11-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **cli:** use sequential migration to handle keyring and callback file save ([#776](https://github.com/AIGNE-io/aigne-framework/issues/776)) ([da0db46](https://github.com/AIGNE-io/aigne-framework/commit/da0db46597b76cc0f41d604fd51bcd64931f0315))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/secrets bumped to 0.1.1-beta.1
|
|
16
|
+
|
|
3
17
|
## [1.57.0-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.56.1-beta...cli-v1.57.0-beta) (2025-11-26)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -30,13 +30,11 @@ export async function migrateFileToKeyring(options) {
|
|
|
30
30
|
// Create backup before migration
|
|
31
31
|
await fs.copyFile(filepath, backupPath);
|
|
32
32
|
const hosts = await fileStore.listHosts();
|
|
33
|
-
const migrations = [];
|
|
34
33
|
for (const host of hosts) {
|
|
35
34
|
if (host[outputConfig.url] && host[outputConfig.key]) {
|
|
36
|
-
|
|
35
|
+
await keyring.setKey(host[outputConfig.url], host[outputConfig.key]);
|
|
37
36
|
}
|
|
38
37
|
}
|
|
39
|
-
await Promise.all(migrations);
|
|
40
38
|
const defaultKey = await fileStore.getDefault();
|
|
41
39
|
if (defaultKey) {
|
|
42
40
|
await keyring.setDefault(defaultKey[outputConfig.url]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.57.0-beta",
|
|
3
|
+
"version": "1.57.0-beta.1",
|
|
4
4
|
"description": "Your command center for agent development",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -90,16 +90,16 @@
|
|
|
90
90
|
"zod": "^3.25.67",
|
|
91
91
|
"zod-to-json-schema": "^3.24.6",
|
|
92
92
|
"@aigne/afs": "^1.2.1",
|
|
93
|
-
"@aigne/agent-library": "^1.22.1-beta",
|
|
94
|
-
"@aigne/agentic-memory": "^1.1.1-beta",
|
|
95
93
|
"@aigne/afs-local-fs": "^1.2.1-beta",
|
|
96
|
-
"@aigne/
|
|
94
|
+
"@aigne/agentic-memory": "^1.1.1-beta",
|
|
95
|
+
"@aigne/agent-library": "^1.22.1-beta",
|
|
97
96
|
"@aigne/afs-history": "^1.1.0",
|
|
98
|
-
"@aigne/
|
|
97
|
+
"@aigne/secrets": "^0.1.1-beta.1",
|
|
99
98
|
"@aigne/core": "^1.69.1-beta",
|
|
100
|
-
"@aigne/
|
|
99
|
+
"@aigne/aigne-hub": "^0.10.11-beta.1",
|
|
100
|
+
"@aigne/default-memory": "^1.3.1-beta",
|
|
101
101
|
"@aigne/openai": "^0.16.11-beta",
|
|
102
|
-
"@aigne/
|
|
102
|
+
"@aigne/observability-api": "^0.11.10-beta"
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@inquirer/testing": "^2.1.50",
|