diff --git a/CHANGELOG.md b/CHANGELOG.md index ecc40f1b..093d3eb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,12 @@ - Fix `release` option not honored if set to a custom value in the project settings, and fix parsing of `app_name`/`app_version` replacement tokens if set via a configuration script. ([#276](https://github.com/getsentry/sentry-godot/pull/276)) - Remove `libatomic.so.1` dependency on Linux ([#278](https://github.com/getsentry/sentry-godot/pull/278)) +### Dependencies + +- Bump Sentry Android from v8.17.0 to v8.18.0 ([#282](https://github.com/getsentry/sentry-godot/pull/282)) + - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8180) + - [diff](https://github.com/getsentry/sentry-java/compare/8.17.0...8.18.0) + ## 1.0.0-alpha.2 ### Features diff --git a/android_lib/build.gradle.kts b/android_lib/build.gradle.kts index 1aa29466..a193f128 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.17.0") + implementation("io.sentry:sentry-android:8.18.0") } val copyDebugAarToProject by tasks.registering(Copy::class) { diff --git a/src/editor/sentry_editor_export_plugin_android.cpp b/src/editor/sentry_editor_export_plugin_android.cpp index 21d735c0..3277f85b 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.17.0"); + deps.append("io.sentry:sentry-android:8.18.0"); return deps; }