feature: update deps & fix applicationGroup cleanup

This commit is contained in:
Radek Czemerys
2020-06-29 11:41:18 +02:00
parent 537e349cdf
commit 215febf4d7
4 changed files with 33 additions and 25 deletions

View File

@@ -244,7 +244,7 @@ PODS:
- React
- react-native-mail (4.1.0):
- React
- react-native-safe-area-context (3.0.6):
- react-native-safe-area-context (3.0.7):
- React
- react-native-sodium (0.4.0):
- React
@@ -534,7 +534,7 @@ SPEC CHECKSUMS:
react-native-aes: ff31f0dd4c791eb423a631ee04570fcf3c618924
react-native-fingerprint-scanner: f0d8190ceaf0b9e1893e3379d78724375b8f6ea7
react-native-mail: a864fb211feaa5845c6c478a3266de725afdce89
react-native-safe-area-context: e22a8ca00f758273d2408953965cb8db67da7925
react-native-safe-area-context: ef6f16c66b0797ecae1bf86c103dfb3dc16fc33d
react-native-sodium: ef43e28fdf8d866e68ed06890c32f8d86a570cc7
react-native-webview: 0bacc79175bc44869e4c1a015b9bc21df8cf4feb
React-RCTActionSheet: f41ea8a811aac770e0cc6e0ad6b270c644ea8b7c

View File

@@ -23,8 +23,8 @@
"@expo/react-native-action-sheet": "^3.8.0",
"@react-native-community/async-storage": "1.11.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.6.0",
"@react-navigation/stack": "^5.6.1",
"@react-navigation/native": "^5.6.1",
"@react-navigation/stack": "^5.6.2",
"base64-arraybuffer": "^0.2.0",
"bugsnag-react-native": "^2.23.9",
"js-base64": "^2.6.2",
@@ -43,7 +43,7 @@
"react-native-keychain": "^6.1.1",
"react-native-mail": "standardnotes/react-native-mail#9862c76",
"react-native-reanimated": "^1.9.0",
"react-native-safe-area-context": "^3.0.6",
"react-native-safe-area-context": "^3.0.7",
"react-native-screens": "^2.9.0",
"react-native-search-box": "standardnotes/react-native-search-box#f61a2b5",
"react-native-sodium": "standardnotes/react-native-sodium#c548383",
@@ -65,7 +65,7 @@
"@types/jest": "^26.0.3",
"@types/js-base64": "^2.3.2",
"@types/lodash": "^4.14.157",
"@types/react-native": "^0.62.13",
"@types/react-native": "^0.62.14",
"@types/react-native-vector-icons": "^6.4.5",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",

View File

@@ -73,7 +73,8 @@ export class ApplicationGroup {
}
return () => {
pull(this.changeObservers, callback);
const indexOf = this.changeObservers.indexOf(callback);
this.changeObservers.splice(indexOf, 1);
};
}

View File

