@sentry/react-native 4.1.2 → 4.1.3
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/CHANGELOG.md +5 -4
- package/dist/js/version.d.ts +1 -1
- package/dist/js/version.js +1 -1
- package/dist/js/version.js.map +1 -1
- package/ios/RNSentry.m +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.1.3
|
|
4
|
+
|
|
5
|
+
fix: Solve reference to private cocoa SDK class #2369
|
|
6
|
+
|
|
3
7
|
## 4.1.2
|
|
4
8
|
|
|
5
9
|
### Fixes
|
|
6
10
|
|
|
7
11
|
- Set default unit for measurements ([#2360](https://github.com/getsentry/sentry-react-native/pull/2360))
|
|
12
|
+
- When using SENTRY_DIST env. var. on Android, SDK fails to convert to an Integer ([#2365](https://github.com/getsentry/sentry-react-native/pull/2365))
|
|
8
13
|
|
|
9
14
|
### Features
|
|
10
15
|
|
|
@@ -12,10 +17,6 @@
|
|
|
12
17
|
- [changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md#760)
|
|
13
18
|
- [diff](https://github.com/getsentry/sentry-javascript/compare/7.5.1...7.6.0)
|
|
14
19
|
|
|
15
|
-
### Fixes
|
|
16
|
-
|
|
17
|
-
- When using SENTRY_DIST env. var. on Android, SDK fails to convert to an Integer ([#2365](https://github.com/getsentry/sentry-react-native/pull/2365))
|
|
18
|
-
|
|
19
20
|
## 4.1.1
|
|
20
21
|
|
|
21
22
|
### Features
|
package/dist/js/version.d.ts
CHANGED
package/dist/js/version.js
CHANGED
package/dist/js/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/js/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG,gCAAgC,CAAC;AACzD,MAAM,CAAC,MAAM,WAAW,GAAG,OAAO,CAAC","sourcesContent":["export const SDK_NAME = 'sentry.javascript.react-native';\nexport const SDK_VERSION = '4.1.
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/js/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG,gCAAgC,CAAC;AACzD,MAAM,CAAC,MAAM,WAAW,GAAG,OAAO,CAAC","sourcesContent":["export const SDK_NAME = 'sentry.javascript.react-native';\nexport const SDK_VERSION = '4.1.3';\n"]}
|
package/ios/RNSentry.m
CHANGED
|
@@ -8,7 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
#import <Sentry/Sentry.h>
|
|
10
10
|
#import <Sentry/SentryScreenFrames.h>
|
|
11
|
-
|
|
11
|
+
|
|
12
|
+
@interface SentryTraceContext : NSObject
|
|
13
|
+
- (nullable instancetype)initWithDict:(NSDictionary<NSString *, id> *)dictionary;
|
|
14
|
+
@end
|
|
12
15
|
|
|
13
16
|
@interface SentrySDK (RNSentry)
|
|
14
17
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@sentry/react-native",
|
|
3
3
|
"homepage": "https://github.com/getsentry/sentry-react-native",
|
|
4
4
|
"repository": "https://github.com/getsentry/sentry-react-native",
|
|
5
|
-
"version": "4.1.
|
|
5
|
+
"version": "4.1.3",
|
|
6
6
|
"description": "Official Sentry SDK for react-native",
|
|
7
7
|
"typings": "dist/js/index.d.ts",
|
|
8
8
|
"types": "dist/js/index.d.ts",
|