@aigne/cli 1.57.0-beta → 1.57.0-beta.2

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,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.57.0-beta.2](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.57.0-beta.1...cli-v1.57.0-beta.2) (2025-11-27)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **secrets:** improve keyring availability detection with environment checks ([#778](https://github.com/AIGNE-io/aigne-framework/issues/778)) ([75dceab](https://github.com/AIGNE-io/aigne-framework/commit/75dceabeb7d6fd8c057759f003e703a2ebb41afd))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/secrets bumped to 0.1.1-beta.2
16
+
17
+ ## [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)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **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))
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @aigne/secrets bumped to 0.1.1-beta.1
30
+
3
31
  ## [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
32
 
5
33
 
@@ -31,7 +31,8 @@ const getSecretStore = async () => {
31
31
  if (!cachedSecretStore) {
32
32
  cachedSecretStore = await createSecretStore({
33
33
  filepath: AIGNE_ENV_FILE,
34
- serviceName: "aigne-hub-keyring",
34
+ serviceName: "aigne-hub",
35
+ // forceKeytarUnavailable: true,
35
36
  });
36
37
  }
37
38
  return cachedSecretStore;
@@ -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
- migrations.push(keyring.setKey(host[outputConfig.url], host[outputConfig.key]));
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.2",
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/afs-history": "^1.1.0",
94
+ "@aigne/afs-local-fs": "^1.2.1-beta",
93
95
  "@aigne/agent-library": "^1.22.1-beta",
94
96
  "@aigne/agentic-memory": "^1.1.1-beta",
95
- "@aigne/afs-local-fs": "^1.2.1-beta",
96
- "@aigne/secrets": "^0.1.1-beta",
97
- "@aigne/afs-history": "^1.1.0",
97
+ "@aigne/secrets": "^0.1.1-beta.2",
98
98
  "@aigne/aigne-hub": "^0.10.11-beta.1",
99
99
  "@aigne/core": "^1.69.1-beta",
100
- "@aigne/observability-api": "^0.11.10-beta",
100
+ "@aigne/default-memory": "^1.3.1-beta",
101
101
  "@aigne/openai": "^0.16.11-beta",
102
- "@aigne/default-memory": "^1.3.1-beta"
102
+ "@aigne/observability-api": "^0.11.10-beta"
103
103
  },
104
104
  "devDependencies": {
105
105
  "@inquirer/testing": "^2.1.50",