[#127] Update dependencies to current stable versions#128
Open
ssawchenko wants to merge 5 commits into
Open
Conversation
- compileSdk 34 → 35, minSdk 21 → 23 - AGP 8.5.2 → 8.13.2, Gradle wrapper 8.7 → 8.13 - Kotlin 2.0.0 → 2.4.0 (switch to jvmToolchain in library module) - Sentry 7.9.0 → 8.43.1, Sentry Gradle Plugin 4.5.1 → 6.10.0 - kotlinx-coroutines 1.9.0 → 1.11.0 - appcompat 1.7.0 → 1.7.1, constraintlayout 2.2.0 → 2.2.1, material 1.12.0 → 1.14.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- clearUserId: replace deprecated configureScope block with Sentry.setUser(null) - SentryDestination: replace removed extras property assignment with setExtras() Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s Android/Gradle/Kotlin and library dependencies to current stable versions, and adjusts Steamclog’s Sentry integration for Sentry Android SDK 8.x compatibility.
Changes:
- Bumped build/tooling versions (compileSdk/targetSdk 35, minSdk 23, AGP/Gradle/Kotlin updates, Sentry SDK + plugin updates, AndroidX/library updates).
- Updated Sentry usage to match 8.x APIs (
clearUserId()andSentryEventextras handling). - Added a v2.5 changelog entry.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| steamclog/src/main/java/com/steamclock/steamclog/Steamclog.kt | Updates user-clearing logic to the Sentry 8.x API. |
| steamclog/src/main/java/com/steamclock/steamclog/Destinations.kt | Updates SentryEvent extras assignment to the Sentry 8.x API. |
| steamclog/build.gradle | Raises minSdk to 23 and configures Kotlin toolchain for JDK 17. |
| gradle/wrapper/gradle-wrapper.properties | Updates Gradle wrapper to 8.13. |
| CHANGELOG.md | Adds v2.5 release notes entry. |
| build.gradle | Updates compileSdk/Kotlin/AGP/Sentry version pins. |
| app/build.gradle | Updates Sentry Gradle plugin version, raises minSdk, bumps sample app dependencies. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
munl
approved these changes
Jul 3, 2026
| id 'kotlin-android' | ||
| // Provides auto-uploading of proguard mappings to Sentry | ||
| id 'io.sentry.android.gradle' version '4.5.1' | ||
| id 'io.sentry.android.gradle' version '6.10.0' |
Collaborator
There was a problem hiding this comment.
i noticed there is a version 6.14.0. jsut wondering why we're keeping it at 6.10.0 instead?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue #127
clearUserId()andSentryEventextras assignmentTest plan
SC_CALL_STACK_INDEXassertion firingclog.error()andclog.fatal()appear in logcat with correct caller file/line tagclog.userReport()attaches log files to the Sentry event🤖 Generated with Claude Code