Skip to content

fix(deps): update dependency io.sentry:sentry to v8.17.0 #716

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 5, 2025

This PR contains the following updates:

Package Change Age Confidence
io.sentry:sentry 8.14.0 -> 8.17.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

getsentry/sentry-java (io.sentry:sentry)

v8.17.0

Compare Source

Features
  • Send Timber logs through Sentry Logs (#​4490)
    • Enable the Logs feature in your SentryOptions or with the io.sentry.logs.enabled manifest option and the SDK will automatically send Timber logs to Sentry, if the TimberIntegration is enabled.
    • The SDK will automatically detect Timber and use it to send logs to Sentry.
  • Send logcat through Sentry Logs (#​4487)
    • Enable the Logs feature in your SentryOptions or with the io.sentry.logs.enabled manifest option and the SDK will automatically send logcat logs to Sentry, if the Sentry Android Gradle plugin is applied.
    • To set the logcat level check the Logcat integration documentation.
  • Read build tool info from sentry-debug-meta.properties and attach it to events (#​4314)
Dependencies
  • Bump OpenTelemetry (#​4532)
    • opentelemetry-sdk to 1.51.0
    • opentelemetry-instrumentation to 2.17.0
    • opentelemetry-javaagent to 2.17.0
    • opentelemetry-semconv to 1.34.0
    • We are now configuring OpenTelemetry to still behave the same way it did before for span names it generates in GraphQL auto instrumentation (#​4537)
  • Bump Gradle from v8.14.2 to v8.14.3 (#​4540)
Fixes
  • Use Spring Boot Starter 3 in sentry-spring-boot-starter-jakarta (#​4545)
    • While refactoring our dependency management, we accidentally added Spring Boot 2 and Spring Boot Starter 2 as dependencies of sentry-spring-boot-starter-jakarta, which is intended for Spring Boot 3.
    • Now, the correct dependencies (Spring Boot 3 and Spring Boot Starter 3) are being added.

v8.16.0

Compare Source

Features
  • Send JUL logs to Sentry as logs (#​4518)
    • You need to enable the logs feature, either in sentry.properties:
      logs.enabled=true
    • Or, if you manually initialize Sentry, you may also enable logs on Sentry.init:
      Sentry.init(options -> {
        ...
        options.getLogs().setEnabled(true);
      });
    • It is also possible to set the minimumLevel in logging.properties, meaning any log message >= the configured level will be sent to Sentry and show up under Logs:
      io.sentry.jul.SentryHandler.minimumLevel=CONFIG
  • Send Log4j2 logs to Sentry as logs (#​4517)
    • You need to enable the logs feature either in sentry.properties:
      logs.enabled=true
    • If you manually initialize Sentry, you may also enable logs on Sentry.init:
      Sentry.init(options -> {
        ...
        options.getLogs().setEnabled(true);
      });
    • It is also possible to set the minimumLevel in log4j2.xml, meaning any log message >= the configured level will be sent to Sentry and show up under Logs:
      <Sentry name="Sentry"
          dsn="your DSN"
          minimumBreadcrumbLevel="DEBUG"
          minimumEventLevel="WARN"
          minimumLevel="DEBUG"
      />

v8.15.1

Compare Source

Fixes
  • Enabling Sentry Logs through Logback in Spring Boot config did not work in 3.15.0 (#​4523)

v8.15.0

Compare Source

Features
  • Add chipset to device context (#​4512)
Fixes
  • No longer send out empty log envelopes (#​4497)
  • Session Replay: Expand fix for crash on devices to all Unisoc/Spreadtrum chipsets (#​4510)
  • Log parameter objects are now turned into String via toString (#​4515)
    • One of the two SentryLogEventAttributeValue constructors did not convert the value previously.
  • Logs are now flushed on shutdown (#​4503)
  • User Feedback: Do not redefine system attributes for SentryUserFeedbackButton, but reference them instead (#​4519)
Features
  • Send Logback logs to Sentry as logs (#​4502)
    • You need to enable the logs feature and can also set the minimumLevel for log events:
      <appender name="sentry" class="io.sentry.logback.SentryAppender">
        <options>
          <!-- NOTE: Replace the test DSN below with YOUR OWN DSN to see the events from this app in your Sentry project/dashboard -->
          <dsn>https://502f25099c204a2fbf4cb16edc5975d1@&#8203;o447951.ingest.sentry.io/5428563</dsn>
          <logs>
            <enabled>true</enabled>
          </logs>
        </options>
        <!-- Demonstrates how to modify the minimum values -->
        <!-- Default for Events is ERROR -->
        <minimumEventLevel>WARN</minimumEventLevel>
        <!-- Default for Breadcrumbs is INFO -->
        <minimumBreadcrumbLevel>DEBUG</minimumBreadcrumbLevel>
        <!-- Default for Log Events is INFO -->
        <minimumLevel>INFO</minimumLevel>
      </appender>
    • For Spring Boot you may also enable it in application.properties / application.yml:
      sentry.logs.enabled=true
      sentry.logging.minimum-level=error
    • If you manually initialize Sentry, you may also enable logs on Sentry.init:
      Sentry.init(options -> {
        ...
        options.getLogs().setEnabled(true);
      });
    • Enabling via sentry.properties is also possible:
      logs.enabled=true
  • Automatically use SentryOptions.Logs.BeforeSendLogCallback Spring beans (#​4509)
Dependencies

Configuration

📅 Schedule: 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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update 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 added the dependencies Pull requests that update a dependency file label Apr 5, 2025
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.6.0 fix(deps): update dependency io.sentry:sentry to v8.7.0 Apr 8, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from c6a3bdc to 79850a6 Compare April 8, 2025 19:43
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.7.0 fix(deps): update dependency io.sentry:sentry to v8.8.0 Apr 14, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from 79850a6 to ff382e7 Compare April 14, 2025 19:08
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.8.0 fix(deps): update dependency io.sentry:sentry to v8.9.0 Apr 22, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch 2 times, most recently from 34b22d1 to 36c8465 Compare April 25, 2025 19:36
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.9.0 fix(deps): update dependency io.sentry:sentry to v8.10.0 Apr 25, 2025
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.10.0 fix(deps): update dependency io.sentry:sentry to v8.10.0 - autoclosed Apr 26, 2025
@renovate renovate bot closed this Apr 26, 2025
@renovate renovate bot deleted the renovate/io.sentry-sentry-8.x branch April 26, 2025 16:21
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.10.0 - autoclosed fix(deps): update dependency io.sentry:sentry to v8.10.0 Apr 29, 2025
@renovate renovate bot reopened this Apr 29, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from 5885361 to 36c8465 Compare April 29, 2025 17:11
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.10.0 fix(deps): update dependency io.sentry:sentry to v8.11.0 Apr 29, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch 2 times, most recently from a80be65 to 56d5687 Compare April 30, 2025 08:23
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.11.0 fix(deps): update dependency io.sentry:sentry to v8.11.1 Apr 30, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from 56d5687 to d4d0c96 Compare April 30, 2025 19:59
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from d4d0c96 to 50de93a Compare May 13, 2025 17:32
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.11.1 fix(deps): update dependency io.sentry:sentry to v8.12.0 May 13, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from 50de93a to ca50336 Compare May 16, 2025 19:39
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from ca50336 to 4e4d188 Compare May 26, 2025 16:38
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.12.0 fix(deps): update dependency io.sentry:sentry to v8.13.0 May 26, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from 4e4d188 to 6b531e3 Compare May 26, 2025 23:11
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.13.0 fix(deps): update dependency io.sentry:sentry to v8.13.1 May 26, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from 6b531e3 to fb33f8e Compare May 27, 2025 13:46
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.13.1 fix(deps): update dependency io.sentry:sentry to v8.13.2 May 27, 2025
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.13.2 fix(deps): update dependency io.sentry:sentry to v8.13.2 - autoclosed Jun 5, 2025
@renovate renovate bot closed this Jun 5, 2025
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.13.2 - autoclosed fix(deps): update dependency io.sentry:sentry to v8.13.2 Jun 12, 2025
@renovate renovate bot reopened this Jun 12, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from cf57c08 to fb33f8e Compare June 12, 2025 10:38
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.13.2 fix(deps): update dependency io.sentry:sentry to v8.13.3 Jun 12, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch 2 times, most recently from 80daec4 to 5d769bb Compare June 17, 2025 20:28
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.13.3 fix(deps): update dependency io.sentry:sentry to v8.14.0 Jun 17, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch 5 times, most recently from 4c0fb24 to e28c5f1 Compare June 18, 2025 14:45
Copy link

@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.14.0 fix(deps): update dependency io.sentry:sentry to v8.14.0 - autoclosed Jun 19, 2025
@renovate renovate bot closed this Jun 19, 2025
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.14.0 - autoclosed fix(deps): update dependency io.sentry:sentry to v8.14.0 Jun 25, 2025
@renovate renovate bot reopened this Jun 25, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from 03ce50e to e28c5f1 Compare June 25, 2025 17:04
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.14.0 fix(deps): update dependency io.sentry:sentry to v8.15.0 Jun 25, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch 2 times, most recently from 1704d1f to 69dc57c Compare June 26, 2025 14:04
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.15.0 fix(deps): update dependency io.sentry:sentry to v8.15.1 Jun 26, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from 69dc57c to 866cb03 Compare June 27, 2025 14:41
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.15.1 fix(deps): update dependency io.sentry:sentry to v8.16.0 Jun 27, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-8.x branch from 866cb03 to 55af429 Compare July 8, 2025 13:59
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry to v8.16.0 fix(deps): update dependency io.sentry:sentry to v8.17.0 Jul 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants