@abloatai/ablo 0.64.3 → 0.64.4
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/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.64.4
|
|
4
|
+
|
|
5
|
+
### Cached rows follow account authority
|
|
6
|
+
|
|
7
|
+
The reactive client now separates IndexedDB replicas and offline bootstrap snapshots by authenticated groups and operation grants, alongside user, organization, project and branch. Disposing a client and opening another account in the same organization no longer restores the previous account's rows before reconciliation. Reloading the same authority retains its warm cache.
|
|
8
|
+
|
|
9
|
+
Existing caches start cold because their older namespace cannot establish account ownership. Older IndexedDB files, including pending writes, are retained but are not automatically imported or replayed into the new namespace. A replica widened by live group additions is rejected when reopened under narrower authority, preserving its pending writes.
|
|
10
|
+
|
|
3
11
|
## 0.64.3
|
|
4
12
|
|
|
5
13
|
### Existing connections make room for new tables
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abloatai/ablo",
|
|
3
|
-
"version": "0.64.
|
|
3
|
+
"version": "0.64.4",
|
|
4
4
|
"description": "The public Ablo SDK for coordinated reads, commits, claims, observation, and reactive applications.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -147,8 +147,8 @@
|
|
|
147
147
|
"directory": "packages/ablo"
|
|
148
148
|
},
|
|
149
149
|
"dependencies": {
|
|
150
|
-
"@abloatai/humans": "0.64.
|
|
151
|
-
"@abloatai/transaction": "0.64.
|
|
150
|
+
"@abloatai/humans": "0.64.4",
|
|
151
|
+
"@abloatai/transaction": "0.64.4",
|
|
152
152
|
"zod": "^4.4.3"
|
|
153
153
|
},
|
|
154
154
|
"peerDependencies": {
|