instar 0.28.67 → 0.28.68
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 +4 -1
- package/dist/commands/server.js.map +1 -1
- package/dist/monitoring/probes/LifelineProbe.d.ts +7 -2
- package/dist/monitoring/probes/LifelineProbe.d.ts.map +1 -1
- package/dist/monitoring/probes/LifelineProbe.js +91 -89
- package/dist/monitoring/probes/LifelineProbe.js.map +1 -1
- package/package.json +1 -1
- package/scripts/fix-better-sqlite3.cjs +209 -43
- package/src/data/builtin-manifest.json +6 -6
- package/upgrades/0.28.68.md +60 -0
- package/upgrades/NEXT.md +53 -0
- package/upgrades/side-effects/lifeline-stage-c-chaos-tests.md +71 -0
- package/upgrades/side-effects/lifeline-supervisor-probe-optional.md +76 -0
- package/upgrades/side-effects/native-module-source-build-fallback.md +86 -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,CA2nJtE;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
|
@@ -5095,7 +5095,10 @@ export async function startServer(options) {
|
|
|
5095
5095
|
isConfigured: () => true,
|
|
5096
5096
|
}) : []),
|
|
5097
5097
|
...createLifelineProbes({
|
|
5098
|
-
|
|
5098
|
+
// Supervisor status intentionally omitted: the supervisor only exists
|
|
5099
|
+
// in the lifeline process, not in the server. The process + queue probes
|
|
5100
|
+
// here check lifeline health via the lock file and queue contents,
|
|
5101
|
+
// which is the correct signal from the server's vantage point.
|
|
5099
5102
|
getQueueLength: () => 0,
|
|
5100
5103
|
peekQueue: () => [],
|
|
5101
5104
|
lockFilePath: path.join(config.stateDir, 'lifeline.lock'),
|