WebHooker/server/lib
RhenCloud 1a0500b812
fix: prevent data loss in routes, fragments, and group operations
Found and fixed multiple critical bugs with similar patterns:

1. routeStatements() used DELETE FROM d1_routes before re-inserting
   - Could cause data loss if interrupted or if logic changes
   - Now uses DELETE with WHERE clause + INSERT...ON CONFLICT (upsert)

2. saveFragments() used DELETE FROM d1_fragments before re-inserting
   - Same pattern as routes, fixed with targeted deletes + upsert
   - Added loadFragments() call to determine what to delete

3. adminGroupRename() didn't update fragment groupId
   - When renaming a group, fragments were left pointing to old groupId
   - Now updates fragments alongside routes, secrets, and invites

All changes follow the same safe pattern:
- Load existing data to identify what needs deletion
- Delete only removed items with WHERE clauses
- Use INSERT...ON CONFLICT DO UPDATE for upserts
- Never use bare DELETE FROM table

Testing: All 339 tests pass.
2026-09-10 22:35:43 +08:00
..
config feat(feishu): add Feishu inbound webhook, /gh commands and card actions 2026-08-27 00:07:05 +08:00
core chore: auto-fix lint & formatting [skip ci] 2026-08-27 14:00:26 +00:00
drivers chore: auto-fix lint & formatting [skip ci] 2026-08-26 16:39:02 +00:00
events chore: auto-fix lint & formatting [skip ci] 2026-08-24 14:52:59 +00:00
formatters fix(check): key check_run in-place edits on check name + head_sha 2026-08-31 01:17:13 +08:00
github chore: auto-fix lint & formatting [skip ci] 2026-08-27 14:00:26 +00:00
lib feat(check): add build log link for failed Cloudflare checks 2026-08-27 21:43:26 +08:00
observability chore: auto-fix lint & formatting [skip ci] 2026-08-16 14:47:01 +00:00
providers feat(reliability): idempotency store, custom webhook replay protection, correlation ids 2026-08-15 17:03:32 +08:00
queue feat(feishu): add Feishu inbound webhook, /gh commands and card actions 2026-08-27 00:07:05 +08:00
storage fix: prevent data loss in routes, fragments, and group operations 2026-09-10 22:35:43 +08:00
web fix: prevent data loss in routes, fragments, and group operations 2026-09-10 22:35:43 +08:00
cf.ts fix: read raw request + body via h3 context for discord/telegram webhooks 2026-08-13 18:13:55 +08:00
config.ts chore: auto-fix lint & formatting [skip ci] 2026-08-17 07:51:36 +00:00
fragments.ts fix: prevent data loss in routes, fragments, and group operations 2026-09-10 22:35:43 +08:00
http.ts feat: migrate to Nuxt 4 (Nitro) and Tailwind CSS v3 2026-08-13 17:43:33 +08:00
types.ts feat(feishu): add Feishu inbound webhook, /gh commands and card actions 2026-08-27 00:07:05 +08:00
webhook.ts feat(storage): migrate config, dedup and delivery state to D1 2026-08-17 15:01:20 +08:00