From 6beb4bbea17e2720003d8a1d582d2165a9f879db Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Fri, 7 Aug 2026 13:12:01 +0200 Subject: [PATCH] chore(meta): commit the T-1212 -> T-1213 blocker removal (T-1211 re-scope) The write-through row tombstoning that dependency edge was left untracked by the earlier re-scope commit. It matters on its own: the tracked July file CREATES the edge, and this August file is the only record that it was removed. Without it a `pql plan rebuild` replays July unopposed and T-1213 comes back blocked by a measurement that was retired as a gate. Co-Authored-By: Claude Opus 5 (1M context) --- .pql/changelog/ticket_deps/2026-08.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 .pql/changelog/ticket_deps/2026-08.sql diff --git a/.pql/changelog/ticket_deps/2026-08.sql b/.pql/changelog/ticket_deps/2026-08.sql new file mode 100644 index 000000000..8acc968e1 --- /dev/null +++ b/.pql/changelog/ticket_deps/2026-08.sql @@ -0,0 +1 @@ +INSERT INTO ticket_deps (blocker_record_id, blocked_record_id, created_at, updated_at, deleted_at, hash, canonical_version) VALUES ('06FT0TYBD74TQNVKTJMKA8D9KM', '06FT0TZC9MJV6KZTSRVRYQ327M', '2026-07-26 21:56:27.160', '2026-08-06 15:59:23.500', '2026-08-06 15:59:23.500', 'd5c447e9898bbc6d9ef3556b0ed91213', 2) ON CONFLICT(blocker_record_id, blocked_record_id) DO UPDATE SET updated_at=excluded.updated_at, deleted_at=excluded.deleted_at, hash=excluded.hash, canonical_version=excluded.canonical_version WHERE excluded.updated_at > ticket_deps.updated_at OR (excluded.updated_at = ticket_deps.updated_at AND excluded.hash > ticket_deps.hash);