🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

react-native-sentry

Package Overview
Dependencies
Maintainers
10
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-sentry - npm Package Compare versions

Comparing version

to
0.41.0

5

CHANGELOG.md
# Changelog
## 0.41.0
- Update android build tools and gradle scripts to be compatible with latest version
- Fix support to build on windows
## 0.40.3

@@ -4,0 +9,0 @@

7

lib/raven-plugin.js

@@ -44,5 +44,10 @@ /*global ErrorUtils:false*/

* Strip device-specific IDs from React Native file:// paths
* Ensure path begins with / (after app://) to ensure source code and map path can be found
*/
function normalizeUrl(url, pathStripRe) {
return 'app://' + url.replace(/^file\:\/\//, '').replace(pathStripRe, '');
const normUrl = url.replace(/^file\:\/\//, '').replace(pathStripRe, '');
if (normUrl.indexOf('/') !== 0) {
return 'app:///' + normUrl;
}
return 'app://' + normUrl;
}

@@ -49,0 +54,0 @@

2

package.json

@@ -5,3 +5,3 @@ {

"repository": "https://github.com/getsentry/react-native-sentry",
"version": "0.40.3",
"version": "0.41.0",
"description": "Official Sentry SDK for react-native",

@@ -8,0 +8,0 @@ "typings": "lib/Sentry.d.ts",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet