pierre-review 0.1.56 → 0.1.57

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,6 @@
1
+ -- The PR's SOURCE branch name (GraphQL `headRefName`), e.g. `feature/PROJ-123-foo` (additive).
2
+ -- The standard carrier of a Jira/Linear ticket key; read by the Pro ticket-link enricher
3
+ -- (compute-on-read) to render deep links in PR detail. Distinct from `base_ref_name` (the
4
+ -- TARGET branch). Nullable; existing rows stay NULL until a sync backfills them.
5
+ -- The Postgres baseline is regenerated separately via `pnpm db:generate:pg`.
6
+ ALTER TABLE `pull_requests` ADD `head_ref_name` text;
@@ -169,6 +169,13 @@
169
169
  "when": 1780800000014,
170
170
  "tag": "0023_ai_usage",
171
171
  "breakpoints": true
172
+ },
173
+ {
174
+ "idx": 24,
175
+ "version": "6",
176
+ "when": 1780800000015,
177
+ "tag": "0024_pr_head_ref_name",
178
+ "breakpoints": true
172
179
  }
173
180
  ]
174
181
  }
@@ -0,0 +1 @@
1
+ ALTER TABLE "pull_requests" ADD COLUMN "head_ref_name" text;