react-native-onyx 1.0.111 → 1.0.113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/web.development.js +1 -1
- package/dist/web.development.js.map +1 -1
- package/dist/web.min.js +1 -1
- package/dist/web.min.js.map +1 -1
- package/lib/OnyxCache.js +1 -1
- package/package.json +4 -4
package/lib/OnyxCache.js
CHANGED
|
@@ -121,7 +121,7 @@ class OnyxCache {
|
|
|
121
121
|
|
|
122
122
|
// lodash adds a small overhead so we don't use it here
|
|
123
123
|
// eslint-disable-next-line prefer-object-spread, rulesdir/prefer-underscore-method
|
|
124
|
-
this.storageMap = Object.assign({}, utils.fastMerge(this.storageMap, data));
|
|
124
|
+
this.storageMap = Object.assign({}, utils.fastMerge(this.storageMap, data, false));
|
|
125
125
|
|
|
126
126
|
const storageKeys = this.getAllKeys();
|
|
127
127
|
const mergedKeys = _.keys(data);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-onyx",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.113",
|
|
4
4
|
"author": "Expensify, Inc.",
|
|
5
5
|
"homepage": "https://expensify.com",
|
|
6
6
|
"description": "State management for React Native",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"ascii-table": "0.0.9",
|
|
44
44
|
"fast-equals": "^4.0.3",
|
|
45
|
-
"underscore": "^1.13.
|
|
45
|
+
"underscore": "^1.13.6"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@babel/core": "7.20.12",
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
"metro-react-native-babel-preset": "^0.72.3",
|
|
67
67
|
"prop-types": "^15.7.2",
|
|
68
68
|
"react": "18.2.0",
|
|
69
|
-
"react-dom": "^18.
|
|
69
|
+
"react-dom": "^18.2.0",
|
|
70
70
|
"react-native": "0.71.2",
|
|
71
71
|
"react-native-device-info": "^10.3.0",
|
|
72
72
|
"react-native-performance": "^2.0.0",
|
|
73
|
-
"react-native-quick-sqlite": "^8.0.
|
|
73
|
+
"react-native-quick-sqlite": "^8.0.6",
|
|
74
74
|
"react-test-renderer": "18.1.0",
|
|
75
75
|
"type-fest": "^3.12.0",
|
|
76
76
|
"webpack": "^5.72.1",
|