Releases: react-native-async-storage/async-storage
Releases · react-native-async-storage/async-storage
v1.15.8
v1.15.7
v1.15.6
1.15.6 (2021-08-16)
Bug Fixes
- 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.