@fluidframework/container-runtime 2.53.0-350190 → 2.53.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.
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluidframework/container-runtime";
9
- export const pkgVersion = "2.53.0-350190";
9
+ export const pkgVersion = "2.53.1";
@@ -873,8 +873,10 @@ export class PendingStateManager implements IDisposable {
873
873
  this.stateHandler.reSubmitBatch(batch, { batchId, staged, squash });
874
874
  }
875
875
 
876
- // pending ops should no longer depend on previous sequenced local ops after resubmit
877
- this.savedOps = [];
876
+ if (!committingStagedBatches) {
877
+ // pending ops should no longer depend on previous sequenced local ops after resubmitting all pending messages (does not apply if only replaying the staged messages)
878
+ this.savedOps = [];
879
+ }
878
880
 
879
881
  // We replayPendingStates on read connections too - we expect these to get nack'd though, and to then reconnect
880
882
  // on a write connection and replay again. This filters out the replay that happens on the read connection so
@@ -16,7 +16,7 @@ import {
16
16
  createChildLogger,
17
17
  } from "@fluidframework/telemetry-utils/internal";
18
18
 
19
- import { summarizerClientType } from "./index.js";
19
+ import { summarizerClientType } from "./summarizerTypes.js";
20
20
 
21
21
  // helper types for recursive readonly.
22
22
  // eslint-disable-next-line @typescript-eslint/ban-types