diff --git a/CHANGELOG.md b/CHANGELOG.md index b3177678..b1ce9007 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ - Use threads interface for error reporting with Native SDK ([#350](https://github.com/getsentry/sentry-godot/pull/350)) +### Dependencies + +- Bump Sentry Android from v8.20.0 to v8.21.0 ([#352](https://github.com/getsentry/sentry-godot/pull/352)) + - Also bumps Kotlin from 2.0.21 to 2.2.0 + - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8210) + - [diff](https://github.com/getsentry/sentry-java/compare/8.20.0...8.21.0) + ## 1.0.0-beta.1 ### Breaking changes diff --git a/android_lib/build.gradle.kts b/android_lib/build.gradle.kts index a7336619..1fdf3079 100644 --- a/android_lib/build.gradle.kts +++ b/android_lib/build.gradle.kts @@ -38,7 +38,7 @@ dependencies { testImplementation("junit:junit:4.13.2") // NOTE: All dependencies below must be also updated in sentry_editor_export_plugin.cpp. - implementation("io.sentry:sentry-android:8.20.0") + implementation("io.sentry:sentry-android:8.21.0") } val copyDebugAarToProject by tasks.registering(Copy::class) { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1b4df597..e5a44a7e 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,8 +1,7 @@ [versions] agp = "8.9.3" -kotlin = "2.0.21" +kotlin = "2.2.0" [plugins] kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } android-library = { id = "com.android.library", version.ref = "agp" } - diff --git a/src/editor/sentry_editor_export_plugin_android.cpp b/src/editor/sentry_editor_export_plugin_android.cpp index 10c4cc1d..ff16b2ef 100644 --- a/src/editor/sentry_editor_export_plugin_android.cpp +++ b/src/editor/sentry_editor_export_plugin_android.cpp @@ -22,7 +22,7 @@ PackedStringArray SentryEditorExportPluginAndroid::_get_android_libraries(const PackedStringArray SentryEditorExportPluginAndroid::_get_android_dependencies(const Ref &p_platform, bool p_debug) const { PackedStringArray deps; // NOTE: All dependencies below must be also updated in build.gradle.kts. - deps.append("io.sentry:sentry-android:8.20.0"); + deps.append("io.sentry:sentry-android:8.21.0"); return deps; }