loro-crdt 1.12.5 → 1.13.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 +13 -0
- package/base64/index.js +229 -50
- package/base64/loro_wasm.d.ts +142 -10
- package/browser/index.js +4 -4
- package/browser/loro_wasm.d.ts +142 -10
- package/browser/loro_wasm.js +12 -12
- package/browser/loro_wasm_bg.js +225 -46
- package/browser/loro_wasm_bg.wasm +0 -0
- package/browser/loro_wasm_bg.wasm.d.ts +8 -2
- package/bundler/index.js +4 -4
- package/bundler/loro_wasm.d.ts +142 -10
- package/bundler/loro_wasm_bg.js +225 -46
- package/bundler/loro_wasm_bg.wasm +0 -0
- package/bundler/loro_wasm_bg.wasm.d.ts +8 -2
- package/nodejs/loro_wasm.d.ts +142 -10
- package/nodejs/loro_wasm.js +225 -46
- package/nodejs/loro_wasm_bg.wasm +0 -0
- package/nodejs/loro_wasm_bg.wasm.d.ts +8 -2
- package/package.json +2 -1
- package/web/loro_wasm.d.ts +150 -12
- package/web/loro_wasm.js +223 -44
- package/web/loro_wasm_bg.wasm +0 -0
- package/web/loro_wasm_bg.wasm.d.ts +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c1e05bf: Fix Node and Vitest bare imports by resolving the package root to the Node.js
|
|
8
|
+
WASM entry under the `node` export condition.
|
|
9
|
+
|
|
10
|
+
## 1.13.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 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.
|
|
15
|
+
|
|
3
16
|
## 1.12.5
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|