@@ -1169,10 +1169,10 @@
resolved "https://registry.yarnpkg.com/@react-native-community/masked-view/-/masked-view-0.1.10.tgz#5dda643e19e587793bc2034dd9bf7398ad43d401"
integrity sha512-rk4sWFsmtOw8oyx8SD3KSvawwaK7gRBSEIy2TAwURyGt+3TizssXP1r8nx3zY+R7v2vYYHXZ+k2/GULAT/bcaQ==
"@react-navigation/core@^5.11.0":
version "5.11.0"
resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-5.11.0.tgz#329cf455bcdc82ea6b171fd945db27406c1e3663"
integrity sha512-ro54NCCW25ngoJrfKzJgKmFqabEWjIpMeGYXa54dEnIT6tEoJW0Z/C60DfhRs8nYHOSEYsDetiQk3yL48EXCVA==
"@react-navigation/core@^5.11.1":
version "5.11.1"
resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-5.11.1.tgz#c4890910ba3d6332ee6873f0adb3d3d13cf4fa4c"
integrity sha512-zJ/w84msKBhgRR35/tHdY1facxdnN/WP9Ebutnjp/J9ENuv7fHXhYlxX+oIRrMn+/MnbG79RVnYcO/r4lO8OTQ==
dependencies:
"@react-navigation/routers" "^5.4.8"
escape-string-regexp "^4.0.0"
@@ -1181,12 +1181,12 @@
react-is "^16.13.0"
use-subscription "^1.4.0"
"@react-navigation/native@^5.6.0":
version "5.6.0"
resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-5.6.0.tgz#3b03a35dd1337d3d3c7d170e9b6f7d0a666109bd"
integrity sha512-P+kr2Jz8aouNmtLRsxzihApFHpp14e4eyyir2t1nc9O2KKdZ5tULPIwdYXGEX0n2ty3BnCU0xkI2ZsK+qY0YnQ==
"@react-navigation/native@^5.6.1":
version "5.6.1"
resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-5.6.1.tgz#a603b921f39fe3fcfcc27232d71b24e80effc1f2"
integrity sha512-jnSNEnuRzqLvG+7QcMthfB8eCZIzAE0Wku7HDgzfjFS2iA7Oa9ugeX/1qdP9heT2Mp0t9BDQ4XX4boJma9Z/xg==
dependencies:
"@react-navigation/core" "^5.11.0"
"@react-navigation/core" "^5.11.1"
nanoid "^3.1.9"
"@react-navigation/routers@^5.4.8":
@@ -1196,10 +1196,10 @@
dependencies:
nanoid "^3.1.9"
"@react-navigation/stack@^5.6.1":
version "5.6.1"
resolved "https://registry.yarnpkg.com/@react-navigation/stack/-/stack-5.6.1.tgz#9cdb64cfa1b8fc3d9c7204589effce7278bf6d2e"
integrity sha512-pbiNHKGa+7awvh+mjuvU6L05s/6qYxxs+4tY5ldCsMrqP+PoYW8/avY0lJBaByAfTZmJbHAZrtcC+rFic8NAnA==
"@react-navigation/stack@^5.6.2":
version "5.6.2"
resolved "https://registry.yarnpkg.com/@react-navigation/stack/-/stack-5.6.2.tgz#d2371f9ffdcf3eee26245697d0947c9722542f38"
integrity sha512-51Aasxg8j2eKxz4mhA0ajJXrhAyJQkk2iiNE511zcqJ3tlfxv/h70Eej3PetnbbHFMOwNsEwc2GjB3OnfQcxjQ==
dependencies:
color "^3.1.2"
react-native-iphone-x-helper "^1.2.1"
@@ -1373,13 +1373,20 @@
"@types/react" "*"
"@types/react-native" "*"
"@types/react-native@*", "@types/react-native@^0.62.13":
"@types/react-native@*":
version "0.62.13"
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.13.tgz#c688c5ae03e426f927f7e1fa1a59cd067f35d1c2"
integrity sha512-hs4/tSABhcJx+J8pZhVoXHrOQD89WFmbs8QiDLNSA9zNrD46pityAuBWuwk1aMjPk9I3vC5ewkJroVRHgRIfdg==
dependencies:
"@types/react" "*"
"@types/react-native@^0.62.14":
version "0.62.14"
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.14.tgz#13ce7dab136bb124b6f394fe7510442557b16d29"
integrity sha512-ItBgiEQks2Mid6GsiLBx75grNH0glaKemTK9V7G+vSnvP+Zk3x1Wr+aTy4dJxRPPMg14DAJyYePLZwj2cigXbw==
dependencies:
"@types/react" "*"
"@types/react@*":
version "16.9.34"
resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.34.tgz#f7d5e331c468f53affed17a8a4d488cd44ea9349"
@@ -6125,10 +6132,10 @@ react-native-reanimated@^1.9.0:
dependencies:
fbjs "^1.0.0"
react-native-safe-area-context@^3.0.6:
version "3.0.6"
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-3.0.6.tgz#ee180f53f9f40f8302923b9c09d821cf8ada01eb"
integrity sha512-/McWHgRG3CjXo/1ctlxH3mjW2psjf/QYAt9kWUTEtHu4b6z1y4hfUIGuYEJ02asaS1ixPsYrkqVqwzTv4olUMQ==
react-native-safe-area-context@^3.0.7:
version "3.0.7"
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-3.0.7.tgz#0f53de7a30d626d82936000f3f6db374ecc4b800"
integrity sha512-dqhRTlIFe5+P1yxitj0C9XVUxLqOmjomeqzUSSY8sNOWVjtIhEY/fl4ZKYpAVnktd8dt3zl13XmJTmRmy3d0uA==
react-native-screens@^2.9.0:
version "2.9.0"