@ouro.bot/cli 0.1.0-alpha.371 → 0.1.0-alpha.372
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.json
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.372",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Locked-vault errors now explain that provider credentials are still stored in the agent vault and that this computer is missing usable local unlock material.",
|
|
8
|
+
"The locked-vault guidance now names common machine-local causes, including a new computer, local profile or hostname migration, and removed local unlock entries.",
|
|
9
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the locked-vault bootstrap copy release."
|
|
10
|
+
]
|
|
11
|
+
},
|
|
4
12
|
{
|
|
5
13
|
"version": "0.1.0-alpha.371",
|
|
6
14
|
"changes": [
|
|
@@ -106,6 +106,10 @@ function lockedMessage(config, store) {
|
|
|
106
106
|
`Vault: ${vaultLabel(config)}`,
|
|
107
107
|
`Local unlock store: ${store.kind} (${store.location})`,
|
|
108
108
|
"",
|
|
109
|
+
"Provider credentials are still stored in the agent vault.",
|
|
110
|
+
"This computer does not currently have usable local unlock material for that vault.",
|
|
111
|
+
"This can happen on a new computer, after a local profile or hostname migration, or if the local unlock entry was removed.",
|
|
112
|
+
"",
|
|
109
113
|
`Run \`${command}\` and enter the vault unlock secret from the operator password manager.`,
|
|
110
114
|
].join("\n");
|
|
111
115
|
}
|