Skip to content

Latest commit

 

History

History
823 lines (543 loc) · 40.1 KB

CHANGELOG.md

File metadata and controls

823 lines (543 loc) · 40.1 KB

Changelog

4.6.0

Fixes

  • Do not include BuildConfig into source bundles (#705)
  • Fix misleading auth-token error message in case "sentry-cli info" fails (#708)

Dependencies

4.5.1

Fixes

  • Fix auth-token error for ProGuard mapping upload, even when mapping upload is disabled (fixed with sentry-cli 2.31.1)

Dependencies

4.5.0

Fixes

  • Remove excessive info logging (#696)

Dependencies

4.4.1

Fixes

  • Fix circular depencency issue between mergeAssets and minify tasks (#682)
  • Fix sentry-cli not being extracted prior to task execution (#691)

4.4.0

Fixes

  • Do not pollute build classpath with groovy dependencies (#677)
  • Ensure sentry-cli works well with configuration cache (#675)
  • Fix circular task dependency in combination with DexGuard plugin (#678)

Dependencies

4.3.1

Fixes

  • Do not pollute build classpath with groovy dependencies (#660)
  • Do not execute minifyWithR8 task when running tests with isIncludeAndroidResources enabled (#662)
  • Make tasks with reproducible inputs Cacheable (#664)
    • SentryGenerateIntegrationListTask
    • SentryGenerateDebugMetaPropertiesTask
    • GenerateBundleIdTask
    • SentryGenerateProguardUuidTask

Dependencies

4.3.0

Fixes

  • Bundle ASM version within the plugin and bump it to 9.4 (#637)
    • This should fix the java.lang.AssertionError: Class with incorrect id found exception when using kotlinx.serialization
  • Fall back to findTask if assembleProvider of AndroidVariant is null when hooking source bundle and native symbols upload tasks (#639)
  • Hook source context tasks to also run after install{Variant} tasks (#643)
  • Do not run sentry-cli commands if telemetry is disabled (#648)
  • Proguard and source context tasks don't run on every build (#634)
    • Proguard UUID task now depends on the proguard mapping file. I.e. it will only run if the mapping file has changed
    • Source context tasks now depend on source file changes, if there are no source changes, the tasks won't run

Dependencies

4.2.0

Features

  • Consider sentry-bom version when auto-installing integrations and the SDK (#625)

Fixes

  • Support Room kotlin codegen (#630)
  • Make sentry-cli path calculation configuration-cache compatible (#631)
    • This will prevent build from failing when e.g. switching branches with stale configuration cache
  • Fix FacebookInitProvider instrumentation (#633)

Dependencies

4.1.1

Fixes

  • Fix VerifyError when optimized code is instrumented (#619)

Dependencies

4.1.0

Features

  • Do not consider user-defined sentry versions when auto-installing integrations. This is necessary because we want to align integrations versions to the same one as one of sentry-android-core/sentry/sentry-android/sentry-spring-boot to prevent runtime crashes due to binary incompatibility. (#602)
    • If you have directly defined one of the core versions, we will use that to install integrations, otherwise autoInstallation.sentryVersion or the default bundled SDK version is used.

This means if you have defined something like that:

// direct deps
dependencies {
  implementation("io.sentry:sentry-android-core:7.0.0")
  implementation("io.sentry:sentry-android-okhttp:6.34.0")
}

// or with the gradle plugin
sentry {
  autoInstallation.sentryVersion = '7.0.0' // or the latest version bundled within the plugin
}

dependencies {
  implementation("io.sentry:sentry-android-okhttp:6.34.0")
}

Then in both cases it will use 7.0.0 when installing the sentry-android-okhttp integration and print a warning that we have overridden the version.

  • Add aarch64 sentry-cli (#611)

    • This is used when the build is executed inside a docker container on an Apple silicon chip (e.g. M1)
  • Instrument ContentProvider/Application onCreate calls to measure app-start performance (#565)

    • This feature requires the sentry-java SDK version 7.1.0 and is enabled by default
    • To disable the feature, set sentry.tracingInstrumentation.appStart.enabled to false
sentry {
  tracingInstrumentation {
    appStart {
      enabled.set(false)
    }
  }
}

Fixes

  • Fix sentry-cli url parameter position (#610)

Dependencies

4.0.0

Version 4 of the Sentry Android Gradle plugin brings a variety of features and fixes. The most notable changes are:

  • Bump Sentry Android SDK to 7.0.0. Please, refer to the changelog of the SDK for more details
  • Rename experimentalGuardsquareSupport flag to dexguardEnabled
  • Add new excludes option to allow excluding certain classes from instrumentation. It's available under the sentry.tracingInstrumentation extension

Sentry Android SDK Compatibility

Make sure to use Sentry Gradle plugin 4.+ together with the Sentry Android SDK 7.+, otherwise it might crash at runtime due to binary incompatibility. (E.g. if you're using -timber, -okhttp or other packages)

If you can't do that for some reason, you can specify sentry version via the plugin config block:

sentry {
  autoInstallation {
    sentryVersion.set("7.0.0")
  }
}

Similarly, if you have a Sentry SDK (e.g. sentry-android-core) dependency on one of your Gradle modules and you're updating it to 7.+, make sure the Gradle plugin is at 4.+ or specify the SDK version as shown in the snippet above.

Breaking Changes

  • Rename experimentalGuardsquareSupport flag to dexguardEnabled (#589)
  • Bump Sentry Android SDK to 7.0.0

Other Changes

Features

  • Print a warning if the Sentry plugin is not applied on the app module (#586)
  • Add new excludes option to exclude classes from instrumentation (#590)
  • Send telemetry data for plugin usage (#582)
    • This will collect errors and timings of the plugin and its tasks (anonymized, except the sentry org id), so we can better understand how the plugin is performing. If you wish to opt-out of this behavior, set telemetry = false in the sentry plugin configuration block.

Chores

  • Change cli command from upload-dif to debug-files upload for native symbols (#587)
  • Use new AGP api for native symbols upload (#592)

Dependencies

3.14.0

Features

  • Add url option which is passed through to sentry-cli (#572)
    • In case you are self hosting Sentry, you can set url to your self hosted instance if your org auth token does not contain a URL
  • Provide detailed message for failed sentry-cli API requests (#576)

Fixes

  • Use spring-boot instead of spring-boot-starter for auto install detection (#543)
  • Fix tracing instrumentation not working when configuration-cache is enabled on Gradle 8+ (#568)
  • Fix source context not working with configuration cache enabled on Gradle 8+ (#570)
  • Make proguard release association backward-compatible (#576)

Dependencies

3.13.0

Features

  • Auto install sentry-quartz if quartz is installed (#562)

Internal

  • Change room span op name to db.sql.room (#557)

Fixes

  • Reduce log level from warn to info for some auto install messages (#553)
    • There was some confusion especially around our Spring and Spring Boot integrations where we offer a different set of dependencies for Spring 5 (sentry-spring), Spring 6 (sentry-spring-jakarta), Spring Boot 2 (sentry-spring-boot) and Spring Boot 3 (sentry-spring-boot-jakarta) where there's always going to be one that's installed and one that's not installed.

Dependencies

3.12.0

Features

  • Add release information args to proguard mapping upload task (#476)
    • Requires Sentry version >=23.7.2 if you're using self-hosted
  • Auto install Sentry integrations for Java Backend, Desktop, etc. (#521)
  • Use Spring Boot autoconfigure modules (sentry-spring-boot and sentry-spring-boot-jakarta) for auto install (#542)

Fixes

  • Disable source context tasks if not enabled (#536)

Dependencies

3.11.1

Fixes

  • Fixed OkHttpEventListener crash at runtime with OkHttp4 (#514)

Dependencies

3.11.0

Features

  • Add OkHttpEventListener automatically (#504)
  • New Sqlite instrumentation (#502)
    • This integration replaces the old database instrumentation with the sentry-android-sqlite integration
    • Any implementation of SupportSQLiteOpenHelper.Factory is now supported

3.10.0

Dependencies

3.9.0

Fixes

  • Rename project to projectName in SentryPluginExtension (#505)
  • No longer ignore org and projectName in sentry config block (#501)

3.8.0

Features

  • Create a new Sentry Gradle plugin with ID io.sentry.jvm.gradle for Java Backend, Desktop etc. (#495)
  • Source Context for Java (#495)
    • To enable it apply the io.sentry.jvm.gradle plugin and set includeSourceContext to true
    • For more information on how to enable source context, please refer to #633
  • Allow setting sentry properties via the sentry plugin extension (#500)

Dependencies

3.7.0

Features

  • Bundle Java Sources and upload to Sentry (#472)
    • For more information on how to enable source context, please refer to #633
    • Requires Sentry version >=23.5.0 if you're using self-hosted
  • New debug option to enable debug logging for sentry-cli (#472)

Fixes

  • Add missing Kotlin Compiler Plugin Marker config (#488)

Dependencies

3.6.0

Features

  • Add Kotlin Compiler plugin to enrich Composable functions (#452)

Fixes

  • Do not transform the sdk name to Int in BootstrapAndroidSdk (#478)

Dependencies

3.5.0

Features

  • Add support for Logcat (#455)
  • Write enabled instrumentations to manifest (#441)

Dependencies

3.4.3

Fixes

  • Make plugin Gradle 8 compatible (#428)
  • Fix uploadSentryNativeSymbols task for Gradle 8 (#447)

Dependencies

3.4.2

Fixes

  • Fix failing room 2.5.0 instrumentation (#435)

Dependencies

3.4.1

Fixes

  • Fix AGP 7.4.0 incompatibility when merging assets (#431)

Dependencies

3.4.0

Features

  • Support configuration cache in dependencies report task from Gradle 7.5 onwards (#423)

Fixes

  • Do not register dependencies report task if it's disabled (#422)
  • Ensure clean state before generating a new uuid by deleting the old sentry-debug-meta.properties file (#420)

Dependencies

3.3.0

Features

  • Populate events with dependencies metadata (#396)
  • Add auto-instrumentation for compose navigation (#392)

Dependencies

3.2.1

Fixes

  • Ignore minified classes from any instrumentation (#389)
  • Fix short class names should not be flagged as minified (#398)

Dependencies

3.2.0

Dependencies

3.1.7

Features

3.1.6

Features

Fixes

  • Update DirectoryProperty to use @InputDirectory (#374)

3.1.5

Features

3.1.4

Features

Fixes

  • Detect minified classes and skip instrumentation to avoid build problems (#362)

3.1.3

Features

Fixes

  • Skip jar processing on AGP < 7.1.2 for signed multi release jars (#334)
  • Fix OkHttp version 3.x was not instrumented (#351)

3.1.2

Features

  • Bump sentry runtime SDK version to 6.1.3 (#333)

3.1.1

Features

  • Bump sentry runtime SDK version to 6.1.0 (#321)

Fixes

  • Fix OkHttp auto-instrumentation crash, when sentry-android-okhttp is not present on classpath (#327)

3.1.0

Features

  • Auto-install sentry-android SDK and integration dependencies (fragment, timber, okhttp) (#282)
  • OkHttp auto-instrumentation (#288)

Fixes

  • Ignore R8 minified libs from instrumentation (#316)
  • obfuscated libs instrumentation (adcolony) (#307)

3.1.0-beta.2

Fixes

  • Ignore R8 minified libs from instrumentation (#316)

3.1.0-beta.1

  • Fix: obfuscated libs instrumentation (adcolony) (#307)

3.0.1

  • Fix: obfuscated libs instrumentation (gms) (#303)

3.1.0-alpha.1

  • Feature: Auto-install sentry-android SDK and integration dependencies (fragment, timber, okhttp) (#282)
  • Feature: OkHttp auto-instrumentation (#288)

3.0.0

  • Bump: AGP to 7.1.2 (#287)
  • Feature: Add support for GuardSquare's Proguard (#263) by @cortinico
  • Feature: Add support for GuardSquare's Dexguard (#267) by @cortinico
  • Bump: sentry-cli 1.72.0 which prevent daemonize mode from crashing upload process (#262) by @cortinico
  • Introduce the includeProguardMapping option to exclude the proguard logic, and deprecate autoUpload in favor of autoUploadProguardMapping (#240) by @cortinico
  • Feature: New File I/O auto-instrumentation (#249)
  • Feature: Add compile-time check for sentry-android SDK presence (#243)
  • Fix: Correctly add the proguard UUID output directory to the source set (#226)
  • Feature: Make the ignoreXXX properties in SentryPluginExtension sets (#225)
  • Add support for dry-run on upload native symbols (#209)
  • Feature: Add support for M1 Macs (#204)
  • Feature: Auto-instrumentation for androidx.sqlite and androidx.room (#180)

Breaking changes

  • The min AGP version required is 7.0.0

See the migration guide on our documentation.

3.0.0-rc.3

  • Fix MetaInfStripTransform breaking Kotlin Gradle and IDE plugin (#291)

3.0.0-rc.2

  • Bump: AGP to 7.1.2 (#287)

3.0.0-rc.1

  • Feature: Add support for GuardSquare's Proguard (#263)
  • Feature: Add support for GuardSquare's Dexguard (#267)
  • Fix: Do not resolve dependencies at configuration time (#278)

3.0.0-beta.4

  • Fix: Strip out unsupported java classes from META-INF/ (so AGP does not fail before our code is reached) (#264)
  • Bump sentry-cli 1.72.0 which prevent daemonize mode from crashing upload process (#262)
  • Fix: Incompatibilities with other Gradle plugins using the same API from AGP for bytecode instrumentation (#270)

3.0.0-beta.3

  • Introduce the includeProguardMapping option to exclude the proguard logic, and deprecate autoUpload in favor of autoUploadProguardMapping (#240)
  • Feature: New File I/O auto-instrumentation (#249)
  • Feature: Add compile-time check for sentry-android SDK presence (#243)
  • Feature: New configuration option tracingInstrumentation.features to allow enabling/disabling certain features for auto-instrumentation (#245)

3.0.0-beta.2

  • Fix: Correctly add the proguard UUID output directory to the source set (#226)
  • Feature: Make the ignoreXXX properties in SentryPluginExtension sets (#225)
  • Expose SentryPluginExtension.tracingInstrumentation (#229)
  • Ref: Change Room queries description to Dao class name (#232)
  • Fix: Log broken bytecode when build fails (#233)
  • Ref: Change db operation names (#237)

3.0.0-beta.1

  • Fix: Associate spans and events when it throws (#219)

3.0.0-alpha.2

  • Fix: Do not throw exceptions in case something goes wrong with instrumentation (#217)
  • Add support for dry-run on upload native symbols (#209)

3.0.0-alpha.1

  • Feat: Add support for M1 Macs (#204)
  • Feat: Auto-instrumentation for androidx.sqlite and androidx.room (#180)

Breaking changes

  • The min AGP version required is 7.0.0
  • The min Sentry's Android SDK is 4.0.0

See the migration guide on our documentation.

2.1.5

  • Bump: AGP to 7.0.2 (#193)
  • Bump sentry-cli 1.69.1 which includes a fix for Dart debug symbols (#191)

2.1.4

  • Fix: Pass buildDir as task input (#166)

2.1.3

  • Fix: Use task logger instead of project logger (#165)

2.1.2

  • Bump: AGP to 4.2.2 (#106)
  • Fix: missing sentry-cli on embedded resources (#162)

2.1.1

  • Enhancement: Avoid Eager Task Configuration (#156)
  • Fix: Do not hardcode the build/ folder (#158)

2.1.1-beta.2

  • No documented changes.

2.1.1-beta.1

  • No documented changes.

2.1.0

  • Feature: Add support for variant filtering. (#140)

2.0.1

  • Fix: Only upload debug symbols for non debuggable App. (#139)

2.0.0

This release comes with a full rewrite of the Sentry Gradle Plugin.

Here is the Migration Guide.

Improvements:

  • Using lazily Providers
  • Support for Configuration Avoidance
  • Only try to upload mapping file if minifyEnabled is enabled
  • Plugin Marker is published, so you may use the plugins block
  • Rewritten in Kotlin
  • Unit and Integration tests
  • CI Matrix that runs against different AGP/Gradle/Java and OS versions

Breaking changes:

  • Sentry Android Gradle Plugin requires Android Gradle Plugin >= 4.0.0
  • The autoProguardConfig flag has been removed

Changes:

  • Bump: sentry-cli to 1.65.0 (#133)
  • Bump: Gradle 7.0.2 (#135)

Thank you:

  • @cortinico for coding most of it.
  • @ansman for driving the first PoC of the full rewrite.
  • @cerisier for EA and small fixes.

2.0.0-beta.3

  • Enhancement: Clean up deprecated/removed Dex and Transform tasks (#130)

2.0.0-beta.2

  • Enhancement: Use pluginManager instead of project.afterEvaluate (#119)
  • Enhancement: Use assembleTaskProvider lazily (#121)
  • Enhancement: Use packageProvider lazily (#125)
  • Enhancement: Use mappingFileProvider lazily (#128)

2.0.0-beta.1

  • Feat: Support Configuration Avoidance (#112)
  • Fix: Silence the warning for missing mapping file on variants that don't enable minification (#111)
  • Bump: sentry-cli to 1.64.1

2.0.0-alpha.3

  • Fix: Only wire upload mapping task if minifyEnabled (#86) @cerisier

2.0.0-alpha.2

  • Fix: Publish Plugin Marker on maven central @marandaneto

2.0.0-alpha.1

  • Feat: Gradle plugin v2 (#50) @cortinico
  • Enhancement: Allow module level sentry properties file (#33) @MatthewTPage

1.x