@misterhuydo/sentinel 1.5.57 → 1.5.58
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/.cairn/.hint-lock
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2026-04-21T07:
|
|
1
|
+
2026-04-21T07:58:09.595Z
|
package/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-04-
|
|
3
|
-
"checkpoint_at": "2026-04-
|
|
2
|
+
"message": "Auto-checkpoint at 2026-04-21T08:02:23.465Z",
|
|
3
|
+
"checkpoint_at": "2026-04-21T08:02:23.467Z",
|
|
4
4
|
"active_files": [
|
|
5
5
|
"J:\\Projects\\Sentinel\\cli\\bin\\sentinel.js",
|
|
6
6
|
"J:\\Projects\\Sentinel\\cli\\lib\\test.js",
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.5.
|
|
1
|
+
__version__ = "1.5.58"
|
package/python/sentinel/main.py
CHANGED
|
@@ -1848,7 +1848,11 @@ async def _execute_monitor(monitor: dict, cfg_loader: ConfigLoader, store: State
|
|
|
1848
1848
|
combined = "\n".join(formatted_parts)
|
|
1849
1849
|
MAX_LEN = 3800
|
|
1850
1850
|
if len(combined) > MAX_LEN:
|
|
1851
|
-
|
|
1851
|
+
tail = combined[:MAX_LEN]
|
|
1852
|
+
# Close any unclosed code block before the truncation note
|
|
1853
|
+
if tail.count("```") % 2 == 1:
|
|
1854
|
+
tail += "\n```"
|
|
1855
|
+
combined = tail + f"\n_…truncated ({len(combined)} chars total)_"
|
|
1852
1856
|
header = f":repeat: *Monitor `{mon_id}`* ({mon_name}) — run #{runs_after}"
|
|
1853
1857
|
if done:
|
|
1854
1858
|
header += " _(final)_"
|