@ouro.bot/cli 0.1.0-alpha.534 → 0.1.0-alpha.535
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 +7 -0
- package/dist/heart/daemon/daemon.js +1 -0
- package/package.json +1 -1
package/changelog.json
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
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.535",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Daemon orphan cleanup now recognizes managed mail sense workers, so stale `senses/mail-entry.js --agent <name>` processes from old runtimes are terminated on production daemon startup instead of lingering across restarts.",
|
|
8
|
+
"Adds regression coverage for the full daemon-managed entrypoint set used by orphan cleanup, including inner-dialog, daemon, BlueBubbles, Teams, and mail workers."
|
|
9
|
+
]
|
|
10
|
+
},
|
|
4
11
|
{
|
|
5
12
|
"version": "0.1.0-alpha.534",
|
|
6
13
|
"changes": [
|
|
@@ -105,6 +105,7 @@ function parseOrphanPidsFromPs(psOutput, selfPid) {
|
|
|
105
105
|
if (!line.includes("agent-entry.js")
|
|
106
106
|
&& !line.includes("daemon-entry.js")
|
|
107
107
|
&& !line.includes("bluebubbles/entry.js")
|
|
108
|
+
&& !line.includes("mail-entry.js")
|
|
108
109
|
&& !line.includes("teams-entry.js"))
|
|
109
110
|
continue;
|
|
110
111
|
// Parse `<pid> <ppid> <command...>`. ps pads these with leading spaces.
|