@ouro.bot/cli 0.1.0-alpha.120 → 0.1.0-alpha.121
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 +6 -0
- package/dist/heart/daemon/daemon.js +1 -1
- package/package.json +1 -1
package/changelog.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
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.121",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Daemon orphan cleanup now also kills standalone sense entry processes (bluebubbles-entry.js, teams-entry.js) which were persisting across updates and handling requests on stale code."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.1.0-alpha.120",
|
|
6
12
|
"changes": [
|
|
@@ -66,7 +66,7 @@ function killOrphanProcesses() {
|
|
|
66
66
|
const result = (0, child_process_1.execSync)("ps -eo pid,command", { encoding: "utf-8", timeout: 5000 });
|
|
67
67
|
const pidsToKill = [];
|
|
68
68
|
for (const line of result.split("\n")) {
|
|
69
|
-
if (!line.includes("agent-entry.js") && !line.includes("daemon-entry.js"))
|
|
69
|
+
if (!line.includes("agent-entry.js") && !line.includes("daemon-entry.js") && !line.includes("-entry.js --agent"))
|
|
70
70
|
continue;
|
|
71
71
|
const trimmed = line.trim();
|
|
72
72
|
const pid = parseInt(trimmed, 10);
|