Quick answer: Watch for the new version crashing more than the last, new crash signatures after release, a previously-working feature now broken, and complaints about something that used to work. A regression is the update making something worse.
A regression, an update breaking something that worked before, degrades your game silently if you're not watching for it. Here are the signs your update introduced a regression.
The New Version Crashing More Than the Previous One
The clearest sign is per-version comparison: the new build with a higher crash rate than the version it replaced. A regression makes the new version worse, so if you compare the new build against the previous one and the crash rate is up, the update regressed. Without comparison, this hides in the overall noise.
Bugnet tracks crash rate per version, so comparing the new build against the last is direct. The new version crashing more than the previous one is the definitive sign of a regression, and per-version comparison is what makes it visible, since it isolates exactly the question of whether the update made things worse.
A New Crash Signature Appearing After the Release
Regressions often show up as a new crash signature, a failure mode your previous builds never had. So a sign is a new signature appearing right after the update: a crash that didn't exist before and does after is almost certainly a regression the update introduced, often in code you didn't mean to change.
Bugnet groups crashes by signature and tracks per version, so a new signature on the new build stands out. A new crash signature appearing after a release is a strong sign of a regression, catching the ones that introduce new failures, and it often points at code you didn't intend to touch, since regressions hide in the ripple effects of changes.
A Previously-Working Feature Now Broken
A regression is, by definition, something that worked before now broken, so a direct sign is a feature behaving incorrectly after an update when it was fine before, often accompanied by complaints about something that used to work. If players report that a feature broke after the update, you've likely shipped a regression.
Bugnet captures bugs and errors from the field, so a newly-broken feature surfaces. A previously-working feature now broken, especially with players noting it worked before the update, is the most direct sign of a regression, and it confirms that the change rippled further than intended into something it shouldn't have affected.
Watch for the new version crashing more than the last, new crash signatures after release, a previously-working feature now broken, and complaints about something that used to work. A regression is the update making something worse.