Currently, after an edit, listeners registered by extensions get invoked before the user edit count is updated. This is the case even though UserEditTracker::incrementUserEditCount() is called from ChangeTrackingEventIngress before extension listeners get invoked. The reason is that incrementUserEditCount() doesn't update the database immediately, it schedules an UserEditCountUpdate which will be executed in a later round of deferred updates, after event listeners.
This was probably caused by moving the invocation of incrementUserEditCount() into an ingress object when introducing domain event handling into MediaWiki core.