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
Error handling improvements and docs update (#698) (fc34bfa)
AsyncStorage will no longer swallow errors from multiGet. In addition, multiple batched multiGet calls (not awaited) will be rejected with the same error, if one of the keys retrieval would fail. This is to keep the consistency across the platforms.
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.