Skip to content

Commit

Permalink
Upgrade Sentry lib and disable stack merging (#1153)
Browse files Browse the repository at this point in the history
  • Loading branch information
borisyankov committed Sep 11, 2017
1 parent 8d63ead commit d8648bd
Show file tree
Hide file tree
Showing 3 changed files with 217 additions and 256 deletions.
15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"react-native-notifications": "^1.1.16",
"react-native-photo-view": "1.3.0",
"react-native-safari-view": "^2.0.0",
"react-native-sentry": "^0.23.0",
"react-native-sentry": "^0.23.2",
"react-native-simple-toast": "0.0.7",
"react-native-sound": "^0.10.4",
"react-native-vector-icons": "^4.3.0",
Expand All @@ -71,35 +71,34 @@
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.0.0",
"babel-jest": "^21.0.2",
"babel-plugin-transform-remove-console": "^6.8.4",
"babel-preset-react-native": "^3.0.2",
"coveralls": "^2.13.0",
"deep-freeze": "^0.0.1",
"detox": "^5.6.1",
"detox": "^5.6.2",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.0",
"eslint-plugin-jest": "^21.0.2",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-react-native": "^3.1.0",
"eslint-plugin-spellcheck": "0.0.6",
"flow-bin": "^0.49.1",
"flow-typed": "^2.1.5",
"jest": "^21.0.1",
"jest-cli": "^21.0.1",
"jest": "^21.0.2",
"jest-cli": "^21.0.2",
"jest-react-native": "^18.0.0",
"mocha": "^3.5.0",
"prettier": "^1.6.1",
"react-native-cli": "^2.0.1",
"reactotron-react-native": "^1.12.3",
"reactotron-redux": "^1.12.2",
"redux-mock-store": "^1.2.3"
"redux-mock-store": "^1.3.0"
},
"jest": {
"preset": "react-native",
Expand Down
2 changes: 1 addition & 1 deletion src/ZulipMobile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require('./i18n/locale');
// console.disableYellowBox = true; // eslint-disable-line

if (config.enableSentry) {
Sentry.config(config.sentryKey).install();
Sentry.config(config.sentryKey, { deactivateStacktraceMerging: true }).install();
}

export default () => (
Expand Down

0 comments on commit d8648bd

Please sign in to comment.