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

This PR contains the following updates:

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

Release Notes

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

v7.20.0

Compare Source

Features

To enable Replay use the sessionReplay.sessionSampleRate or sessionReplay.onErrorSampleRate options.

import io.sentry.SentryReplayOptions
import io.sentry.android.core.SentryAndroid

SentryAndroid.init(context) { options ->
 
  options.sessionReplay.sessionSampleRate = 1.0
  options.sessionReplay.onErrorSampleRate = 1.0

  // To change default redaction behavior (defaults to true)
  options.sessionReplay.redactAllImages = true
  options.sessionReplay.redactAllText = true

  // To change quality of the recording (defaults to MEDIUM)
  options.sessionReplay.quality = SentryReplayOptions.SentryReplayQuality.MEDIUM // (LOW|MEDIUM|HIGH)
}
Fixes
  • Fix warm start detection (#​3937)
  • Session Replay: Reduce memory allocations, disk space consumption, and payload size (#​4016)
  • Session Replay: Do not try to encode corrupted frames multiple times (#​4016)
Internal
  • Session Replay: Allow overriding SdkVersion for replay events (#​4014)
  • Session Replay: Send replay options as tags (#​4015)
Breaking changes
  • Session Replay options were moved from under experimental to the main options object (#​4017)

v7.19.1

Compare Source

Fixes
  • Change TTFD timeout to 25 seconds (#​3984)
  • Session Replay: Fix memory leak when masking Compose screens (#​3985)
  • Session Replay: Fix potential ANRs in GestureRecorder (#​4001)
Internal
  • Session Replay: Flutter improvements (#​4007)

v7.19.0

Compare Source

Fixes
  • Session Replay: fix various crashes and issues (#​3970)
    • Fix IndexOutOfBoundsException when tracking window changes
    • Fix IllegalStateException when adding/removing draw listener for a dead view
    • Fix ConcurrentModificationException when registering window listeners and stopping WindowRecorder/GestureRecorder
  • Add support for setting sentry-native handler_strategy (#​3671)
Dependencies

v7.18.1

Compare Source

Fixes
  • Fix testTag not working for Jetpack Compose user interaction tracking (#​3878)

v7.18.0

Compare Source

Features
Fixes
  • Avoid collecting normal frames (#​3782)
  • Ensure android initialization process continues even if options configuration block throws an exception (#​3887)
  • Do not report parsing ANR error when there are no threads (#​3888)
    • This should significantly reduce the number of events with message "Sentry Android SDK failed to parse system thread dump..." reported
  • Session Replay: Disable replay in session mode when rate limit is active (#​3854)
Dependencies

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

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 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 force-pushed the renovate/sentry.version branch from ce4c93c to 55ddf14 Compare September 28, 2023 09:25
@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 force-pushed the renovate/sentry.version branch from 98d47d1 to b42bed6 Compare October 19, 2023 10:54
@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 force-pushed the renovate/sentry.version branch from 9e8e843 to 044724b Compare November 20, 2023 17:39
@renovate renovate bot force-pushed the renovate/sentry.version branch from 044724b to 750a381 Compare February 9, 2024 11:06
@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 force-pushed the renovate/sentry.version branch from 750a381 to 45e3d9a Compare February 12, 2024 10:44
@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 force-pushed the renovate/sentry.version branch from 45e3d9a to 1bf9cee Compare February 21, 2024 16:25
@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 deleted the renovate/sentry.version branch July 30, 2024 09:12
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.12.1 - autoclosed Update dependency io.sentry:sentry to v7.12.1 Jul 31, 2024
@renovate renovate bot reopened this Jul 31, 2024
@renovate renovate bot restored the renovate/sentry.version branch July 31, 2024 10:36
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.12.1 Update dependency io.sentry:sentry to v7.13.0 Jul 31, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch 2 times, most recently from 6c347c7 to 8862ef8 Compare August 6, 2024 10:07
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.13.0 Update dependency io.sentry:sentry to v7.14.0 Aug 13, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch from 8862ef8 to 40789e9 Compare August 13, 2024 11:13
@renovate renovate bot force-pushed the renovate/sentry.version branch from 40789e9 to 1ccddc7 Compare September 13, 2024 17:10
@renovate renovate bot force-pushed the renovate/sentry.version branch from 1ccddc7 to ae9e027 Compare October 9, 2024 18:23
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.14.0 Update dependency io.sentry:sentry to v7.15.0 Oct 9, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch from ae9e027 to 7c76229 Compare October 23, 2024 14:11
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.15.0 Update dependency io.sentry:sentry to v7.16.0 Oct 23, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch 3 times, most recently from c83832c to 7006537 Compare November 5, 2024 15:46
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.16.0 Update dependency io.sentry:sentry to v7.17.0 Nov 13, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch from 7006537 to 96693ba Compare November 13, 2024 11:16
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.17.0 Update dependency io.sentry:sentry to v7.18.0 Nov 19, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch from 96693ba to 6223b3c Compare November 19, 2024 13:26
@renovate renovate bot force-pushed the renovate/sentry.version branch from 6223b3c to 1f47fb2 Compare November 29, 2024 13:44
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.18.0 Update dependency io.sentry:sentry to v7.18.1 Nov 29, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch from 1f47fb2 to 61ccc3f Compare December 12, 2024 11:17
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.18.1 Update dependency io.sentry:sentry to v7.19.0 Dec 12, 2024
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.19.0 Update dependency io.sentry:sentry to v7.19.1 Dec 23, 2024
@renovate renovate bot force-pushed the renovate/sentry.version branch from 61ccc3f to 65f3b67 Compare December 23, 2024 14:20
@renovate renovate bot force-pushed the renovate/sentry.version branch from 65f3b67 to ac94454 Compare January 2, 2025 21:30
@renovate renovate bot changed the title Update dependency io.sentry:sentry to v7.19.1 Update dependency io.sentry:sentry to v7.20.0 Jan 2, 2025
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.

0 participants