Skip to content
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

Update dependency io.sentry:sentry to v7.9.0 #226

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.sentry:sentry 7.1.0 -> 7.9.0 age adoption passing confidence

Release Notes

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

v7.9.0

Compare Source

Features
  • Add start_type to app context (#​3379)
  • Add ttid/ttfd contribution flags (#​3386)
Fixes
  • (Internal) Metrics code cleanup (#​3403)
  • Fix Frame measurements in app start transactions (#​3382)
  • Fix timing metric value different from span duration (#​3368)
  • Do not always write startup crash marker (#​3409)
    • This may have been causing the SDK init logic to block the main thread

v7.8.0

Compare Source

Features
  • Add description to OkHttp spans (#​3320)
  • Enable backpressure management by default (#​3284)
Fixes
  • Add rate limit to Metrics (#​3334)
  • Fix java.lang.ClassNotFoundException: org.springframework.web.servlet.HandlerMapping in Spring Boot Servlet mode without WebMVC (#​3336)
  • Fix normalization of metrics keys, tags and values (#​3332)

v7.7.0

Compare Source

Features
  • Add support for Spring Rest Client (#​3199)
  • Extend Proxy options with proxy type (#​3326)
Fixes
  • Fixed default deadline timeout to 30s instead of 300s (#​3322)
  • Fixed Fix java.lang.ClassNotFoundException: org.springframework.web.servlet.HandlerExceptionResolver in Spring Boot Servlet mode without WebMVC (#​3333)

v7.6.0

Compare Source

Features
  • Experimental: Add support for Sentry Developer Metrics (#​3205, #​3238, #​3248, #​3250)
    Use the Metrics API to track processing time, download sizes, user signups, and conversion rates and correlate them back to tracing data in order to get deeper insights and solve issues faster. Our API supports counters, distributions, sets, gauges and timers, and it's easy to get started:
    Sentry.metrics()
      .increment(
          "button_login_click", // key
          1.0,                  // value
          null,                 // unit
          mapOf(                // tags
              "provider" to "e-mail"
          )
      )
    To learn more about Sentry Developer Metrics, head over to our Java and Android docs page.

v7.5.0

Compare Source

Features
  • Add support for measurements at span level (#​3219)
  • Add enableScopePersistence option to disable PersistingScopeObserver used for ANR reporting which may increase performance overhead. Defaults to true (#​3218)
    • When disabled, the SDK will not enrich ANRv2 events with scope data (e.g. breadcrumbs, user, tags, etc.)
  • Configurable defaults for Cron - MonitorConfig (#​3195)
  • We now display a warning on startup if an incompatible version of Spring Boot is detected (#​3233)
    • This should help notice a mismatching Sentry dependency, especially when upgrading a Spring Boot application
  • Experimental: Add Metrics API (#​3205)
Fixes
  • Ensure performance measurement collection is not taken too frequently (#​3221)
  • Fix old profiles deletion on SDK init (#​3216)
  • Fix hub restore point in wrappers: SentryWrapper, SentryTaskDecorator and SentryScheduleHook (#​3225)
    • We now reset the hub to its previous value on the thread where the Runnable/Callable/Supplier is executed instead of setting it to the hub that was used on the thread where the Runnable/Callable/Supplier was created.
  • Fix add missing thread name/id to app start spans (#​3226)

v7.4.0

Compare Source

Features
  • Add new threshold parameters to monitor config (#​3181)
  • Report process init time as a span for app start performance (#​3159)
  • (perf-v2): Calculate frame delay on a span level (#​3197)
  • Resolve spring properties in @​SentryCheckIn annotation (#​3194)
  • Experimental: Add Spotlight integration (#​3166)
    • For more details about Spotlight head over to https://spotlightjs.com/
    • Set options.isEnableSpotlight = true to enable Spotlight
Fixes
  • Don't wait on main thread when SDK restarts (#​3200)
  • Fix Jetpack Compose widgets are not being correctly identified for user interaction tracing (#​3209)
  • Fix issue title on Android when a wrapping RuntimeException is thrown by the system (#​3212)
    • This will change grouping of the issues that were previously titled RuntimeInit$MethodAndArgsCaller to have them split up properly by the original root cause exception

v7.3.0

Compare Source

Features
  • Added App Start profiling
    • This depends on the new option io.sentry.profiling.enable-app-start, other than the already existing io.sentry.traces.profiling.sample-rate.
    • Sampler functions can check the new isForNextAppStart flag, to adjust startup profiling sampling programmatically.
      Relevant PRs:
    • Decouple Profiler from Transaction (#​3101)
    • Add options and sampling logic (#​3121)
    • Add ContentProvider and start profile (#​3128)
  • Extend internal performance collector APIs (#​3102)
  • Collect slow and frozen frames for spans using OnFrameMetricsAvailableListener (#​3111)
  • Interpolate total frame count to match span duration (#​3158)
Fixes
  • Avoid multiple breadcrumbs from OkHttpEventListener (#​3175)
  • Apply OkHttp listener auto finish timestamp to all running spans (#​3167)
  • Fix not eligible for auto proxying warnings (#​3154)
  • Set default fingerprint for ANRv2 events to correctly group background and foreground ANRs (#​3164)
    • This will improve grouping of ANRs that have similar stacktraces but differ in background vs foreground state. Only affects newly-ingested ANR events with mechanism:AppExitInfo
  • Fix UserFeedback disk cache name conflicts with linked events (#​3116)
Breaking changes
  • Remove HostnameVerifier option as it's flagged by security tools of some app stores (#​3150)
    • If you were using this option, you have 3 possible paths going forward:
      • Provide a custom ITransportFactory through SentryOptions.setTransportFactory(), where you can copy over most of the parts like HttpConnection and AsyncHttpTransport from the SDK with necessary modifications
      • Get a certificate for your server through e.g. Let's Encrypt
      • Fork the SDK and add the hostname verifier back
Dependencies

v7.2.0

Compare Source

Features
  • Handle monitor/check_in in client reports and rate limiter (#​3096)
  • Add support for graphql-java version 21 (#​3090)
Fixes
  • Avoid concurrency in AndroidProfiler performance data collection (#​3130)
  • Improve thresholds for network changes breadcrumbs (#​3083)
  • SchedulerFactoryBeanCustomizer now runs first so user customization is not overridden (#​3095)
    • If you are setting global job listeners please also add SentryJobListener
  • Ensure serialVersionUID of Exception classes are unique (#​3115)
  • Get rid of "is not eligible for getting processed by all BeanPostProcessors" warnings in Spring Boot (#​3108)
  • Fix missing release and other fields for ANRs reported with mechanism:AppExitInfo (#​3074)
Dependencies
  • Bump opentelemetry-sdk to 1.33.0 and opentelemetry-javaagent to 1.32.0 (#​3112)

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 becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title Update dependency io.sentry:sentry to v6.29.0 Update dependency io.sentry:sentry to v6.29.0 - autoclosed Sep 22, 2023
@renovate renovate bot closed this Sep 22, 2023
@renovate renovate bot deleted the renovate/sentry.version branch September 22, 2023 07:38
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v6.29.0 - autoclosed Update dependency io.sentry:sentry to v6.29.0 Sep 28, 2023
@renovate renovate bot reopened this Sep 28, 2023
@renovate renovate bot restored the renovate/sentry.version branch September 28, 2023 09:25
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v6.29.0 Update dependency io.sentry:sentry to v6.30.0 Sep 28, 2023
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v6.30.0 Update dependency io.sentry:sentry to v6.31.0 Oct 12, 2023
@renovate renovate bot force-pushed the renovate/sentry.version branch 2 times, most recently from 5c90473 to 98d47d1 Compare October 18, 2023 20:30
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v6.31.0 Update dependency io.sentry:sentry to v6.32.0 Oct 18, 2023
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v6.32.0 Update dependency io.sentry:sentry to v6.33.0 Nov 2, 2023
@renovate renovate bot force-pushed the renovate/sentry.version branch 2 times, most recently from 98577e3 to 9e8e843 Compare November 7, 2023 11:42
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v6.33.0 Update dependency io.sentry:sentry to v6.33.1 Nov 7, 2023
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v6.33.1 Update dependency io.sentry:sentry to v6.34.0 Nov 20, 2023
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v6.34.0 Update dependency io.sentry:sentry to v7.3.0 Feb 9, 2024
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.3.0 Update dependency io.sentry:sentry to v7.4.0 Feb 21, 2024
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.4.0 Update dependency io.sentry:sentry to v7.5.0 Mar 1, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch from 1bf9cee to 19b4ea0 Compare March 1, 2024 13:52
@renovate renovate bot force-pushed the renovate/sentry.version branch from 19b4ea0 to bbf5ea3 Compare March 8, 2024 18:18
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.5.0 Update dependency io.sentry:sentry to v7.6.0 Mar 8, 2024
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.6.0 Update dependency io.sentry:sentry to v7.7.0 Apr 8, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch from bbf5ea3 to 51cfa1c Compare April 8, 2024 10:31
@renovate renovate bot force-pushed the renovate/sentry.version branch from 51cfa1c to 8706d55 Compare April 9, 2024 14:13
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.7.0 Update dependency io.sentry:sentry to v7.8.0 Apr 9, 2024
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.8.0 Update dependency io.sentry:sentry to v7.9.0 May 9, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch from 8706d55 to 2757bc4 Compare May 9, 2024 11:23
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.

None yet

0 participants