@ouro.bot/cli 0.1.0-alpha.651 → 0.1.0-alpha.653
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 +12 -0
- package/dist/heart/daemon/cli-exec.js +1 -1
- package/package.json +1 -1
package/changelog.json
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
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.653",
|
|
6
|
+
"changes": [
|
|
7
|
+
"`ouro up` now waits long enough for a full daemon health-monitor cycle during final handoff, preventing false install failures when enabled senses become healthy shortly after the previous 20s cutoff."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"version": "0.1.0-alpha.652",
|
|
12
|
+
"changes": [
|
|
13
|
+
"The `ouro.bot` bootstrap wrapper now refuses to downgrade an already-installed newer `~/.ouro-cli/CurrentVersion`, so a stale global wrapper cannot roll the local runtime back after a fresh CI-published update."
|
|
14
|
+
]
|
|
15
|
+
},
|
|
4
16
|
{
|
|
5
17
|
"version": "0.1.0-alpha.651",
|
|
6
18
|
"changes": [
|
|
@@ -499,7 +499,7 @@ function writeSyncProbeSummary(deps, findings) {
|
|
|
499
499
|
function bootPhasePlan(_daemonAlive) {
|
|
500
500
|
return ["update check", "system setup", "sync probe", "starting daemon", "provider checks", "final daemon check"];
|
|
501
501
|
}
|
|
502
|
-
const FINAL_DAEMON_HEALTH_SETTLE_TIMEOUT_MS =
|
|
502
|
+
const FINAL_DAEMON_HEALTH_SETTLE_TIMEOUT_MS = 90_000;
|
|
503
503
|
const FINAL_DAEMON_HEALTH_SETTLE_POLL_INTERVAL_MS = 500;
|
|
504
504
|
/**
|
|
505
505
|
* Layer 2: brief, scannable summary of a boot-sync-probe finding for the
|