Promptles
Debugging & Error Handling

Regression

intermediate

Definition

A bug that appears in something that used to work. It typically happens when a code change accidentally breaks an unrelated feature. Regressions are sneaky because nobody is looking for problems in parts of the app that were already working.

In the wild

You fix a bug in the checkout flow, but now the search bar stops filtering results. The search wasn't touched directly, but it shared a utility function that the checkout fix changed. That's a regression.

More from Debugging & Error Handling