@syncular/tauri 0.9.0 → 0.11.0
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/README.md +3 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -16,7 +16,9 @@ the single mutable core owner.
|
|
|
16
16
|
The bridge includes the native core's durable commit-outcome journal:
|
|
17
17
|
`commitOutcome`, `commitOutcomes`, and `resolveCommitOutcome`. Final results
|
|
18
18
|
and explicit conflict resolutions survive process restarts; active failures
|
|
19
|
-
are never silently removed by retention.
|
|
19
|
+
are never silently removed by retention. Failed outcomes retain their complete
|
|
20
|
+
ordered local operation envelope for authorized aggregate recovery with the
|
|
21
|
+
same protected-storage and retention contract as the core client.
|
|
20
22
|
|
|
21
23
|
Part of [Syncular](https://syncular.dev) — an offline-first sync framework.
|
|
22
24
|
See the [Syncular repository](https://github.com/syncular/syncular) for docs.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncular/tauri",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Tauri integration for the Syncular client",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Benjamin Kniffler",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"test": "bun test"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@syncular/client": "0.
|
|
51
|
+
"@syncular/client": "0.11.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"@tauri-apps/api": ">=2.0.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@syncular/react": "0.
|
|
57
|
+
"@syncular/react": "0.11.0"
|
|
58
58
|
}
|
|
59
59
|
}
|