loro-crdt 1.2.4 → 1.2.5
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 -1
- package/README.md +7 -0
- package/base64/index.js +1 -1
- package/base64/loro_wasm_bg-8aefc7ca.js +64 -0
- package/bundler/loro_wasm_bg.wasm +0 -0
- package/nodejs/loro_wasm_bg.wasm +0 -0
- package/package.json +1 -1
- package/web/loro_wasm_bg.wasm +0 -0
- package/base64/loro_wasm_bg-d78efef9.js +0 -64
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9faa149: Fix detach + attach error
|
|
8
|
+
|
|
3
9
|
## 1.2.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
6
12
|
|
|
7
|
-
- 5aa7985: Fixed incorrect
|
|
13
|
+
- 5aa7985: Fixed LoroTree's incorrect index when moving a node within its current parent
|
|
8
14
|
|
|
9
15
|
## 1.2.3
|
|
10
16
|
|
package/README.md
CHANGED
|
@@ -126,6 +126,13 @@ test('sync example', () => {
|
|
|
126
126
|
});
|
|
127
127
|
```
|
|
128
128
|
|
|
129
|
+
# Blog
|
|
130
|
+
|
|
131
|
+
- [Loro 1.0](https://loro.dev/blog/v1.0)
|
|
132
|
+
- [Movable tree CRDTs and Loro's implementation](https://loro.dev/blog/movable-tree)
|
|
133
|
+
- [Introduction to Loro's Rich Text CRDT](https://loro.dev/blog/loro-richtext)
|
|
134
|
+
- [Loro: Reimagine State Management with CRDTs](https://loro.dev/blog/loro-now-open-source)
|
|
135
|
+
|
|
129
136
|
# Credits
|
|
130
137
|
|
|
131
138
|
Loro draws inspiration from the innovative work of the following projects and individuals:
|
package/base64/index.js
CHANGED
|
@@ -6438,7 +6438,7 @@ var imports = /*#__PURE__*/Object.freeze({
|
|
|
6438
6438
|
// Without this patch, Cloudflare Worker would raise issue like: "Uncaught TypeError: wasm2.__wbindgen_start is not a function"
|
|
6439
6439
|
|
|
6440
6440
|
|
|
6441
|
-
import loro_wasm_bg_js from './loro_wasm_bg-
|
|
6441
|
+
import loro_wasm_bg_js from './loro_wasm_bg-8aefc7ca.js';
|
|
6442
6442
|
const instance = new WebAssembly.Instance(loro_wasm_bg_js(), {
|
|
6443
6443
|
"./loro_wasm_bg.js": imports,
|
|
6444
6444
|
});
|