Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.12.1 #4

Closed
renovate-bot wants to merge 1 commits from renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x into master
Contributor

This PR contains the following updates:

Package Type Update Change
io.sentry:sentry-spring-boot-starter-jakarta compile minor 7.8.0 -> 7.12.1

Release Notes

getsentry/sentry-java (io.sentry:sentry-spring-boot-starter-jakarta)

v7.12.1

Compare Source

Fixes
  • Check app start spans time and ignore background app starts (#​3550)
    • This should eliminate long-lasting App Start transactions

v7.12.0

Compare Source

Features
  • Session Replay Public Beta (#​3339)

    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
      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.

v7.11.0

Compare Source

Features
Fixes
  • Fix duplicate session start for React Native (#​3504)
  • Move onFinishCallback before span or transaction is finished (#​3459)
  • Add timestamp when a profile starts (#​3442)
  • Move fragment auto span finish to onFragmentStarted (#​3424)
  • Remove profiling timeout logic and disable profiling on API 21 (#​3478)
  • Properly reset metric flush flag on metric emission (#​3493)
  • Use SecureRandom in favor of Random for Metrics (#​3495)
  • Fix UncaughtExceptionHandlerIntegration Memory Leak (#​3398)
  • Deprecated User.segment. Use a custom tag or context instead. (#​3511)
  • Fix duplicated http spans (#​3526)
  • When capturing unhandled hybrid exception session should be ended and new start if need (#​3480)
Dependencies

v7.10.0

Compare Source

Features
  • Publish Gradle module metadata (#​3422)
Fixes
  • Fix faulty span.frame_delay calculation for early app start spans (#​3427)
  • Fix crash when installing ShutdownHookIntegration and the VM is shutting down (#​3456)

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

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 Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [io.sentry:sentry-spring-boot-starter-jakarta](https://github.com/getsentry/sentry-java) | compile | minor | `7.8.0` -> `7.12.1` | --- ### Release Notes <details> <summary>getsentry/sentry-java (io.sentry:sentry-spring-boot-starter-jakarta)</summary> ### [`v7.12.1`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7121) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.12.0...7.12.1) ##### Fixes - Check app start spans time and ignore background app starts ([#&#8203;3550](https://github.com/getsentry/sentry-java/pull/3550)) - This should eliminate long-lasting App Start transactions ### [`v7.12.0`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7120) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.11.0...7.12.0) ##### Features - Session Replay Public Beta ([#&#8203;3339](https://github.com/getsentry/sentry-java/pull/3339)) To enable Replay use the `sessionReplay.sessionSampleRate` or `sessionReplay.errorSampleRate` experimental options. ```kotlin import io.sentry.SentryReplayOptions import io.sentry.android.core.SentryAndroid SentryAndroid.init(context) { options -> // Currently under experimental options: options.experimental.sessionReplay.sessionSampleRate = 1.0 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](https://docs.sentry.io/product/explore/session-replay/mobile/) documentation page. ### [`v7.11.0`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7110) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.10.0...7.11.0) ##### Features - Report dropped spans ([#&#8203;3528](https://github.com/getsentry/sentry-java/pull/3528)) ##### Fixes - Fix duplicate session start for React Native ([#&#8203;3504](https://github.com/getsentry/sentry-java/pull/3504)) - Move onFinishCallback before span or transaction is finished ([#&#8203;3459](https://github.com/getsentry/sentry-java/pull/3459)) - Add timestamp when a profile starts ([#&#8203;3442](https://github.com/getsentry/sentry-java/pull/3442)) - Move fragment auto span finish to onFragmentStarted ([#&#8203;3424](https://github.com/getsentry/sentry-java/pull/3424)) - Remove profiling timeout logic and disable profiling on API 21 ([#&#8203;3478](https://github.com/getsentry/sentry-java/pull/3478)) - Properly reset metric flush flag on metric emission ([#&#8203;3493](https://github.com/getsentry/sentry-java/pull/3493)) - Use SecureRandom in favor of Random for Metrics ([#&#8203;3495](https://github.com/getsentry/sentry-java/pull/3495)) - Fix UncaughtExceptionHandlerIntegration Memory Leak ([#&#8203;3398](https://github.com/getsentry/sentry-java/pull/3398)) - Deprecated `User.segment`. Use a custom tag or context instead. ([#&#8203;3511](https://github.com/getsentry/sentry-java/pull/3511)) - Fix duplicated http spans ([#&#8203;3526](https://github.com/getsentry/sentry-java/pull/3526)) - When capturing unhandled hybrid exception session should be ended and new start if need ([#&#8203;3480](https://github.com/getsentry/sentry-java/pull/3480)) ##### Dependencies - Bump Native SDK from v0.7.0 to v0.7.2 ([#&#8203;3314](https://github.com/getsentry/sentry-java/pull/3314)) - [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#072) - [diff](https://github.com/getsentry/sentry-native/compare/0.7.0...0.7.2) ### [`v7.10.0`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7100) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.9.0...7.10.0) ##### Features - Publish Gradle module metadata ([#&#8203;3422](https://github.com/getsentry/sentry-java/pull/3422)) ##### Fixes - Fix faulty `span.frame_delay` calculation for early app start spans ([#&#8203;3427](https://github.com/getsentry/sentry-java/pull/3427)) - Fix crash when installing `ShutdownHookIntegration` and the VM is shutting down ([#&#8203;3456](https://github.com/getsentry/sentry-java/pull/3456)) ### [`v7.9.0`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#790) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.8.0...7.9.0) ##### Features - Add start_type to app context ([#&#8203;3379](https://github.com/getsentry/sentry-java/pull/3379)) - Add ttid/ttfd contribution flags ([#&#8203;3386](https://github.com/getsentry/sentry-java/pull/3386)) ##### Fixes - (Internal) Metrics code cleanup ([#&#8203;3403](https://github.com/getsentry/sentry-java/pull/3403)) - Fix Frame measurements in app start transactions ([#&#8203;3382](https://github.com/getsentry/sentry-java/pull/3382)) - Fix timing metric value different from span duration ([#&#8203;3368](https://github.com/getsentry/sentry-java/pull/3368)) - Do not always write startup crash marker ([#&#8203;3409](https://github.com/getsentry/sentry-java/pull/3409)) - This may have been causing the SDK init logic to block the main thread </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMjcuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNi40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
renovate-bot changed title from Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.9.0 to Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.10.0 2024-06-06 14:01:49 +00:00
renovate-bot force-pushed renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x from 66ce29f574 to e96005a1f7 2024-06-06 14:01:50 +00:00 Compare
renovate-bot changed title from Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.10.0 to Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.11.0 2024-07-01 17:01:20 +00:00
renovate-bot force-pushed renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x from e96005a1f7 to 2745658752 2024-07-01 17:01:20 +00:00 Compare
renovate-bot changed title from Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.11.0 to Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.12.0 2024-07-15 18:01:25 +00:00
renovate-bot force-pushed renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x from 2745658752 to 1865aea4e9 2024-07-15 18:01:26 +00:00 Compare
renovate-bot changed title from Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.12.0 to Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.12.1 2024-07-25 13:01:41 +00:00
renovate-bot force-pushed renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x from 1865aea4e9 to c98ea3c992 2024-07-25 13:01:41 +00:00 Compare
Fascinated closed this pull request 2024-07-30 20:51:02 +00:00

Pull request closed

Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Fascinated/ScoreSaberUtils-Backend#4
No description provided.