Don't create `EE::Member` audit events when there is no change

Problem to solve

Right now audit events are created to whenever certain APIs are called. This is great for maintaining visibility whenever actions take place. However, it means that audit events are always created, even when no change has occurred. This can cause the audit log to be filled with events that aren't meaningful. See the screenshot on the epic for an example where no actual changed occurred, yet an event was created.

The audit event located in the EE::Members::UpdateService might exhibit this behavior

Proposal

When an audit event is about to be created, check that there actually was a change. If there was, create the event if normal. However, if no change actually occurred, do not create an audit event.

Edited by Michael Becker