Skip to content

Latest commit

 

History

History
167 lines (117 loc) · 11 KB

CHANGELOG.md

File metadata and controls

167 lines (117 loc) · 11 KB

Changelog

Unreleased

Features

  • Detect SDK dependency version mismatches (#126)

    • The new validateSdkDependencyVersions goal verifies that all of the Sentry SDK dependencies included in your pom.xml have consistent versions
    • We recommend enabling this goal by adding
      <executions>
          <execution>
              <goals>
                  <goal>validateSdkDependencyVersions</goal>
              </goals>
          </execution>
      </executions>
      within your plugin tag for io.sentry:sentry-maven-plugin
    • The build will fail in the validate lifecycle phase if a version mismatch is detected
    • You can opt out of this check by disabling the validateSdkDependencyVersions goal or by adding
      <configuration>
          <skipValidateSdkDependencyVersions>true</skipValidateSdkDependencyVersions>
      </configuration>
      within your plugin tag for io.sentry:sentry-maven-plugin. This is not recommended, as using mismatched versions of the Sentry dependencies can introduce build time or run time failures and crashes.
  • Upgrade internal Sentry SDK to 8.4.0 (#134)

Dependencies

0.3.0

Dependencies

0.2.0

Dependencies

0.1.0

Features

  • Add AutoInstallStrategy for graphql-22 (#100)
  • More lenient handling of empty Maven modules (#103)
    • The Maven plugin now ignores Maven modules with empty source roots and instead of failing the build simply prints a log message
    • This allows the plugin to be configured in the root POM even if it does not have sources

Dependencies

0.0.8

Fixes

  • Fix isSaas check for telemetry (#66)
  • Escape spaces in paths (#64)

Features

  • Disable source upload via SENTRY_SKIP_SOURCE_UPLOAD environment variable (#65)

Dependencies

0.0.7

Fixes

  • Change telemetry DSN to point to production project (#54)

Dependencies

0.0.6

Features

  • Report dependencies (#22)
  • Send telemetry data for plugin usage (#28)
    • 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 <skipTelemetry>true</skipTelemetry> in the sentry plugin configuration block.
  • Add aarch64 sentry-cli (#39)
    • This is used when the build is executed inside a docker container on an Apple silicon chip (e.g. M1)
  • Allow usage of the plugin with JDK 8 (#37)
  • Add debug flag (#38)

Dependencies

0.0.5

Features

  • Add parameter to skip plugin execution (#17)
  • Auto-Install Sentry and Sentry integrations using Maven build extension (#10)
  • Auto-Update sentry-cli and Sentry Java SDK version (#12)

Dependencies

0.0.4

  • Download and Bundle sentry-cli with maven plugin (#8)

0.0.3

Features

  • Add support for building on Windows (#7)

Fixes

  • Also use url and authToken for upload command (#7)

0.0.2

Features

  • Initial version of sentry-maven-plugin