aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/dev
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-12-31 18:25:56 +0900
committernsfisis <nsfisis@gmail.com>2025-12-31 18:25:56 +0900
commit4755779975a140660e66acfcec2cc899179b0b71 (patch)
tree37491529031459767a9e1dfdf2e4570a977ab1e5 /docs/dev
parentd7b55e7d9a3dce5e3d7a71d5266aa2787c6ad5f8 (diff)
downloadkioku-4755779975a140660e66acfcec2cc899179b0b71.tar.gz
kioku-4755779975a140660e66acfcec2cc899179b0b71.tar.zst
kioku-4755779975a140660e66acfcec2cc899179b0b71.zip
refactor(sync): remove legacy LWW conflict resolution strategy
Remove the deprecated "newer_wins" strategy from the conflict resolver as CRDT is now the default and validated approach. The system now uses only "crdt", "server_wins", and "local_wins" strategies. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/roadmap.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/roadmap.md b/docs/dev/roadmap.md
index 28facb6..022e09e 100644
--- a/docs/dev/roadmap.md
+++ b/docs/dev/roadmap.md
@@ -45,4 +45,4 @@ Replace the current Last-Write-Wins (LWW) conflict resolution with Automerge CRD
- [x] Add unit tests for CRDT operations
- [x] Add integration tests for concurrent edit scenarios
-- [ ] Remove legacy LWW code after validation
+- [x] Remove legacy LWW code after validation