Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.16.0 #46

Merged
Fascinated merged 1 commits from renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x into master 2024-11-02 23:16:13 +00:00
Collaborator

This PR contains the following updates:

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

Release Notes

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

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)

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.14.0` -> `7.16.0` | --- ### Release Notes <details> <summary>getsentry/sentry-java (io.sentry:sentry-spring-boot-starter-jakarta)</summary> ### [`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)) </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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMDUuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEzMy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
renovate-bot added 1 commit 2024-10-09 18:01:35 +00:00
renovate-bot changed title from Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.15.0 to Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.16.0 2024-10-23 14:01:32 +00:00
renovate-bot force-pushed renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x from cde70b8124 to 3c80b3ca4b 2024-10-23 14:01:33 +00:00 Compare
Fascinated merged commit 7ca984e785 into master 2024-11-02 23:16:13 +00:00
Fascinated deleted branch renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x 2024-11-02 23:16:13 +00:00
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/Bat#46
No description provided.