You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: cloudsync_cleanup now drops the blocks table for block LWW tables
When a table has columns configured with algo=block, cloudsync_cleanup
was leaving the {table}_cloudsync_blocks table behind. This fix drops it
alongside the meta-table during cleanup. Adds a unit test to verify both
companion tables are removed.
Bumps version to 1.0.11.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
6
7
+
## [1.0.11] - 2026-04-11
8
+
9
+
### Fixed
10
+
11
+
-**cloudsync_cleanup**: Now also drops the `{table}_cloudsync_blocks` table when the table has block LWW columns configured via `cloudsync_set_column(..., 'algo', 'block')`.
12
+
13
+
### Added
14
+
15
+
- Unit test `do_test_block_lww_cleanup` verifying that both `{table}_cloudsync` and `{table}_cloudsync_blocks` are removed after `cloudsync_cleanup`.
0 commit comments