@powersync/service-module-postgres-storage 0.8.4 → 0.9.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 +35 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/@types/storage/PostgresSyncRulesStorage.d.ts +2 -3
- package/dist/@types/storage/batch/PostgresBucketBatch.d.ts +10 -1
- package/dist/storage/PostgresSyncRulesStorage.js +48 -57
- package/dist/storage/PostgresSyncRulesStorage.js.map +1 -1
- package/dist/storage/batch/PostgresBucketBatch.js +65 -2
- package/dist/storage/batch/PostgresBucketBatch.js.map +1 -1
- package/package.json +7 -7
- package/src/storage/PostgresSyncRulesStorage.ts +54 -76
- package/src/storage/batch/PostgresBucketBatch.ts +71 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @powersync/service-module-postgres-storage
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b1add5a: [MongoDB Storage] Compact action now also compacts parameter lookup storage.
|
|
8
|
+
- d56eeb9: Delay switching over to new sync rules until we have a consistent checkpoint.
|
|
9
|
+
- d4db4e2: MySQL:
|
|
10
|
+
- Added schema change handling
|
|
11
|
+
- Except for some edge cases, the following schema changes are now handled automatically:
|
|
12
|
+
- Creation, renaming, dropping and truncation of tables.
|
|
13
|
+
- Creation and dropping of unique indexes and primary keys.
|
|
14
|
+
- Adding, modifying, dropping and renaming of table columns.
|
|
15
|
+
- If a schema change cannot handled automatically, a warning with details will be logged.
|
|
16
|
+
- Mismatches in table schema from the Zongji binlog listener are now handled more gracefully.
|
|
17
|
+
- Replication of wildcard tables is now supported.
|
|
18
|
+
- Improved logging for binlog event processing.
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [b1add5a]
|
|
23
|
+
- Updated dependencies [2378e36]
|
|
24
|
+
- Updated dependencies [4a34a51]
|
|
25
|
+
- Updated dependencies [4ebc3bf]
|
|
26
|
+
- Updated dependencies [2378e36]
|
|
27
|
+
- Updated dependencies [a882b94]
|
|
28
|
+
- Updated dependencies [1aafdaf]
|
|
29
|
+
- Updated dependencies [d56eeb9]
|
|
30
|
+
- Updated dependencies [d4db4e2]
|
|
31
|
+
- @powersync/service-core-tests@0.11.0
|
|
32
|
+
- @powersync/service-core@1.14.0
|
|
33
|
+
- @powersync/service-jpgwire@0.20.1
|
|
34
|
+
- @powersync/service-sync-rules@0.28.0
|
|
35
|
+
- @powersync/lib-services-framework@0.7.2
|
|
36
|
+
- @powersync/lib-service-postgres@0.4.6
|
|
37
|
+
|
|
3
38
|
## 0.8.4
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|