Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.sentry:sentry-spring-boot-starter-jakarta 7.15.0 -> 7.21.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

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

v7.21.0

Compare Source

Fixes
  • Do not instrument File I/O operations if tracing is disabled (#​4051)
  • Do not instrument User Interaction multiple times (#​4051)
  • Speed up view traversal to find touched target in UserInteractionIntegration (#​4051)
  • Reduce IPC/Binder calls performed by the SDK (#​4058)
Behavioural Changes
  • Reduce the number of broadcasts the SDK is subscribed for (#​4052)
    • Drop TempSensorBreadcrumbsIntegration
    • Drop PhoneStateBreadcrumbsIntegration
    • Reduce number of broadcasts in SystemEventsBreadcrumbsIntegration

Current list of the broadcast events can be found here. If you'd like to subscribe for more events, consider overriding the SystemEventsBreadcrumbsIntegration as follows:

SentryAndroid.init(context) { options ->
    options.integrations.removeAll { it is SystemEventsBreadcrumbsIntegration }
    options.integrations.add(SystemEventsBreadcrumbsIntegration(context, SystemEventsBreadcrumbsIntegration.getDefaultActions() + listOf(/* your custom actions */)))
}

If you would like to keep some of the default broadcast events as breadcrumbs, consider opening a GitHub issue.

v7.20.1

Compare Source

Behavioural Changes
  • The user ip-address is now only set to "{{auto}}" if sendDefaultPii is enabled (#​4071)
    • This change gives you control over IP address collection directly on the client

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.

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.

@netlify
Copy link

netlify bot commented Oct 23, 2024

Deploy Preview for ree6-backend canceled.

Name Link
🔨 Latest commit 230e83b
🔍 Latest deploy log https://app.netlify.com/sites/ree6-backend/deploys/679adea06f66cf000986f84f

@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from 817aa7a to 69ac62d Compare November 1, 2024 14:10
@renovate renovate bot changed the title Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.16.0 Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.17.0 Nov 12, 2024
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from 69ac62d to cfd899e Compare November 12, 2024 20:22
@renovate renovate bot changed the title Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.17.0 Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.18.0 Nov 18, 2024
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from cfd899e to 8327bb4 Compare November 18, 2024 20:05
@renovate renovate bot changed the title Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.18.0 Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.18.1 Nov 29, 2024
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from 8327bb4 to 4657e00 Compare November 29, 2024 22:00
@renovate renovate bot changed the title Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.18.1 Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.19.0 Dec 12, 2024
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from 4657e00 to 68cdaea Compare December 12, 2024 11:01
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from 68cdaea to e3c8dd3 Compare December 23, 2024 16:40
@renovate renovate bot changed the title Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.19.0 Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.19.1 Dec 23, 2024
@renovate renovate bot changed the title Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.19.1 Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.20.0 Jan 4, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from e3c8dd3 to 7f6d313 Compare January 4, 2025 23:30
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from 7f6d313 to 5eb5bd4 Compare January 16, 2025 14:44
@renovate renovate bot changed the title Update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.20.0 fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.20.0 Jan 16, 2025
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.20.0 fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.20.1 Jan 20, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from 5eb5bd4 to e6174b3 Compare January 20, 2025 16:45
@renovate renovate bot changed the title fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.20.1 fix(deps): update dependency io.sentry:sentry-spring-boot-starter-jakarta to v7.21.0 Jan 27, 2025
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from e6174b3 to 4a70f6e Compare January 27, 2025 21:21
@renovate renovate bot force-pushed the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch from 4a70f6e to 230e83b Compare January 30, 2025 02:06
@sonarqubecloud
Copy link

@DxsSucuk DxsSucuk merged commit 05a65fc into master Jan 30, 2025
12 checks passed
@renovate renovate bot deleted the renovate/io.sentry-sentry-spring-boot-starter-jakarta-7.x branch January 30, 2025 09:07
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.

1 participant