loro-crdt 1.13.5 β†’ 1.13.6

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.13.6
4
+
5
+ ### Patch Changes
6
+
7
+ - a4e6174: Fix undo/redo restoring mergeable map children as regular non-mergeable containers.
8
+ - 78f6c8a: Fix a potential deadlock when lazy snapshot loading resolves mergeable container parent depths.
9
+
3
10
  ## 1.13.5
4
11
 
5
12
  ### Patch Changes
@@ -76,7 +83,7 @@
76
83
 
77
84
  ### Minor Changes
78
85
 
79
- - fa888d8: Add mergeable child containers: child containers created under a map key that converge across peers on concurrent first-write instead of forking. Exposed as `ensureMergeable{Counter,Map,List,MovableList,Text,Tree}` on `LoroMap`. A mergeable child lives at a deterministic `ContainerID` derived from `(parent, key, kind)`, and its visibility is driven by a binary ref the parent map stores at the key, so deletes and kind conflicts resolve through the map's regular LWW.
86
+ - fa888d8: Add mergeable child containers: child containers created under a map key that converge across peers on concurrent first-write instead of forking. Exposed as `ensureMergeable{Counter,Map,List,MovableList,Text,Tree}` on `LoroMap`. A mergeable child lives at a deterministic `ContainerID` derived from `(parent, key, kind)`, and its visibility is driven by a binary ref the parent map stores at the key, so deletes and kind conflicts resolve through the map's regular LWW. `getOrCreateContainer` is deprecated for lazy map-child creation; migrate those call sites to `ensureMergeable*`. `setContainer` and `insertContainer` regular semantics are unchanged.
80
87
 
81
88
  ## 1.12.5
82
89
 
package/README.md CHANGED
@@ -60,6 +60,7 @@ Loro is a [CRDTs(Conflict-free Replicated Data Types)](https://crdt.tech/) libra
60
60
  - 🌲 [Moveable Tree](https://loro.dev/docs/tutorial/tree)
61
61
  - πŸš— [Moveable List](https://loro.dev/docs/tutorial/list)
62
62
  - πŸ—ΊοΈ [Last-Write-Wins Map](https://loro.dev/docs/tutorial/map)
63
+ - 🀝 Mergeable map-key children via `ensureMergeable*` for lazy child container creation
63
64
 
64
65
  **Advanced Features in Loro**
65
66