loro-crdt 1.13.8 → 1.13.9

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 CHANGED
@@ -1,5 +1,30 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.13.9
4
+
5
+ ### Patch Changes
6
+
7
+ - ddc47ec: Retreat the conservative replay base to the latest single-head critical
8
+ version of the two versions' combined history instead of the beginning of
9
+ history. When an import or checkout involves a genuinely concurrent branch,
10
+ the causal replay now starts at the most recent point that no concurrency
11
+ crosses (in the sense of Eg-walker's critical versions), skipping the
12
+ fully-synced common prefix that the old empty-version fallback replayed.
13
+ - ddc47ec: Fix a convergence bug where a movable tree's incrementally maintained state
14
+ could diverge from a full replay of its own oplog. When newly imported
15
+ operations were concurrent with part of the receiving peer's multi-head
16
+ frontier, the diff mode was misclassified as concurrency-free and the tree
17
+ fast path applied the new moves without adjudicating them against the
18
+ existing concurrent branch. The classifier now verifies that every entry
19
+ point of the imported region causally covers the whole current frontier,
20
+ and otherwise retreats the replay base to the latest critical version so
21
+ the competing branches are replayed together.
22
+ - ddc47ec: Correct LCA unmatched-branch detection when an explicit dependency already
23
+ covers the same peer's implicit predecessor. Keep those causally newer imports
24
+ on the current replay base, and avoid rebuilding unchanged list-like containers
25
+ when a genuinely concurrent update needs a conservative base containing a large
26
+ common history.
27
+
3
28
  ## 1.13.8
4
29
 
5
30
  ### Patch Changes