@ouro.bot/cli 0.1.0-alpha.382 → 0.1.0-alpha.383
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 +8 -0
- package/dist/heart/daemon/cli-exec.js +3 -0
- package/package.json +1 -1
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.383",
|
|
6
|
+
"changes": [
|
|
7
|
+
"`ouro provider refresh` now stops after a failed vault credential refresh instead of also reporting that the daemon restarted to reload credentials.",
|
|
8
|
+
"Provider refresh CLI tests now cover the locked-vault failure path separately from successful daemon restart and restart-skip paths.",
|
|
9
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the provider refresh failure-output release."
|
|
10
|
+
]
|
|
11
|
+
},
|
|
4
12
|
{
|
|
5
13
|
"version": "0.1.0-alpha.382",
|
|
6
14
|
"changes": [
|
|
@@ -1083,6 +1083,9 @@ async function executeProviderRefresh(command, deps) {
|
|
|
1083
1083
|
else {
|
|
1084
1084
|
lines.push(`provider credential refresh failed for ${command.agent}: ${pool.error}`);
|
|
1085
1085
|
lines.push(`Run \`ouro vault unlock --agent ${command.agent}\`, then retry.`);
|
|
1086
|
+
const message = lines.join("\n");
|
|
1087
|
+
deps.writeStdout(message);
|
|
1088
|
+
return message;
|
|
1086
1089
|
}
|
|
1087
1090
|
try {
|
|
1088
1091
|
const alive = await deps.checkSocketAlive(deps.socketPath);
|