loro-crdt 1.15.0 → 1.15.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 +8 -0
- package/base64/index.js +93 -11
- package/base64/loro_wasm.d.ts +4 -0
- package/browser/index.js +6 -5
- package/browser/index.js.map +1 -1
- package/browser/loro_wasm.d.ts +4 -0
- package/browser/loro_wasm.js +12 -9
- package/browser/loro_wasm_bg.js +87 -6
- package/browser/loro_wasm_bg.wasm +0 -0
- package/browser/loro_wasm_bg.wasm.d.ts +1 -0
- package/bundler/index.js +6 -5
- package/bundler/index.js.map +1 -1
- package/bundler/loro_wasm.d.ts +4 -0
- package/bundler/loro_wasm_bg.js +87 -6
- package/bundler/loro_wasm_bg.wasm +0 -0
- package/bundler/loro_wasm_bg.wasm.d.ts +1 -0
- package/nodejs/index.js +1 -1
- package/nodejs/index.js.map +1 -1
- package/nodejs/loro_wasm.d.ts +4 -0
- package/nodejs/loro_wasm.js +87 -6
- package/nodejs/loro_wasm_bg.wasm +0 -0
- package/nodejs/loro_wasm_bg.wasm.d.ts +1 -0
- package/package.json +1 -1
- package/web/index.js +3 -2
- package/web/index.js.map +1 -1
- package/web/loro_wasm.d.ts +5 -0
- package/web/loro_wasm.js +86 -5
- package/web/loro_wasm_bg.wasm +0 -0
- package/web/loro_wasm_bg.wasm.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.15.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 34b1fae: Cache immutable container ids per JavaScript wrapper to avoid repeated WASM string decoding.
|
|
8
|
+
- 48b3c52: Keep malformed `cid:`-prefixed strings returned from `toJsonWithReplacer` as
|
|
9
|
+
plain strings instead of throwing while resolving them as container IDs.
|
|
10
|
+
|
|
3
11
|
## 1.15.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|