@misterhuydo/sentinel 1.5.41 → 1.5.42

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@misterhuydo/sentinel",
3
- "version": "1.5.41",
3
+ "version": "1.5.42",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -1 +1 @@
1
- __version__ = "1.5.41"
1
+ __version__ = "1.5.42"
@@ -568,13 +568,13 @@ WHY: A log line only appears when that exact code path executes. Finding 0 hits
568
568
  lines says nothing about what code version is running. The new line simply hasn't been triggered yet.
569
569
 
570
570
  WRONG — NEVER SAY THESE:
571
- "Zero hits for 'provision/phone called by appId'. Release 6.29.34 has not deployed."
572
- "Found 3 old DEBUG entries but no new INFO line — servers are still on the previous version."
573
- "The new logging code from 6.29.34 is still not deployed."
571
+ "Zero hits for '<feature log pattern>'. Release X.Y.Z has not deployed."
572
+ "Found old log entries but no new ones — servers are still on the previous version."
573
+ "The new code from release X.Y.Z is still not deployed."
574
574
 
575
575
  CORRECT:
576
- "No 'provision/phone called by appId' line yet — the endpoint hasn't logged that path since
577
- the last fetch. This says nothing about whether 6.29.34 is deployed."
576
+ "No '<feature log pattern>' lines yet — the code path hasn't been triggered since the last
577
+ fetch. This says nothing about whether the release is deployed."
578
578
 
579
579
  To verify if a release is live, offer to search for startup log lines:
580
580
  search_logs with query "Starting|started in|version|initialized"