You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a "progress" issue sort that orders issues by how far they are
through the fix cycle (fix_applied > fix_proposed > diagnosed > triaged
> identified), with last_seen as a secondary key so the most recently
active issue ranks highest within a tier.
It reuses the existing PostgresSortStrategy framework: a signal resolver
derives each group's rank from the same Activity records as the
issue.progress filter (via get_group_progress_states), and the score
encodes rank as the integer primary key plus a sub-1 recency fraction.
On candidate overflow it falls back to the chunked Snuba last_seen path.
The secondary key stands in for issue.last_progressed_at, which does not
exist yet; swapping it in later is a one-line change to the score_fn.
Gated behind organizations:issue-stream-progress-sort. Backend only; the
frontend sort dropdown is not wired up yet.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
0 commit comments