@powersync/service-module-postgres-storage 0.13.4 → 0.14.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.
Files changed (27) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/@types/storage/PostgresSyncRulesStorage.d.ts +3 -2
  4. package/dist/@types/storage/batch/PostgresBucketBatch.d.ts +1 -1
  5. package/dist/migrations/scripts/1771424826685-current-data-pending-deletes.js +1 -1
  6. package/dist/storage/PostgresBucketStorageFactory.js +5 -5
  7. package/dist/storage/PostgresBucketStorageFactory.js.map +1 -1
  8. package/dist/storage/PostgresSyncRulesStorage.js +70 -38
  9. package/dist/storage/PostgresSyncRulesStorage.js.map +1 -1
  10. package/dist/storage/batch/PostgresBucketBatch.js +2 -2
  11. package/dist/storage/batch/PostgresBucketBatch.js.map +1 -1
  12. package/dist/storage/checkpoints/PostgresWriteCheckpointAPI.js +1 -1
  13. package/dist/storage/checkpoints/PostgresWriteCheckpointAPI.js.map +1 -1
  14. package/dist/storage/sync-rules/PostgresPersistedSyncRulesContent.js +3 -3
  15. package/dist/storage/sync-rules/PostgresPersistedSyncRulesContent.js.map +1 -1
  16. package/package.json +11 -11
  17. package/src/migrations/scripts/1771424826685-current-data-pending-deletes.ts +1 -1
  18. package/src/storage/PostgresBucketStorageFactory.ts +6 -5
  19. package/src/storage/PostgresSyncRulesStorage.ts +78 -38
  20. package/src/storage/batch/PostgresBucketBatch.ts +2 -2
  21. package/src/storage/checkpoints/PostgresWriteCheckpointAPI.ts +3 -1
  22. package/src/storage/sync-rules/PostgresPersistedSyncRulesContent.ts +3 -6
  23. package/test/tsconfig.json +0 -1
  24. package/dist/@types/storage/current-data-table.d.ts +0 -9
  25. package/dist/storage/current-data-table.js +0 -22
  26. package/dist/storage/current-data-table.js.map +0 -1
  27. package/src/storage/current-data-table.ts +0 -26
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # @powersync/service-module-postgres-storage
2
2
 
3
+ ## 0.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 01c29c3: Avoid parameter results loaded from bucket storage exceeding the configured limit.
8
+ - 8afe719: When querying parameter rows, track which lookups resulted in which rows.
9
+
10
+ ### Patch Changes
11
+
12
+ - cdb8993: Add `config.storage_version` configuration option.
13
+ - 7c7b525: [MongoDB] Log replication timing info per batch
14
+ - 040fffd: Improve consistency of logs and error messages
15
+ - 2b19fc3: Update first-party uuid dependencies to v14.
16
+ - Updated dependencies [f20f318]
17
+ - Updated dependencies [9add445]
18
+ - Updated dependencies [17503d1]
19
+ - Updated dependencies [ad9ea06]
20
+ - Updated dependencies [01c29c3]
21
+ - Updated dependencies [8afe719]
22
+ - Updated dependencies [b8f0195]
23
+ - Updated dependencies [cdb8993]
24
+ - Updated dependencies [7c7b525]
25
+ - Updated dependencies [824e229]
26
+ - Updated dependencies [6304a21]
27
+ - Updated dependencies [040fffd]
28
+ - Updated dependencies [9e474d3]
29
+ - Updated dependencies [75174c4]
30
+ - Updated dependencies [423822c]
31
+ - Updated dependencies [2b19fc3]
32
+ - @powersync/service-core@1.21.0
33
+ - @powersync/service-sync-rules@0.36.0
34
+ - @powersync/lib-services-framework@0.9.4
35
+ - @powersync/service-types@0.15.2
36
+ - @powersync/service-jsonbig@0.17.13
37
+ - @powersync/service-jpgwire@0.21.18
38
+ - @powersync/lib-service-postgres@0.4.27
39
+
3
40
  ## 0.13.4
4
41
 
5
42
  ### Patch Changes