Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion android_lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
3 changes: 1 addition & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -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" }

2 changes: 1 addition & 1 deletion src/editor/sentry_editor_export_plugin_android.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PackedStringArray SentryEditorExportPluginAndroid::_get_android_libraries(const
PackedStringArray SentryEditorExportPluginAndroid::_get_android_dependencies(const Ref<EditorExportPlatform> &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;
}

Expand Down
Loading