@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.
- package/CHANGELOG.md +4 -0
- package/container-runtime.test-files.tar +0 -0
- package/dist/containerRuntime.d.ts.map +1 -1
- package/dist/containerRuntime.js +4 -0
- package/dist/containerRuntime.js.map +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.d.ts.map +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/dist/pendingStateManager.d.ts.map +1 -1
- package/dist/pendingStateManager.js +4 -2
- package/dist/pendingStateManager.js.map +1 -1
- package/dist/summary/orderedClientElection.js +9 -9
- package/dist/summary/orderedClientElection.js.map +1 -1
- package/lib/containerRuntime.d.ts.map +1 -1
- package/lib/containerRuntime.js +4 -0
- package/lib/containerRuntime.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.d.ts.map +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/lib/pendingStateManager.d.ts.map +1 -1
- package/lib/pendingStateManager.js +4 -2
- package/lib/pendingStateManager.js.map +1 -1
- package/lib/summary/orderedClientElection.js +1 -1
- package/lib/summary/orderedClientElection.js.map +1 -1
- package/package.json +18 -18
- package/src/containerRuntime.ts +5 -0
- package/src/packageVersion.ts +1 -1
- package/src/pendingStateManager.ts +4 -2
- package/src/summary/orderedClientElection.ts +1 -1
package/src/packageVersion.ts
CHANGED
|
@@ -873,8 +873,10 @@ export class PendingStateManager implements IDisposable {
|
|
|
873
873
|
this.stateHandler.reSubmitBatch(batch, { batchId, staged, squash });
|
|
874
874
|
}
|
|
875
875
|
|
|
876
|
-
|
|
877
|
-
|
|
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 "./
|
|
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
|