You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
web : replace deprecated deep-assign with merge-options. Also, jest-mock uses now merge-options instead own implementation of deep merge (#657) (6fec1db)
Potential breaking change
With change of deep-assign with merge-options and it usage in jest-mock, there's a potential breaking change due to how deep-assign merged values. Previously, if value overriding was null or undefined, the previous value would stay the same. With current change, null value will override the original value, while undefined will not.
This might be a breaking change on web and tests, if you previously relied on this behavior.