Skip to content

Commit

Permalink
chore: Add Sentry/HybridSDK as dependency (#2592)
Browse files Browse the repository at this point in the history
Co-authored-by: Kryštof Woldřich <[email protected]>
Co-authored-by: Dhiogo Ramos Brustolin <[email protected]>
  • Loading branch information
3 people authored Nov 16, 2022
1 parent fd1b8b5 commit b00ec5b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
- Bump JavaScript SDK from v7.16.0 to v7.17.4 ([#2582](https://github.com/getsentry/sentry-react-native/pull/2582), [#2598](https://github.com/getsentry/sentry-react-native/pull/2598))
- [changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md#7174)
- [diff](https://github.com/getsentry/sentry-javascript/compare/7.16.0...7.17.4)
- Bump Cocoa SDK from v7.29.0 to v7.30.0 ([#2597](https://github.com/getsentry/sentry-react-native/pull/2597))
- Bump Cocoa SDK from v7.29.0 to v7.30.2 ([#2592](https://github.com/getsentry/sentry-react-native/pull/2592))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7300)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.29.0...7.30.0)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.29.0...7.30.2)

## 4.8.0

Expand Down
2 changes: 1 addition & 1 deletion RNSentry.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.preserve_paths = '*.js'

s.dependency 'React-Core'
s.dependency 'Sentry', '7.30.0'
s.dependency 'Sentry/HybridSDK', '7.30.2'

s.source_files = 'ios/RNSentry.{h,m}'
s.public_header_files = 'ios/RNSentry.h'
Expand Down
1 change: 1 addition & 0 deletions ios/RNSentry.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#endif

#import <Sentry/Sentry.h>
#import <Sentry/PrivateSentrySDKOnly.h>
#import <Sentry/SentryScreenFrames.h>

@interface SentryTraceContext : NSObject
Expand Down
2 changes: 1 addition & 1 deletion scripts/update-cocoa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -euo pipefail

file="$(dirname "$0")/../RNSentry.podspec"
content=$(cat $file)
regex="('Sentry', *)'([0-9\.]+)'"
regex="('Sentry/HybridSDK', *)'([0-9\.]+)'"
if ! [[ $content =~ $regex ]]; then
echo "Failed to find the plugin version in $file"
exit 1
Expand Down

0 comments on commit b00ec5b

Please sign in to comment.