@sentry/react-native 5.22.2 → 5.22.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.22.3
4
+
5
+ ### Fixes
6
+
7
+ - Missing `RNSentryOnDrawReporterView` on iOS ([#3832](https://github.com/getsentry/sentry-react-native/pull/3832))
8
+
9
+ ### Dependencies
10
+
11
+ - Bump Cocoa SDK from v8.25.0 to v8.26.0 ([#3802](https://github.com/getsentry/sentry-react-native/pull/3802), [#3815](https://github.com/getsentry/sentry-react-native/pull/3815))
12
+ - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8260)
13
+ - [diff](https://github.com/getsentry/sentry-cocoa/compare/8.25.0...8.26.0)
14
+
3
15
  ## 5.22.2
4
16
 
5
17
  ### Fixes
package/RNSentry.podspec CHANGED
@@ -33,7 +33,7 @@ Pod::Spec.new do |s|
33
33
  s.preserve_paths = '*.js'
34
34
 
35
35
  s.dependency 'React-Core'
36
- s.dependency 'Sentry/HybridSDK', '8.25.0'
36
+ s.dependency 'Sentry/HybridSDK', '8.26.0'
37
37
 
38
38
  s.source_files = 'ios/**/*.{h,m,mm}'
39
39
  s.public_header_files = 'ios/RNSentry.h'
@@ -1,4 +1,4 @@
1
1
  export declare const SDK_PACKAGE_NAME = "npm:@sentry/react-native";
2
2
  export declare const SDK_NAME = "sentry.javascript.react-native";
3
- export declare const SDK_VERSION = "5.22.2";
3
+ export declare const SDK_VERSION = "5.22.3";
4
4
  //# sourceMappingURL=version.d.ts.map
@@ -1,4 +1,4 @@
1
1
  export const SDK_PACKAGE_NAME = 'npm:@sentry/react-native';
2
2
  export const SDK_NAME = 'sentry.javascript.react-native';
3
- export const SDK_VERSION = '5.22.2';
3
+ export const SDK_VERSION = '5.22.3';
4
4
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/js/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG,0BAA0B,CAAC;AAC3D,MAAM,CAAC,MAAM,QAAQ,GAAG,gCAAgC,CAAC;AACzD,MAAM,CAAC,MAAM,WAAW,GAAG,QAAQ,CAAC","sourcesContent":["export const SDK_PACKAGE_NAME = 'npm:@sentry/react-native';\nexport const SDK_NAME = 'sentry.javascript.react-native';\nexport const SDK_VERSION = '5.22.2';\n"]}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/js/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG,0BAA0B,CAAC;AAC3D,MAAM,CAAC,MAAM,QAAQ,GAAG,gCAAgC,CAAC;AACzD,MAAM,CAAC,MAAM,WAAW,GAAG,QAAQ,CAAC","sourcesContent":["export const SDK_PACKAGE_NAME = 'npm:@sentry/react-native';\nexport const SDK_NAME = 'sentry.javascript.react-native';\nexport const SDK_VERSION = '5.22.3';\n"]}
@@ -0,0 +1,23 @@
1
+ #import <Sentry/SentryDefines.h>
2
+
3
+ #if SENTRY_HAS_UIKIT
4
+
5
+ #import <UIKit/UIKit.h>
6
+ #import <React/RCTViewManager.h>
7
+ #import "RNSentryFramesTrackerListener.h"
8
+
9
+ @interface RNSentryOnDrawReporter : RCTViewManager
10
+
11
+ @end
12
+
13
+ @interface RNSentryOnDrawReporterView : UIView
14
+
15
+ @property (nonatomic, strong) RNSentryFramesTrackerListener* framesListener;
16
+ @property (nonatomic, copy) RCTBubblingEventBlock onDrawNextFrame;
17
+ @property (nonatomic) bool fullDisplay;
18
+ @property (nonatomic) bool initialDisplay;
19
+ @property (nonatomic, weak) RNSentryOnDrawReporter* delegate;
20
+
21
+ @end
22
+
23
+ #endif
@@ -1,24 +1,9 @@
1
+ #import "RNSentryOnDrawReporter.h"
2
+
1
3
  #if SENTRY_HAS_UIKIT
2
4
 
3
- #import <UIKit/UIKit.h>
4
- #import <React/RCTViewManager.h>
5
- #import "RNSentryFramesTrackerListener.h"
6
5
  #import <Sentry/SentryDependencyContainer.h>
7
6
 
8
- @interface RNSentryOnDrawReporter : RCTViewManager
9
-
10
- @end
11
-
12
- @interface RNSentryOnDrawReporterView : UIView
13
-
14
- @property (nonatomic, strong) RNSentryFramesTrackerListener* framesListener;
15
- @property (nonatomic, copy) RCTBubblingEventBlock onDrawNextFrame;
16
- @property (nonatomic) bool fullDisplay;
17
- @property (nonatomic) bool initialDisplay;
18
- @property (nonatomic, weak) RNSentryOnDrawReporter* delegate;
19
-
20
- @end
21
-
22
7
  @implementation RNSentryOnDrawReporter
23
8
 
24
9
  RCT_EXPORT_MODULE(RNSentryOnDrawReporter)
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": "5.22.2",
5
+ "version": "5.22.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",
@@ -1,4 +1,4 @@
1
1
  export declare const SDK_PACKAGE_NAME = "npm:@sentry/react-native";
2
2
  export declare const SDK_NAME = "sentry.javascript.react-native";
3
- export declare const SDK_VERSION = "5.22.2";
3
+ export declare const SDK_VERSION = "5.22.3";
4
4
  //# sourceMappingURL=version.d.ts.map