Draft: feat: Update ECA validation to more efficiently check user statuses
- feat: Update ECA validation to more efficiently check user statuses
Previous iterations would queue all commits to be processed in parallel, processing users multiple times with the same result. The new processing pattern groups commit hashes by user, then checks the user once, returning a list of results for that user. Those results are then combined with other parts where available to output the effective same results with less operations.