diff --git a/CHANGELOG.md b/CHANGELOG.md index 535a4ee4..affb28f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Unreleased + +### Dependencies + +- Bump Sentry Android from v8.25.0 to v8.26.0 ([#444](https://github.com/getsentry/sentry-godot/pull/444)) + - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8260) + - [diff](https://github.com/getsentry/sentry-java/compare/8.25.0...8.26.0) + ## 1.1.1 ### Fixes diff --git a/android_lib/build.gradle.kts b/android_lib/build.gradle.kts index 2bc9e3aa..dca5a9e9 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.25.0") + implementation("io.sentry:sentry-android:8.26.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 16136884..3d696449 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.25.0"); + deps.append("io.sentry:sentry-android:8.26.0"); return deps; }