Skip to content

fix(deps): update sentry to v6 (major)#367

Open
renovate[bot] wants to merge 1 commit intotrunkfrom
renovate/major-sentry
Open

fix(deps): update sentry to v6 (major)#367
renovate[bot] wants to merge 1 commit intotrunkfrom
renovate/major-sentry

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 8, 2025

This PR contains the following updates:

Package Change Age Confidence
io.sentry.android.gradle 4.6.06.5.0 age confidence
io.sentry.android.gradle:io.sentry.android.gradle.gradle.plugin 4.6.06.5.0 age confidence

Release Notes

getsentry/sentry-android-gradle-plugin (io.sentry.android.gradle)

v6.5.0

Compare Source

Dependencies

v6.4.0

Compare Source

Dependencies

v6.3.0

Compare Source

Dependencies

v6.2.0

Compare Source

Features
  • (Experimental) Wire VCS info extension to snapshot uploads for git metadata support (#​1102)
Dependencies

v6.1.0

Compare Source

Features
  • Add install groups support for Build Distribution to control update visibility between distribution channels (#​1070)
Dependencies

v6.0.0

Compare Source

Breaking Changes

This version introduces sentry-cli 3.0.0. Sentry-cli 3.0.0 and above only officially supports Sentry SaaS and Sentry self-hosted versions 25.11.1 and higher. While many Sentry CLI features may, in practice, continue working with some older Sentry versions, continued support for Sentry versions older than 25.11.1 is not guaranteed. You can use an older version of this plugin if you need support for older Sentry self-hosted versions.

  • Drop support for Android Gradle Plugin 7.3.X and below. To continue to use 7.3.X and below use Sentry Android Gradle Plugin 5.12.x. (#​911)
  • Minimum supported Kotlin language version is now 1.8 (#​935)
Features
Fixes
  • Enable caching for BundleSourcesTask (#​894)
  • Add support for Kotlin 2.2.0 for Sentry Kotlin Compiler Plugin (#​944)
  • Fix compatibility with Kotlin 2.3.0 (#​1046)
  • Sentry dependencies intended for Spring Boot 3 / Spring 6 will no longer be installed for Spring Boot 4 / Spring 7 (#​980)
  • Allow lazily configured version details for ProGuard mappings (#​974)
  • Fix Modifier.sentryTag() not found warning (#​997)
  • Fix reproducible builds by writing sentry-debug-meta.properties without timestamps (#​876)
  • Skip generating sentry-debug-meta.properties when includeProguardMapping and includeSourceContext are disabled (#​1047)
  • Fix proguard mapping tasks compatibility with Kotlin/Compose 2.3.0 (#​1054)
  • Include root project check in preMerge task (#​1006)
  • Set SENTRY_PIPELINE environment variable for all sentry-cli invocations (#​1036)
  • Stop passing deprecated parameters to sentry-cli (#​1015)
  • Rename orgAuthToken to distributionAuthToken (#​1025)
  • Remove null conventions from VcsInfoExtension (#​983)
Internal
  • Add Google Truth for easier to debug assertions in tests (#​920)
  • Generate AGP/Gradle compatibility matrix dynamically (#​873)
Dependencies

v5.12.2

Compare Source

Fixes
  • Fix compatibility with AGP 9.x when uploading proguard mappings (#​1021)

v5.12.1

Compare Source

Fixes
  • Fix Modifier.sentryTag() not found warning (#​997)

v5.12.0

Compare Source

Dependencies

v5.11.0

Compare Source

Features
  • Auto install Spring Boot 4 (sentry-spring-boot-4) and Spring 7 (sentry-spring-7) modules (#​980)
  • Include version in dependency auto install messages (#​979)
Fixes
  • Sentry dependencies intended for Spring Boot 3 / Spring 6 will no longer be installed for Spring Boot 4 / Spring 7 (#​980)
Dependencies

v5.10.0

Compare Source

Dependencies

v5.9.0

Compare Source

Dependencies

v5.8.1

Compare Source

Fixes
  • Add support for Kotlin 2.2.0 for Sentry Kotlin Compiler Plugin (#​944)

v5.8.0

Compare Source

Dependencies

v5.7.0

Compare Source

Dependencies

v5.6.0

Compare Source

Dependencies

v5.5.0

Compare Source

Fixes
  • Fix another API incompatibility with Kotlin 2.1.20 (#​871)
Dependencies

v5.4.0

Compare Source

Fixes
  • Kotlin Compiler Plugin: Fix API incompatibility with Kotlin 2.1.20 (#​857)
  • Make SentryGenerateIntegrationListTask configuration-cache compatible (#​866)
Internal
  • Migrate Dependencies to Gradle version catalog (#​712)
  • Integrate spotless + ktfmt instead of ktlint (#​849)
Dependencies

v5.3.0

Compare Source

Features
  • Allow sentry-opentelemetry-agentless and sentry-opentelemetry-agentless-spring to determine the SDK version to install (#​841)
Fixes
  • Ensure InjectSentryDebugMetaPropertiesTask deletes the output folder before writing into it (#​838)
  • Avoid excessive sentry-cli search logs at info level (#​842)
Internal
  • Switch to a newer setup-gradle github action (#​654)
Dependencies

v5.2.0

Compare Source

Dependencies

v5.1.0

Compare Source

Dependencies

v5.0.0

Compare Source

Intro

Version 5.0 of the sentry-android-gradle-plugin uses the latest major version of the Java/Android SDK (8.0.0).
We plan to do another major release within the next few months, which will contain more functional changes.
You can see what exactly we're planning and track progress in #​825.

Fixes
  • Ensure DexGuard flavor/buildtype mapping files are respected as well (#​822)
Dependencies

v4.14.1

Compare Source

Dependencies

v4.14.0

Compare Source

Features
  • Add AutoInstallStrategy for graphql-22 (#​781)
  • New experimental option to upload proguard mappings chunked. Set the env variable to try it out: export SENTRY_EXPERIMENTAL_PROGUARD_CHUNK_UPLOAD=1
    • This should prevent intermittent 502: Bad Gateway errors when uploading proguard mappings
Dependencies

v4.13.0

Compare Source

Dependencies

v4.12.0

Compare Source

Fixes
  • Invalidate instrumentation cache when changing instrumentation features (#​753)
Dependencies

v4.11.0

Compare Source

Fixes
  • Fix plugin for spring-dependency-management 1.1.6 (#​741)
  • Make SentryUploadNativeSymbolsTask configuration-cache compatible (#​747)
  • Fix permission denied error when extracting sentry-cli concurrently (#​748)
  • Make SentryGenerateProguardUuidTask produce deterministic output based on the mapping file contents (#​750)
    • This disables caching for the SentryGenerateProguardUuidTask task in favour of deterministic UUID generation. The task will always run but will always produce the same UUID for the same mapping file.
Dependencies

v4.10.0

Compare Source

Features
  • Session Replay Public Beta (#​3339)

    The Gradle plugin pulls in the io.sentry:sentry-android:7.12.0 dependency and enables Session Replay through it. To enable Replay use the sessionReplay.sessionSampleRate or sessionReplay.errorSampleRate experimental options.

    import io.sentry.SentryReplayOptions
    import io.sentry.android.core.SentryAndroid
    
    SentryAndroid.init(context) { options ->
     
      // Currently under experimental options:
      options.experimental.sessionReplay.sessionSampleRate = 1.0 // We suggest 0.1 in production (10% sessions sampled)
      options.experimental.sessionReplay.errorSampleRate = 1.0
    
      // To change default redaction behavior (defaults to true)
      options.experimental.sessionReplay.redactAllImages = true
      options.experimental.sessionReplay.redactAllText = true
    
      // To change quality of the recording (defaults to MEDIUM)
      options.experimental.sessionReplay.quality = SentryReplayOptions.SentryReplayQuality.MEDIUM // (LOW|MEDIUM|HIGH)
    }

    To learn more visit Sentry's Mobile Session Replay documentation page.

Fixes
  • Only apply Jetpack Compose instrumentation if Modifier class is available (#​727)
Dependencies

v4.9.0

Compare Source

Fixes
  • Auto install and instrument sentry-okhttp instead of sentry-android-okhttp on v7+ (#​724)
  • Fix source bundles with configuration cache on AGP 8+ (#​725)
Dependencies

v4.8.0

Compare Source

Fixes
  • Add missing copyFlutterAssets task dependency for Flutter (#​723)
Dependencies

v4.7.1

Compare Source

Fixes
  • Fix support for Kotlin K2 compiler plugin (#​720)

v4.7.0

Compare Source

Features
  • Add support for Kotlin K2 compiler plugin (#​716)

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/major-sentry branch from b611d77 to 4a0e70b Compare February 13, 2025 16:59
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 4a0e70b to f338985 Compare February 27, 2025 18:33
@renovate renovate Bot force-pushed the renovate/major-sentry branch from f338985 to 7ff7138 Compare April 23, 2025 12:04
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 7ff7138 to 59e11a7 Compare May 5, 2025 11:36
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 59e11a7 to 03bccb6 Compare May 19, 2025 12:24
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 03bccb6 to 92deeb2 Compare May 28, 2025 14:06
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 92deeb2 to 2cae207 Compare June 23, 2025 10:48
@renovate renovate Bot force-pushed the renovate/major-sentry branch 2 times, most recently from d9b3b76 to 7f4fad4 Compare August 12, 2025 11:30
@renovate renovate Bot force-pushed the renovate/major-sentry branch 2 times, most recently from 5ba0012 to 5e6eb57 Compare September 12, 2025 06:53
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 5e6eb57 to 46fa47a Compare September 23, 2025 10:45
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 46fa47a to 1be4a6d Compare October 3, 2025 13:35
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 1be4a6d to ec83388 Compare November 3, 2025 18:40
@renovate renovate Bot force-pushed the renovate/major-sentry branch from ec83388 to 2ff81af Compare January 26, 2026 10:43
@renovate renovate Bot changed the title fix(deps): update sentry to v5 (major) fix(deps): update sentry to v6 (major) Jan 26, 2026
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 2ff81af to 1d8159c Compare February 19, 2026 13:01
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 1d8159c to dd834de Compare March 18, 2026 13:04
@renovate renovate Bot force-pushed the renovate/major-sentry branch from dd834de to 0a37b8a Compare March 26, 2026 18:16
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 0a37b8a to 38430d4 Compare April 9, 2026 13:50
@renovate renovate Bot force-pushed the renovate/major-sentry branch from 38430d4 to 6a0eb20 Compare April 23, 2026 14:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants