Skip to content

Commit

Permalink
Merge branch 'main' into feat/maxCacheItems
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-garcia authored Mar 3, 2022
2 parents 1cfc624 + 221d270 commit 8ad0ca9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

- feat: Support setting maxCacheItems #2102
- Bump: Sentry Cocoa 7.10.0 #2100

## 3.2.14-beta.2

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.9.0'
s.dependency 'Sentry', '7.10.0'

s.source_files = 'ios/RNSentry.{h,m}'
s.public_header_files = 'ios/RNSentry.h'
Expand Down
3 changes: 1 addition & 2 deletions ios/RNSentry.m
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ + (BOOL)requiresMainQueueSetup {
// remove performance traces sample rate and traces sampler since we don't want to synchronize these configurations
// to the Native SDKs.
// The user could tho initialize the SDK manually and set themselves.
// Remove comment below once https://github.com/getsentry/sentry-cocoa/issues/1657 gets fixed.
// [mutableOptions removeObjectForKey:@"tracesSampleRate"];
[mutableOptions removeObjectForKey:@"tracesSampleRate"];
[mutableOptions removeObjectForKey:@"tracesSampler"];

sentryOptions = [[SentryOptions alloc] initWithDict:mutableOptions didFailWithError:&error];
Expand Down
7 changes: 3 additions & 4 deletions sample/android/sentry.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
defaults.url=https://sentry.io/
defaults.org=sentry-test
defaults.project=react-native
#defaults.url=https://sentry.io/
defaults.org=sentry-sdks
defaults.project=sentry-react-native
#auth.token=
cli.executable=sentry-cli
6 changes: 3 additions & 3 deletions sample/ios/sentry.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defaults.url=https://sentry.io/
defaults.org=sentry-test
defaults.project=react-native
#defaults.url=https://sentry.io/
defaults.org=sentry-sdks
defaults.project=sentry-react-native
#auth.token=

0 comments on commit 8ad0ca9

Please sign in to comment.