loro-crdt 1.13.2 → 1.13.3
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 +7 -0
- package/base64/index.js +103 -103
- package/base64/loro_wasm.d.ts +21 -21
- package/browser/index.js +4 -4
- package/browser/loro_wasm.d.ts +21 -21
- package/browser/loro_wasm.js +12 -12
- package/browser/loro_wasm_bg.js +99 -99
- package/browser/loro_wasm_bg.wasm +0 -0
- package/browser/loro_wasm_bg.wasm.d.ts +2 -2
- package/bundler/index.js +4 -4
- package/bundler/loro_wasm.d.ts +21 -21
- package/bundler/loro_wasm_bg.js +99 -99
- package/bundler/loro_wasm_bg.wasm +0 -0
- package/bundler/loro_wasm_bg.wasm.d.ts +2 -2
- package/nodejs/loro_wasm.d.ts +21 -21
- package/nodejs/loro_wasm.js +100 -100
- package/nodejs/loro_wasm_bg.wasm +0 -0
- package/nodejs/loro_wasm_bg.wasm.d.ts +2 -2
- package/package.json +1 -1
- package/web/loro_wasm.d.ts +23 -23
- package/web/loro_wasm.js +97 -97
- package/web/loro_wasm_bg.wasm +0 -0
- package/web/loro_wasm_bg.wasm.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8d258cb: Fix `unreachable` panic when importing an out-of-order update whose op targets a mergeable child container before its creation (or its parent map) has arrived. Such ops are now buffered as pending and applied once the creating change is imported.
|
|
8
|
+
- 32700ba: Fix undo recording for the first local commit after importing shallow snapshots that need import-time state materialization.
|
|
9
|
+
|
|
3
10
|
## 1.13.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|