Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
- Bump CLI from v3.4.3 to v3.5.0 ([#6248](https://github.com/getsentry/sentry-react-native/pull/6248))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#350)
- [diff](https://github.com/getsentry/sentry-cli/compare/3.4.3...3.5.0)
- Bump Android SDK from v8.43.0 to v8.43.1 ([#6253](https://github.com/getsentry/sentry-react-native/pull/6253))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8431)
- [diff](https://github.com/getsentry/sentry-java/compare/8.43.0...8.43.1)

## 8.13.0

Expand Down
2 changes: 1 addition & 1 deletion packages/core/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ android {
}
}

def sentryAndroidVersion = '8.43.0'
def sentryAndroidVersion = '8.43.1'

dependencies {
compileOnly files('libs/replay-stubs.jar')
Expand Down
2 changes: 1 addition & 1 deletion packages/core/android/expo-handler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ android {

dependencies {
compileOnly project(':expo-modules-core')
compileOnly 'io.sentry:sentry-android:8.43.0'
compileOnly 'io.sentry:sentry-android:8.43.1'
}
Binary file modified packages/core/android/libs/replay-stubs.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/core/android/replay-stubs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ tasks.named('jar', Jar) {
}

dependencies {
compileOnly 'io.sentry:sentry:8.43.0'
compileOnly 'io.sentry:sentry:8.43.1'
}
2 changes: 1 addition & 1 deletion packages/core/sentry.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.util.concurrent.atomic.AtomicBoolean
import java.util.regex.Pattern
import javax.inject.Inject

val expectedSentryAndroidVersion = "8.43.0"
val expectedSentryAndroidVersion = "8.43.1"

val sentryVersionCheckWarned = AtomicBoolean(false)
project.configurations.configureEach {
Expand Down
Loading