@powersync/service-module-postgres-storage 0.5.2 → 0.6.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/CHANGELOG.md +17 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/@types/storage/PostgresSyncRulesStorage.d.ts +2 -3
- package/dist/@types/storage/checkpoints/PostgresWriteCheckpointAPI.d.ts +1 -1
- package/dist/storage/PostgresSyncRulesStorage.js +5 -11
- package/dist/storage/PostgresSyncRulesStorage.js.map +1 -1
- package/dist/storage/checkpoints/PostgresWriteCheckpointAPI.js +15 -26
- package/dist/storage/checkpoints/PostgresWriteCheckpointAPI.js.map +1 -1
- package/package.json +5 -5
- package/src/storage/PostgresSyncRulesStorage.ts +6 -15
- package/src/storage/checkpoints/PostgresWriteCheckpointAPI.ts +21 -31
- package/test/src/__snapshots__/storage_sync.test.ts.snap +171 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @powersync/service-module-postgres-storage
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bfece49: Cache parameter queries and buckets to reduce incremental sync overhead
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 833e8f2: [Postgres Storage] Fix issue when creating custom write checkpoints
|
|
12
|
+
- Updated dependencies [833e8f2]
|
|
13
|
+
- Updated dependencies [833e8f2]
|
|
14
|
+
- Updated dependencies [bfece49]
|
|
15
|
+
- Updated dependencies [2cb5252]
|
|
16
|
+
- @powersync/service-core@1.10.0
|
|
17
|
+
- @powersync/service-core-tests@0.8.0
|
|
18
|
+
- @powersync/service-sync-rules@0.25.0
|
|
19
|
+
|
|
3
20
|
## 0.5.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|