@powersync/service-module-postgres-storage 0.13.2 → 0.13.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 +35 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/@types/storage/PostgresBucketStorageFactory.d.ts +2 -1
- package/dist/@types/storage/PostgresReportStorage.d.ts +1 -1
- package/dist/@types/storage/PostgresSyncRulesStorage.d.ts +1 -0
- package/dist/@types/types/models/SyncRules.d.ts +9 -0
- package/dist/@types/types/models/models-index.d.ts +1 -1
- package/dist/@types/utils/test-utils.d.ts +2 -2
- package/dist/@types/utils/utils-index.d.ts +1 -1
- package/dist/migrations/migration-utils.js +2 -2
- package/dist/migrations/migration-utils.js.map +1 -1
- package/dist/migrations/scripts/1684951997326-init.js +24 -100
- package/dist/migrations/scripts/1684951997326-init.js.map +1 -1
- package/dist/migrations/scripts/1749024804042-snapshot-progress.js +12 -88
- package/dist/migrations/scripts/1749024804042-snapshot-progress.js.map +1 -1
- package/dist/migrations/scripts/1756282360128-connection-reporting.js +12 -88
- package/dist/migrations/scripts/1756282360128-connection-reporting.js.map +1 -1
- package/dist/migrations/scripts/1771232439485-storage-version.js +14 -90
- package/dist/migrations/scripts/1771232439485-storage-version.js.map +1 -1
- package/dist/migrations/scripts/1771491856000-sync-plan.js +6 -82
- package/dist/migrations/scripts/1771491856000-sync-plan.js.map +1 -1
- package/dist/storage/PostgresBucketStorageFactory.js +1 -0
- package/dist/storage/PostgresBucketStorageFactory.js.map +1 -1
- package/dist/storage/PostgresReportStorage.js +3 -3
- package/dist/storage/PostgresReportStorage.js.map +1 -1
- package/dist/storage/PostgresSyncRulesStorage.js +6 -69
- package/dist/storage/PostgresSyncRulesStorage.js.map +1 -1
- package/dist/storage/batch/PostgresBucketBatch.js +3 -3
- package/dist/storage/batch/PostgresBucketBatch.js.map +1 -1
- package/dist/storage/current-data-store.js +1 -1
- package/dist/storage/current-data-store.js.map +1 -1
- package/dist/types/models/SyncRules.js +3 -1
- package/dist/types/models/SyncRules.js.map +1 -1
- package/dist/types/models/models-index.js +1 -1
- package/dist/types/models/models-index.js.map +1 -1
- package/dist/utils/test-utils.js +36 -112
- package/dist/utils/test-utils.js.map +1 -1
- package/dist/utils/utils-index.js +1 -1
- package/dist/utils/utils-index.js.map +1 -1
- package/package.json +9 -10
- package/src/migrations/migration-utils.ts +2 -2
- package/src/storage/PostgresBucketStorageFactory.ts +1 -0
- package/src/storage/PostgresReportStorage.ts +5 -5
- package/src/storage/PostgresSyncRulesStorage.ts +3 -1
- package/src/storage/batch/PostgresBucketBatch.ts +3 -3
- package/src/storage/current-data-store.ts +1 -1
- package/src/types/models/SyncRules.ts +3 -1
- package/src/types/models/models-index.ts +1 -1
- package/src/utils/test-utils.ts +3 -3
- package/src/utils/utils-index.ts +1 -1
- package/test/src/__snapshots__/storage_sync.test.ts.snap +282 -0
- package/test/src/connection-report-storage.test.ts +4 -4
- package/test/src/setup.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @powersync/service-module-postgres-storage
|
|
2
2
|
|
|
3
|
+
## 0.13.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b6a7896: Report errors from compiled sync plans.
|
|
8
|
+
- 756746c: Fix PSYNC_S2305 logging when parameter limit is exceeded.
|
|
9
|
+
- Updated dependencies [41875f7]
|
|
10
|
+
- Updated dependencies [afc9890]
|
|
11
|
+
- Updated dependencies [2b72c2a]
|
|
12
|
+
- Updated dependencies [4611a49]
|
|
13
|
+
- Updated dependencies [b6a7896]
|
|
14
|
+
- Updated dependencies [2b72c2a]
|
|
15
|
+
- Updated dependencies [756746c]
|
|
16
|
+
- @powersync/service-types@0.15.1
|
|
17
|
+
- @powersync/service-core@1.20.5
|
|
18
|
+
- @powersync/lib-services-framework@0.9.3
|
|
19
|
+
- @powersync/service-sync-rules@0.35.0
|
|
20
|
+
- @powersync/lib-service-postgres@0.4.26
|
|
21
|
+
- @powersync/service-jpgwire@0.21.17
|
|
22
|
+
|
|
23
|
+
## 0.13.3
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- df451c6: Node 24.14.0 and other dependency upgrades.
|
|
28
|
+
- Updated dependencies [df451c6]
|
|
29
|
+
- Updated dependencies [dea1e00]
|
|
30
|
+
- Updated dependencies [ada86f2]
|
|
31
|
+
- Updated dependencies [11b4deb]
|
|
32
|
+
- @powersync/service-core@1.20.4
|
|
33
|
+
- @powersync/lib-service-postgres@0.4.25
|
|
34
|
+
- @powersync/service-sync-rules@0.34.1
|
|
35
|
+
- @powersync/lib-services-framework@0.9.2
|
|
36
|
+
- @powersync/service-jpgwire@0.21.16
|
|
37
|
+
|
|
3
38
|
## 0.13.2
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|