Skip to content
Draft
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Release `MediaMuxer` when a replay segment has no encodable frames to avoid a resource leak ([#5583](https://github.com/getsentry/sentry-java/pull/5583))

### Dependencies

- Align the Kotlin stdlib version in Android modules with the Kotlin Gradle plugin instead of pinning it to 1.9.24 ([#5590](https://github.com/getsentry/sentry-java/pull/5590))

## 8.44.1

### Fixes
Expand Down
1 change: 0 additions & 1 deletion buildSrc/src/main/java/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
object Config {
val AGP = System.getenv("VERSION_AGP") ?: "8.13.1"
val kotlinStdLib = "stdlib-jdk8"
val kotlinStdLibVersionAndroid = "1.9.24"
val kotlinTestJunit = "test-junit"

object BuildPlugins {
Expand Down
2 changes: 1 addition & 1 deletion sentry-android-distribution/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
implementation(
libs.jetbrains.annotations
) // Use implementation instead of compileOnly to override kotlin stdlib's version
implementation(kotlin(Config.kotlinStdLib, Config.kotlinStdLibVersionAndroid))
implementation(kotlin(Config.kotlinStdLib))
testImplementation(libs.androidx.test.ext.junit)
testImplementation(libs.roboelectric)
testImplementation(libs.kotlin.test.junit)
Expand Down
2 changes: 1 addition & 1 deletion sentry-android-replay/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dependencies {
api(projects.sentry)

compileOnly(libs.androidx.compose.ui.replay)
implementation(kotlin(Config.kotlinStdLib, Config.kotlinStdLibVersionAndroid))
implementation(kotlin(Config.kotlinStdLib))
// tests
testImplementation(projects.sentryTestSupport)
testImplementation(projects.sentryAndroidCore)
Expand Down
2 changes: 1 addition & 1 deletion sentry-android-sqlite/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ dependencies {
compileOnly(libs.androidx.sqlite)
compileOnly(libs.jetbrains.annotations)

implementation(kotlin(Config.kotlinStdLib, Config.kotlinStdLibVersionAndroid))
implementation(kotlin(Config.kotlinStdLib))

// tests
testImplementation(libs.androidx.sqlite)
Expand Down
2 changes: 1 addition & 1 deletion sentry-android-timber/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dependencies {

compileOnly(libs.timber)

implementation(kotlin(Config.kotlinStdLib, Config.kotlinStdLibVersionAndroid))
implementation(kotlin(Config.kotlinStdLib))

// tests
testImplementation(libs.timber)
Expand Down
2 changes: 1 addition & 1 deletion sentry-ktor-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kotlin { explicitApi() }
dependencies {
api(projects.sentry)

implementation(kotlin(Config.kotlinStdLib, Config.kotlinStdLibVersionAndroid))
implementation(kotlin(Config.kotlinStdLib))
api(projects.sentryKotlinExtensions)

compileOnly(libs.jetbrains.annotations)
Expand Down
2 changes: 1 addition & 1 deletion sentry-launchdarkly-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {
// tests
testImplementation(projects.sentry)
testImplementation(projects.sentryTestSupport)
testImplementation(kotlin(Config.kotlinStdLib, Config.kotlinStdLibVersionAndroid))
testImplementation(kotlin(Config.kotlinStdLib))
testImplementation(libs.androidx.test.ext.junit)
testImplementation(libs.kotlin.test.junit)
testImplementation(libs.mockito.kotlin)
Expand Down
2 changes: 1 addition & 1 deletion sentry-okhttp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kotlin { explicitApi() }
dependencies {
api(projects.sentry)

implementation(kotlin(Config.kotlinStdLib, Config.kotlinStdLibVersionAndroid))
implementation(kotlin(Config.kotlinStdLib))

compileOnly(libs.jetbrains.annotations)
compileOnly(libs.nopen.annotations)
Expand Down
Loading