Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
- Ensure frame metrics listeners are registered/unregistered on the main thread ([#4582](https://github.com/getsentry/sentry-java/pull/4582))
- Do not report cached events as lost ([#4575](https://github.com/getsentry/sentry-java/pull/4575))
- Previously events were recorded as lost early despite being retried later through the cache
- Switch to compileOnly dependency for compose-ui-material ([#4630](https://github.com/getsentry/sentry-java/pull/4630))
- This fixes `StackOverflowError` when using OSS Licenses plugin

### Dependencies

Expand Down
2 changes: 1 addition & 1 deletion sentry-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ kotlin {
dependencies {
api(projects.sentry)
api(projects.sentryAndroidNavigation)
implementation(libs.androidx.compose.material3)

compileOnly(libs.androidx.compose.material3)
compileOnly(libs.androidx.navigation.compose)
implementation(libs.androidx.lifecycle.common.java8)
}
Expand Down
Loading