@aigne/secrets 0.1.6-beta.23 → 0.1.6-beta.25

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.6-beta.25](https://github.com/AIGNE-io/aigne-framework/compare/secrets-v0.1.6-beta.24...secrets-v0.1.6-beta.25) (2026-01-16)
4
+
5
+
6
+ ### Features
7
+
8
+ * **secure:** secure credential storage with keyring support ([#771](https://github.com/AIGNE-io/aigne-framework/issues/771)) ([023c202](https://github.com/AIGNE-io/aigne-framework/commit/023c202f75eddb37d003b1fad447b491e8e1a8c2))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump version ([696560f](https://github.com/AIGNE-io/aigne-framework/commit/696560fa2673eddcb4d00ac0523fbbbde7273cb3))
14
+ * bump version ([70d217c](https://github.com/AIGNE-io/aigne-framework/commit/70d217c8360dd0dda7f5f17011c4e92ec836e801))
15
+ * bump version ([af04b69](https://github.com/AIGNE-io/aigne-framework/commit/af04b6931951afa35d52065430acc7fef4b10087))
16
+ * bump version ([ba7ad18](https://github.com/AIGNE-io/aigne-framework/commit/ba7ad184fcf32b49bf0507a3cb638d20fb00690d))
17
+ * **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))
18
+ * improve test coverage tracking and reporting ([#903](https://github.com/AIGNE-io/aigne-framework/issues/903)) ([031144e](https://github.com/AIGNE-io/aigne-framework/commit/031144e74f29e882cffe52ffda8f7a18c76ace7f))
19
+ * **secrets:** implement lazy loading for keyring to prevent crashes in unsupported environments ([#775](https://github.com/AIGNE-io/aigne-framework/issues/775)) ([78b8c87](https://github.com/AIGNE-io/aigne-framework/commit/78b8c873b067e1dea1c05e8bc9dc3ec0a4c86a47))
20
+ * **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))
21
+ * **secrets:** simplify default item handling in KeyringStore ([#780](https://github.com/AIGNE-io/aigne-framework/issues/780)) ([4c1ff51](https://github.com/AIGNE-io/aigne-framework/commit/4c1ff51e982ed5787df37b127a381276537ec92f))
22
+ * **secrets:** support system keyring for secure credential storage ([#773](https://github.com/AIGNE-io/aigne-framework/issues/773)) ([859ac2d](https://github.com/AIGNE-io/aigne-framework/commit/859ac2d9eb6019d7a68726076d65841cd96bc9a4))
23
+ * **secrets:** use workspace protocol for @aigne/core dependency ([895f127](https://github.com/AIGNE-io/aigne-framework/commit/895f12791d788f9d7298504ab3de5425710b3292))
24
+
25
+
26
+ ### Dependencies
27
+
28
+ * The following workspace dependencies were updated
29
+ * dependencies
30
+ * @aigne/core bumped to 1.72.0-beta.25
31
+ * devDependencies
32
+ * @aigne/test-utils bumped to 0.5.69-beta.25
33
+
34
+ ## [0.1.6-beta.24](https://github.com/AIGNE-io/aigne-framework/compare/secrets-v0.1.6-beta.23...secrets-v0.1.6-beta.24) (2026-01-16)
35
+
36
+
37
+ ### Dependencies
38
+
39
+ * The following workspace dependencies were updated
40
+ * dependencies
41
+ * @aigne/core bumped to 1.72.0-beta.24
42
+ * devDependencies
43
+ * @aigne/test-utils bumped to 0.5.69-beta.24
44
+
3
45
  ## [0.1.6-beta.23](https://github.com/AIGNE-io/aigne-framework/compare/secrets-v0.1.6-beta.22...secrets-v0.1.6-beta.23) (2026-01-15)
4
46
 
5
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/secrets",
3
- "version": "0.1.6-beta.23",
3
+ "version": "0.1.6-beta.25",
4
4
  "description": "Secure credential storage for AIGNE Hub API keys with system keyring and file-based fallback",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -46,7 +46,7 @@
46
46
  "dependencies": {
47
47
  "@zowe/secrets-for-zowe-sdk": "^8.29.4",
48
48
  "yaml": "^2.8.1",
49
- "@aigne/core": "^1.72.0-beta.23"
49
+ "@aigne/core": "^1.72.0-beta.25"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/bun": "^1.2.22",
@@ -54,7 +54,7 @@
54
54
  "npm-run-all": "^4.1.5",
55
55
  "rimraf": "^6.0.1",
56
56
  "typescript": "^5.9.2",
57
- "@aigne/test-utils": "^0.5.69-beta.23"
57
+ "@aigne/test-utils": "^0.5.69-beta.25"
58
58
  },
59
59
  "scripts": {
60
60
  "lint": "tsc --noEmit",