pierre-review 0.1.84 → 0.1.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ -- Part A: deterministic "was this thread addressed?" upgrade. Store a graded addressed-confidence
2
+ -- + a machine reason tag + who resolved the thread, alongside the existing derivedState. All
3
+ -- additive (defaulted / nullable) so the backfill is a no-op — the next sync recomputes them.
4
+ -- The Postgres baseline is regenerated separately via `pnpm db:generate:pg`.
5
+ ALTER TABLE `review_threads` ADD `addressed_confidence` text DEFAULT 'none' NOT NULL;
6
+ --> statement-breakpoint
7
+ ALTER TABLE `review_threads` ADD `addressed_reason` text;
8
+ --> statement-breakpoint
9
+ ALTER TABLE `review_threads` ADD `resolved_by_login` text;
@@ -232,6 +232,13 @@
232
232
  "when": 1783820880005,
233
233
  "tag": "0032_benchmark_contributions",
234
234
  "breakpoints": true
235
+ },
236
+ {
237
+ "idx": 33,
238
+ "version": "6",
239
+ "when": 1784200000000,
240
+ "tag": "0033_thread_addressed_confidence",
241
+ "breakpoints": true
235
242
  }
236
243
  ]
237
244
  }
@@ -0,0 +1,3 @@
1
+ ALTER TABLE "review_threads" ADD COLUMN "addressed_confidence" text DEFAULT 'none' NOT NULL;--> statement-breakpoint
2
+ ALTER TABLE "review_threads" ADD COLUMN "addressed_reason" text;--> statement-breakpoint
3
+ ALTER TABLE "review_threads" ADD COLUMN "resolved_by_login" text;