lody 0.79.0 → 0.79.1

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.
@@ -76,7 +76,7 @@ let __tla = Promise.all([
76
76
  }
77
77
  })()
78
78
  ]).then(async () => {
79
- const reviewViewerVersion = "0.79.0";
79
+ const reviewViewerVersion = "0.79.1";
80
80
  const reviewViewerSha256 = "41b6ffd0acff2c355e190b604776a89138f9598a1772d09390a6d5af514e71bb";
81
81
  const reviewViewerFileName = "standalone.html";
82
82
  const DEFAULT_CDN_BASES = [
package/dist/index.js CHANGED
@@ -23229,7 +23229,7 @@ ${context2.authorReply.trim()}
23229
23229
  const line3 = buffer2.slice(0, newlineIndex).trim();
23230
23230
  buffer2 = buffer2.slice(newlineIndex + 1);
23231
23231
  if (line3) {
23232
- if (line3.length > options.maxBufferBytes) {
23232
+ if (options.maxBufferBytes !== void 0 && line3.length > options.maxBufferBytes) {
23233
23233
  options.onOverflow?.();
23234
23234
  } else {
23235
23235
  options.onLine(line3);
@@ -23237,7 +23237,7 @@ ${context2.authorReply.trim()}
23237
23237
  }
23238
23238
  newlineIndex = buffer2.indexOf("\n");
23239
23239
  }
23240
- if (buffer2.length > options.maxBufferBytes) {
23240
+ if (options.maxBufferBytes !== void 0 && buffer2.length > options.maxBufferBytes) {
23241
23241
  buffer2 = "";
23242
23242
  discardingOversizedLine = true;
23243
23243
  options.onOverflow?.();
@@ -24638,7 +24638,7 @@ ${peerId}`;
24638
24638
  const getSessionIdFromRoomId = (roomId) => isSessionDocRoomId(roomId) ? roomId.slice(SESSION_DOC_PREFIX.length) : null;
24639
24639
  const isMachineDocRoomId = (roomId) => roomId.startsWith(MACHINE_DOC_PREFIX);
24640
24640
  const name$1 = "@lody/cli-cloud";
24641
- const version$7 = "0.79.0";
24641
+ const version$7 = "0.79.1";
24642
24642
  const type$2 = "module";
24643
24643
  const scripts = {
24644
24644
  "dev": "node dev.mjs",
@@ -165465,6 +165465,9 @@ ${escapeHtmlScriptContent(VISUAL_ANNOTATION_INSPECTOR_BROWSER_SCRIPT)}
165465
165465
  this.logger.error(`[${sessionId}] Backfill gave up for ${fileId}; block stays local (pending on other devices)`);
165466
165466
  return;
165467
165467
  }
165468
+ if (this.sessionFileBackfillStopped || !this.remoteBackfillEnabled) {
165469
+ return;
165470
+ }
165468
165471
  await delay$1(sessionFileBackfillDelayMs(attempt));
165469
165472
  }
165470
165473
  }
@@ -178621,7 +178624,7 @@ export PATH=${toSingleQuotedShellString(ghShimBinDir)}:"$PATH"
178621
178624
  }
178622
178625
  roomMessageChain = roomMessageChain.then(() => handleMessage(config2, connection2, touchedEngines, message)).catch((error2) => logMessageHandlingError(config2.logger, error2));
178623
178626
  },
178624
- maxBufferBytes: LOCAL_LORO_DATA_PLANE_MAX_FRAME_BYTES,
178627
+ maxBufferBytes: config2.maxFrameBytes ?? LOCAL_LORO_DATA_PLANE_MAX_FRAME_BYTES,
178625
178628
  onOverflow: () => {
178626
178629
  connection2.send({
178627
178630
  type: "error",
@@ -213716,7 +213719,7 @@ ${page}${helpTipBottom}${choiceDescription}${ansiEscapes.cursorHide}`;
213716
213719
  data = createReviewBundleSnapshot(bundle);
213717
213720
  }
213718
213721
  const { injectReviewSnapshot } = await import("./chunks/index-VoI6Ds2-.js");
213719
- const { resolveReviewViewerTemplate } = await import("./chunks/review-viewer--d2HZGpO.js").then(async (m) => {
213722
+ const { resolveReviewViewerTemplate } = await import("./chunks/review-viewer-CbgGhbZE.js").then(async (m) => {
213720
213723
  await m.__tla;
213721
213724
  return m;
213722
213725
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lody",
3
- "version": "0.79.0",
3
+ "version": "0.79.1",
4
4
  "description": "Lody Agent CLI tool for managing remote command execution",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",