@powersync/service-module-postgres-storage 0.10.13 → 0.10.15
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 +26 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/@types/storage/batch/PostgresBucketBatch.d.ts +3 -0
- package/dist/@types/storage/batch/PostgresPersistedBatch.d.ts +6 -1
- package/dist/storage/batch/PostgresBucketBatch.js +30 -3
- package/dist/storage/batch/PostgresBucketBatch.js.map +1 -1
- package/dist/storage/batch/PostgresPersistedBatch.js +10 -0
- package/dist/storage/batch/PostgresPersistedBatch.js.map +1 -1
- package/package.json +8 -8
- package/src/storage/batch/PostgresBucketBatch.ts +36 -3
- package/src/storage/batch/PostgresPersistedBatch.ts +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @powersync/service-module-postgres-storage
|
|
2
2
|
|
|
3
|
+
## 0.10.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [21b3a41]
|
|
8
|
+
- @powersync/service-sync-rules@0.29.9
|
|
9
|
+
- @powersync/lib-services-framework@0.7.13
|
|
10
|
+
- @powersync/service-jpgwire@0.21.8
|
|
11
|
+
- @powersync/service-core@1.18.1
|
|
12
|
+
- @powersync/lib-service-postgres@0.4.17
|
|
13
|
+
|
|
14
|
+
## 0.10.14
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- dc696b1: Clear replication errors when any replication progress has been made.
|
|
19
|
+
- b77bb2c: - First iteration of MSSQL replication using Change Data Capture (CDC).
|
|
20
|
+
- Supports resumable snapshot replication
|
|
21
|
+
- Uses CDC polling for replication
|
|
22
|
+
- Updated dependencies [dc696b1]
|
|
23
|
+
- Updated dependencies [b77bb2c]
|
|
24
|
+
- @powersync/service-core@1.18.0
|
|
25
|
+
- @powersync/service-types@0.13.3
|
|
26
|
+
- @powersync/lib-service-postgres@0.4.16
|
|
27
|
+
- @powersync/lib-services-framework@0.7.12
|
|
28
|
+
|
|
3
29
|
## 0.10.13
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|