WebHooker/server
RhenCloud b313cdc2fe
fix: prevent cascade deletion of routes when updating groups
Previously, saveGroups() used DELETE FROM d1_groups followed by re-insertion,
which triggered ON DELETE CASCADE and wiped all routes whenever any group was updated.

Changes:
- Use INSERT...ON CONFLICT DO UPDATE (upsert) instead of delete-then-insert
- Only delete groups that are actually being removed
- Delete routes first, then delete groups (proper cascade order)
- Load existing group IDs before saving to detect deletions

This fixes the critical bug where updating one group's metadata would
delete all routes across all groups.

Data recovery: Used D1 Time Travel to restore from bookmark
000018f9-00000002-000050de-f23b7bfe5ccdc00e9c9dec3a4de8bc81 (before
the problematic group update), recovering 18 routes.
2026-09-10 22:29:47 +08:00
..
lib fix: prevent cascade deletion of routes when updating groups 2026-09-10 22:29:47 +08:00
plugins feat(queue): async delivery via Cloudflare Queues with retry backoff and DLQ 2026-08-15 17:03:35 +08:00
routes feat(feishu): add Feishu inbound webhook, /gh commands and card actions 2026-08-27 00:07:05 +08:00
tasks chore: auto-fix lint & formatting [skip ci] 2026-08-17 07:51:36 +00:00
error-handler.ts chore: auto-fix lint & formatting [skip ci] 2026-08-13 12:37:09 +00:00