@powersync/service-module-postgres-storage 0.13.3 → 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.
Files changed (43) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/@types/storage/PostgresBucketStorageFactory.d.ts +2 -1
  4. package/dist/@types/storage/PostgresReportStorage.d.ts +1 -1
  5. package/dist/@types/storage/PostgresSyncRulesStorage.d.ts +1 -0
  6. package/dist/@types/types/models/SyncRules.d.ts +9 -0
  7. package/dist/@types/types/models/models-index.d.ts +1 -1
  8. package/dist/@types/utils/test-utils.d.ts +2 -2
  9. package/dist/@types/utils/utils-index.d.ts +1 -1
  10. package/dist/migrations/migration-utils.js +2 -2
  11. package/dist/migrations/migration-utils.js.map +1 -1
  12. package/dist/storage/PostgresBucketStorageFactory.js +1 -0
  13. package/dist/storage/PostgresBucketStorageFactory.js.map +1 -1
  14. package/dist/storage/PostgresReportStorage.js +3 -3
  15. package/dist/storage/PostgresReportStorage.js.map +1 -1
  16. package/dist/storage/PostgresSyncRulesStorage.js +2 -1
  17. package/dist/storage/PostgresSyncRulesStorage.js.map +1 -1
  18. package/dist/storage/batch/PostgresBucketBatch.js +3 -3
  19. package/dist/storage/batch/PostgresBucketBatch.js.map +1 -1
  20. package/dist/storage/current-data-store.js +1 -1
  21. package/dist/storage/current-data-store.js.map +1 -1
  22. package/dist/types/models/SyncRules.js +3 -1
  23. package/dist/types/models/SyncRules.js.map +1 -1
  24. package/dist/types/models/models-index.js +1 -1
  25. package/dist/types/models/models-index.js.map +1 -1
  26. package/dist/utils/test-utils.js +3 -3
  27. package/dist/utils/test-utils.js.map +1 -1
  28. package/dist/utils/utils-index.js +1 -1
  29. package/dist/utils/utils-index.js.map +1 -1
  30. package/package.json +8 -8
  31. package/src/migrations/migration-utils.ts +2 -2
  32. package/src/storage/PostgresBucketStorageFactory.ts +1 -0
  33. package/src/storage/PostgresReportStorage.ts +5 -5
  34. package/src/storage/PostgresSyncRulesStorage.ts +3 -1
  35. package/src/storage/batch/PostgresBucketBatch.ts +3 -3
  36. package/src/storage/current-data-store.ts +1 -1
  37. package/src/types/models/SyncRules.ts +3 -1
  38. package/src/types/models/models-index.ts +1 -1
  39. package/src/utils/test-utils.ts +3 -3
  40. package/src/utils/utils-index.ts +1 -1
  41. package/test/src/__snapshots__/storage_sync.test.ts.snap +282 -0
  42. package/test/src/connection-report-storage.test.ts +4 -4
  43. package/test/src/setup.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
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
+
3
23
  ## 0.13.3
4
24
 
5
25
  ### Patch Changes