From 308ff57789075d6bc35319ea1b1db01cc2c233f1 Mon Sep 17 00:00:00 2001 From: Madhura68 Date: Mon, 27 Apr 2026 21:22:23 +0200 Subject: [PATCH] chore(ST-1001..1008): teach backlog parser about M9 + M10 M9 (Actief Product Backlog) was bij eerdere merge per ongeluk overgeslagen in de drie milestone-maps; viel terug op fallbacks. Nu expliciet, samen met M10 (QR-pairing). Parser self-test toont 12 milestones / 118 stories / 190 tasks. Co-Authored-By: Claude Opus 4.7 (1M context) --- prisma/seed-data/parse-backlog.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/prisma/seed-data/parse-backlog.ts b/prisma/seed-data/parse-backlog.ts index 3f62204..11d26a9 100644 --- a/prisma/seed-data/parse-backlog.ts +++ b/prisma/seed-data/parse-backlog.ts @@ -44,6 +44,8 @@ const MILESTONE_PRIORITY: Record = { M6: 4, M7: 4, M8: 4, + M9: 4, + M10: 4, } const MILESTONE_GOAL: Record = { @@ -57,6 +59,8 @@ const MILESTONE_GOAL: Record = { M6: 'Foutafhandeling, toegankelijkheid, CI/CD, beveiliging', M7: 'MCP-server voor Claude Code', M8: 'Realtime updates voor Solo Paneel', + M9: 'Actief Product Backlog — persistent gekozen product', + M10: 'Password-loze inlog via QR-pairing', } const MILESTONE_SPRINT_STATUS: Record = { @@ -70,6 +74,8 @@ const MILESTONE_SPRINT_STATUS: Record M6: 'COMPLETED', M7: 'COMPLETED', M8: 'COMPLETED', + M9: 'COMPLETED', + M10: 'COMPLETED', } const MILESTONE_KEY = /^(?:M[\d.]+|PBI-\d+)$/