@syncular/tauri 0.15.35 → 0.15.36

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.
Files changed (2) hide show
  1. package/README.md +6 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -35,7 +35,12 @@ outbox, and requests a fresh bootstrap while preserving device identity,
35
35
  lease state, outcomes, and protected bookkeeping. The result contains only
36
36
  `alreadyApplied`, `retainedCommits`, and `resetSubscriptions`. It is blocked
37
37
  during security preflight and an active schema-floor stop; it is not a sign-out
38
- or secure-erasure API. The JavaScript bridge strictly validates the exact
38
+ or secure-erasure API. The native SQLite marker atomically retains the original
39
+ counts, so a retry after process restart returns `alreadyApplied: true` with the
40
+ same receipt rather than zero counts. Malformed or unreadable receipt storage
41
+ fails closed as sanitized `sync.local_corrupt` without repeating the reset;
42
+ pre-0.15.36 legacy markers retain their former zero-count compatibility. The
43
+ JavaScript bridge strictly validates the exact
39
44
  acknowledgement shape and non-negative safe-integer counts; version drift or a
40
45
  malformed native response fails with the sanitized, stable
41
46
  `client.invalid_host_response` code before application recovery state can
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncular/tauri",
3
- "version": "0.15.35",
3
+ "version": "0.15.36",
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.15.35"
51
+ "@syncular/client": "0.15.36"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "@tauri-apps/api": ">=2.0.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@syncular/react": "0.15.35"
57
+ "@syncular/react": "0.15.36"
58
58
  }
59
59
  }