instar 0.28.70 → 0.28.72
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/dist/commands/server.d.ts.map +1 -1
- package/dist/commands/server.js +9 -0
- package/dist/commands/server.js.map +1 -1
- package/dist/monitoring/CoherenceMonitor.d.ts +2 -0
- package/dist/monitoring/CoherenceMonitor.d.ts.map +1 -1
- package/dist/monitoring/CoherenceMonitor.js +24 -0
- package/dist/monitoring/CoherenceMonitor.js.map +1 -1
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +6 -6
- package/upgrades/0.28.71.md +54 -0
- package/upgrades/0.28.72.md +21 -0
- package/upgrades/NEXT.md +53 -0
- package/upgrades/side-effects/0.28.71.md +119 -0
- package/upgrades/side-effects/tunnel-retry-exhaustion-notify.md +79 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/commands/server.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AA4PH,UAAU,YAAY;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;2DACuD;IACvD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AA81CD,wBAAsB,WAAW,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/commands/server.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AA4PH,UAAU,YAAY;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;2DACuD;IACvD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AA81CD,wBAAsB,WAAW,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAsoJtE;AAED,wBAAsB,UAAU,CAAC,OAAO,EAAE;IAAE,GAAG,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAsDzE;AAED;;;;;;;;;;;GAWG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE;IAAE,GAAG,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAuD5E"}
|
package/dist/commands/server.js
CHANGED
|
@@ -5626,6 +5626,15 @@ export async function startServer(options) {
|
|
|
5626
5626
|
}
|
|
5627
5627
|
else {
|
|
5628
5628
|
console.error('[tunnel] All retries exhausted. Tunnel unavailable until server restart.');
|
|
5629
|
+
if (telegram) {
|
|
5630
|
+
try {
|
|
5631
|
+
const lifelineId = telegram.getLifelineTopicId?.();
|
|
5632
|
+
if (lifelineId) {
|
|
5633
|
+
await telegram.sendToTopic(lifelineId, '⚠️ Tunnel failed after all retries. Dashboard link is unavailable until the server is restarted.').catch(() => { });
|
|
5634
|
+
}
|
|
5635
|
+
}
|
|
5636
|
+
catch { /* best-effort notification */ }
|
|
5637
|
+
}
|
|
5629
5638
|
}
|
|
5630
5639
|
}
|
|
5631
5640
|
}, retryIntervals[index] * 60_000);
|