fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.17.0 #36

Open
Rainnny wants to merge 1 commits from renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x into master
Owner

This PR contains the following updates:

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

Release Notes

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

v7.17.0

Compare Source

Features
  • Add meta option to set the maximum amount of breadcrumbs to be logged. (#​3836)
  • Use a separate Random instance per thread to improve SDK performance (#​3835)
Fixes
  • Using MaxBreadcrumb with value 0 no longer crashes. (#​3836)
  • Accept manifest integer values when requiring floating values (#​3823)
  • Fix standalone tomcat jndi issue (#​3873)
    • Using Sentry Spring Boot on a standalone tomcat caused the following error:
      • Failed to bind properties under 'sentry.parsed-dsn' to io.sentry.Dsn

v7.16.0

Compare Source

Features
  • Add meta option to attach ANR thread dumps (#​3791)
Fixes
  • Cache parsed Dsn (#​3796)
  • fix invalid profiles when the transaction name is empty (#​3747)
  • Deprecate enableTracing option (#​3777)
  • Vendor java.util.Random and replace java.security.SecureRandom usages (#​3783)
  • Fix potential ANRs due to NDK scope sync (#​3754)
  • Fix potential ANRs due to NDK System.loadLibrary calls (#​3670)
  • Fix slow Log calls on app startup (#​3793)
  • Fix slow Integration name parsing (#​3794)
  • Session Replay: Reduce startup and capture overhead (#​3799)
  • Load lazy fields on init in the background (#​3803)
  • Replace setOf with HashSet.add (#​3801)
Breaking changes
  • The method addIntegrationToSdkVersion(Ljava/lang/Class;)V has been removed from the core (io.sentry:sentry) package. Please make sure all of the packages (e.g. io.sentry:sentry-android-core, io.sentry:sentry-android-fragment, io.sentry:sentry-okhttp and others) are all aligned and using the same version to prevent the NoSuchMethodError exception.

v7.15.0

Compare Source

Features
  • Add support for feedback envelope header item type (#​3687)
  • Add breadcrumb.origin field (#​3727)
  • Session Replay: Add options to selectively mask/unmask views captured in replay. The following options are available: (#​3689)
    • android:tag="sentry-mask|sentry-unmask" in XML or view.setTag("sentry-mask|sentry-unmask") in code tags
      • if you already have a tag set for a view, you can set a tag by id: <tag android:id="@&#8203;id/sentry_privacy" android:value="mask|unmask"/> in XML or view.setTag(io.sentry.android.replay.R.id.sentry_privacy, "mask|unmask") in code
    • view.sentryReplayMask() or view.sentryReplayUnmask() extension functions
    • mask/unmask Views of a certain type by adding fully-qualified classname to one of the lists options.experimental.sessionReplay.addMaskViewClass() or options.experimental.sessionReplay.addUnmaskViewClass(). Note, that all of the view subclasses/subtypes will be masked/unmasked as well
      • For example, (this is already a default behavior) to mask all TextViews and their subclasses (RadioButton, EditText, etc.): options.experimental.sessionReplay.addMaskViewClass("android.widget.TextView")
      • If you're using code obfuscation, adjust your proguard-rules accordingly, so your custom view class name is not minified
  • Session Replay: Support Jetpack Compose masking (#​3739)
    • To selectively mask/unmask @​Composables, use Modifier.sentryReplayMask() and Modifier.sentryReplayUnmask() modifiers
  • Session Replay: Mask WebView, VideoView and androidx.media3.ui.PlayerView by default (#​3775)
Fixes
  • Avoid stopping appStartProfiler after application creation (#​3630)
  • Session Replay: Correctly detect dominant color for TextViews with Spans (#​3682)
  • Fix ensure Application Context is used even when SDK is initialized via Activity Context (#​3669)
  • Fix potential ANRs due to Calendar.getInstance usage in Breadcrumbs constructor (#​3736)
  • Fix potential ANRs due to default integrations (#​3778)
  • Lazily initialize heavy SentryOptions members to avoid ANRs on app start (#​3749)

Breaking changes:

  • options.experimental.sessionReplay.errorSampleRate was renamed to options.experimental.sessionReplay.onErrorSampleRate (#​3637)
  • Manifest option io.sentry.session-replay.error-sample-rate was renamed to io.sentry.session-replay.on-error-sample-rate (#​3637)
  • Change redactAllText and redactAllImages to maskAllText and maskAllImages (#​3741)

v7.14.0

Compare Source

Features
  • Session Replay: Gesture/touch support for Flutter (#​3623)
Fixes
  • Fix app start spans missing from Pixel devices (#​3634)
  • Avoid ArrayIndexOutOfBoundsException on Android cpu data collection (#​3598)
  • Fix lazy select queries instrumentation (#​3604)
  • Session Replay: buffer mode improvements (#​3622)
    • Align next segment timestamp with the end of the buffered segment when converting from buffer mode to session mode
    • Persist buffer replay type for the entire replay when converting from buffer mode to session mode
    • Properly store screen names for buffer mode
  • Session Replay: fix various crashes and issues (#​3628)
    • Fix video not being encoded on Pixel devices
    • Fix SIGABRT native crashes on Xiaomi devices when encoding a video
    • Fix RejectedExecutionException when redacting a screenshot
    • Fix FileNotFoundException when persisting segment values
Chores
  • Introduce ReplayShadowMediaCodec and refactor tests using custom encoder (#​3612)

v7.13.0

Compare Source

Features
  • Session Replay: (#​3565) (#​3609)
    • Capture remaining replay segment for ANRs on next app launch
    • Capture remaining replay segment for unhandled crashes on next app launch
Fixes
  • Session Replay: (#​3565) (#​3609)
    • Fix stopping replay in session mode at 1 hour deadline
    • Never encode full frames for a video segment, only do partial updates. This further reduces size of the replay segment
    • Use propagation context when no active transaction for ANRs
Dependencies

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.17.0` | --- ### Release Notes <details> <summary>getsentry/sentry-java (io.sentry:sentry-spring-boot-starter-jakarta)</summary> ### [`v7.17.0`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7170) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.16.0...7.17.0) ##### Features - Add meta option to set the maximum amount of breadcrumbs to be logged. ([#&#8203;3836](https://github.com/getsentry/sentry-java/pull/3836)) - Use a separate `Random` instance per thread to improve SDK performance ([#&#8203;3835](https://github.com/getsentry/sentry-java/pull/3835)) ##### Fixes - Using MaxBreadcrumb with value 0 no longer crashes. ([#&#8203;3836](https://github.com/getsentry/sentry-java/pull/3836)) - Accept manifest integer values when requiring floating values ([#&#8203;3823](https://github.com/getsentry/sentry-java/pull/3823)) - Fix standalone tomcat jndi issue ([#&#8203;3873](https://github.com/getsentry/sentry-java/pull/3873)) - Using Sentry Spring Boot on a standalone tomcat caused the following error: - Failed to bind properties under 'sentry.parsed-dsn' to io.sentry.Dsn ### [`v7.16.0`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7160) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.15.0...7.16.0) ##### Features - Add meta option to attach ANR thread dumps ([#&#8203;3791](https://github.com/getsentry/sentry-java/pull/3791)) ##### Fixes - Cache parsed Dsn ([#&#8203;3796](https://github.com/getsentry/sentry-java/pull/3796)) - fix invalid profiles when the transaction name is empty ([#&#8203;3747](https://github.com/getsentry/sentry-java/pull/3747)) - Deprecate `enableTracing` option ([#&#8203;3777](https://github.com/getsentry/sentry-java/pull/3777)) - Vendor `java.util.Random` and replace `java.security.SecureRandom` usages ([#&#8203;3783](https://github.com/getsentry/sentry-java/pull/3783)) - Fix potential ANRs due to NDK scope sync ([#&#8203;3754](https://github.com/getsentry/sentry-java/pull/3754)) - Fix potential ANRs due to NDK System.loadLibrary calls ([#&#8203;3670](https://github.com/getsentry/sentry-java/pull/3670)) - Fix slow `Log` calls on app startup ([#&#8203;3793](https://github.com/getsentry/sentry-java/pull/3793)) - Fix slow Integration name parsing ([#&#8203;3794](https://github.com/getsentry/sentry-java/pull/3794)) - Session Replay: Reduce startup and capture overhead ([#&#8203;3799](https://github.com/getsentry/sentry-java/pull/3799)) - Load lazy fields on init in the background ([#&#8203;3803](https://github.com/getsentry/sentry-java/pull/3803)) - Replace setOf with HashSet.add ([#&#8203;3801](https://github.com/getsentry/sentry-java/pull/3801)) ##### Breaking changes - The method `addIntegrationToSdkVersion(Ljava/lang/Class;)V` has been removed from the core (`io.sentry:sentry`) package. Please make sure all of the packages (e.g. `io.sentry:sentry-android-core`, `io.sentry:sentry-android-fragment`, `io.sentry:sentry-okhttp` and others) are all aligned and using the same version to prevent the `NoSuchMethodError` exception. ### [`v7.15.0`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7150) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.14.0...7.15.0) ##### Features - Add support for `feedback` envelope header item type ([#&#8203;3687](https://github.com/getsentry/sentry-java/pull/3687)) - Add breadcrumb.origin field ([#&#8203;3727](https://github.com/getsentry/sentry-java/pull/3727)) - Session Replay: Add options to selectively mask/unmask views captured in replay. The following options are available: ([#&#8203;3689](https://github.com/getsentry/sentry-java/pull/3689)) - `android:tag="sentry-mask|sentry-unmask"` in XML or `view.setTag("sentry-mask|sentry-unmask")` in code tags - if you already have a tag set for a view, you can set a tag by id: `<tag android:id="@&#8203;id/sentry_privacy" android:value="mask|unmask"/>` in XML or `view.setTag(io.sentry.android.replay.R.id.sentry_privacy, "mask|unmask")` in code - `view.sentryReplayMask()` or `view.sentryReplayUnmask()` extension functions - mask/unmask `View`s of a certain type by adding fully-qualified classname to one of the lists `options.experimental.sessionReplay.addMaskViewClass()` or `options.experimental.sessionReplay.addUnmaskViewClass()`. Note, that all of the view subclasses/subtypes will be masked/unmasked as well - For example, (this is already a default behavior) to mask all `TextView`s and their subclasses (`RadioButton`, `EditText`, etc.): `options.experimental.sessionReplay.addMaskViewClass("android.widget.TextView")` - If you're using code obfuscation, adjust your proguard-rules accordingly, so your custom view class name is not minified - Session Replay: Support Jetpack Compose masking ([#&#8203;3739](https://github.com/getsentry/sentry-java/pull/3739)) - To selectively mask/unmask [@&#8203;Composables](https://github.com/Composables), use `Modifier.sentryReplayMask()` and `Modifier.sentryReplayUnmask()` modifiers - Session Replay: Mask `WebView`, `VideoView` and `androidx.media3.ui.PlayerView` by default ([#&#8203;3775](https://github.com/getsentry/sentry-java/pull/3775)) ##### Fixes - Avoid stopping appStartProfiler after application creation ([#&#8203;3630](https://github.com/getsentry/sentry-java/pull/3630)) - Session Replay: Correctly detect dominant color for `TextView`s with Spans ([#&#8203;3682](https://github.com/getsentry/sentry-java/pull/3682)) - Fix ensure Application Context is used even when SDK is initialized via Activity Context ([#&#8203;3669](https://github.com/getsentry/sentry-java/pull/3669)) - Fix potential ANRs due to `Calendar.getInstance` usage in Breadcrumbs constructor ([#&#8203;3736](https://github.com/getsentry/sentry-java/pull/3736)) - Fix potential ANRs due to default integrations ([#&#8203;3778](https://github.com/getsentry/sentry-java/pull/3778)) - Lazily initialize heavy `SentryOptions` members to avoid ANRs on app start ([#&#8203;3749](https://github.com/getsentry/sentry-java/pull/3749)) *Breaking changes*: - `options.experimental.sessionReplay.errorSampleRate` was renamed to `options.experimental.sessionReplay.onErrorSampleRate` ([#&#8203;3637](https://github.com/getsentry/sentry-java/pull/3637)) - Manifest option `io.sentry.session-replay.error-sample-rate` was renamed to `io.sentry.session-replay.on-error-sample-rate` ([#&#8203;3637](https://github.com/getsentry/sentry-java/pull/3637)) - Change `redactAllText` and `redactAllImages` to `maskAllText` and `maskAllImages` ([#&#8203;3741](https://github.com/getsentry/sentry-java/pull/3741)) ### [`v7.14.0`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7140) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.13.0...7.14.0) ##### Features - Session Replay: Gesture/touch support for Flutter ([#&#8203;3623](https://github.com/getsentry/sentry-java/pull/3623)) ##### Fixes - Fix app start spans missing from Pixel devices ([#&#8203;3634](https://github.com/getsentry/sentry-java/pull/3634)) - Avoid ArrayIndexOutOfBoundsException on Android cpu data collection ([#&#8203;3598](https://github.com/getsentry/sentry-java/pull/3598)) - Fix lazy select queries instrumentation ([#&#8203;3604](https://github.com/getsentry/sentry-java/pull/3604)) - Session Replay: buffer mode improvements ([#&#8203;3622](https://github.com/getsentry/sentry-java/pull/3622)) - Align next segment timestamp with the end of the buffered segment when converting from buffer mode to session mode - Persist `buffer` replay type for the entire replay when converting from buffer mode to session mode - Properly store screen names for `buffer` mode - Session Replay: fix various crashes and issues ([#&#8203;3628](https://github.com/getsentry/sentry-java/pull/3628)) - Fix video not being encoded on Pixel devices - Fix SIGABRT native crashes on Xiaomi devices when encoding a video - Fix `RejectedExecutionException` when redacting a screenshot - Fix `FileNotFoundException` when persisting segment values ##### Chores - Introduce `ReplayShadowMediaCodec` and refactor tests using custom encoder ([#&#8203;3612](https://github.com/getsentry/sentry-java/pull/3612)) ### [`v7.13.0`](https://github.com/getsentry/sentry-java/blob/HEAD/CHANGELOG.md#7130) [Compare Source](https://github.com/getsentry/sentry-java/compare/7.12.1...7.13.0) ##### Features - Session Replay: ([#&#8203;3565](https://github.com/getsentry/sentry-java/pull/3565)) ([#&#8203;3609](https://github.com/getsentry/sentry-java/pull/3609)) - Capture remaining replay segment for ANRs on next app launch - Capture remaining replay segment for unhandled crashes on next app launch ##### Fixes - Session Replay: ([#&#8203;3565](https://github.com/getsentry/sentry-java/pull/3565)) ([#&#8203;3609](https://github.com/getsentry/sentry-java/pull/3609)) - Fix stopping replay in `session` mode at 1 hour deadline - Never encode full frames for a video segment, only do partial updates. This further reduces size of the replay segment - Use propagation context when no active transaction for ANRs ##### Dependencies - Bump Spring Boot to 3.3.2 ([#&#8203;3541](https://github.com/getsentry/sentry-java/pull/3541)) ### [`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:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNTIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjEwLjIiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==-->
Rainnny added 1 commit 2024-09-09 16:09:19 -07:00
Rainnny changed title from fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.14.0 to fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.15.0 2024-10-09 15:07:50 -07:00
Rainnny force-pushed renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x from 741090f7f6 to 9e18d66dcd 2024-10-09 15:07:50 -07:00 Compare
Rainnny changed title from fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.15.0 to fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.16.0 2024-10-23 07:03:35 -07:00
Rainnny force-pushed renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x from 9e18d66dcd to 943efa5b61 2024-10-23 07:03:38 -07:00 Compare
Rainnny changed title from fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.16.0 to fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.17.0 2024-11-12 11:34:52 -08:00
Rainnny force-pushed renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x from 943efa5b61 to 40f0d253bf 2024-11-12 11:34:53 -08:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x:renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x
git checkout renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x
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: Rainnny/RESTfulMC#36
No description provided.