@misterhuydo/sentinel 1.4.80 → 1.4.81

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "message": "Auto-checkpoint at 2026-03-27T02:01:01.379Z",
3
- "checkpoint_at": "2026-03-27T02:01:01.380Z",
2
+ "message": "Auto-checkpoint at 2026-03-27T02:09:31.962Z",
3
+ "checkpoint_at": "2026-03-27T02:09:31.963Z",
4
4
  "active_files": [],
5
5
  "notes": [],
6
6
  "mtime_snapshot": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@misterhuydo/sentinel",
3
- "version": "1.4.80",
3
+ "version": "1.4.81",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"
@@ -149,7 +149,7 @@ class ConfigLoader:
149
149
  logger.warning("sentinel.properties not found at %s", path)
150
150
  else:
151
151
  project_d = _parse_properties(str(path))
152
- d.update(project_d)
152
+ d.update({k: v for k, v in project_d.items() if v})
153
153
 
154
154
  c = SentinelConfig()
155
155
  c.poll_interval_seconds = int(d.get("POLL_INTERVAL_SECONDS", 120))