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

[Snyk] Upgrade @sentry/utils from 7.60.1 to 7.73.0 #138

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

X-oss-byte
Copy link
Owner

This PR was automatically created by Snyk using the credentials of a real user.


Snyk has created this PR to upgrade @sentry/utils from 7.60.1 to 7.73.0.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 20 versions ahead of your current version.
  • The recommended version was released 21 days ago, on 2023-10-02.
Release notes
Package name: @sentry/utils
  • 7.73.0 - 2023-10-02

    Important Changes

    • feat(replay): Upgrade to rrweb2

    This is fully backwards compatible with prior versions of the Replay SDK. The only breaking change that we will making is to not be masking aria-label by default. The reason for this change is to align with our core SDK which also does not mask aria-label. This change also enables better support of searching by clicks.

    Another change that needs to be highlighted is the 13% bundle size increase. This bundle size increase is necessary to bring improved recording performance and improved replay fidelity, especially in regards to web components and iframes. We will be investigating the reduction of the bundle size in this PR.

    Here are benchmarks comparing the version 1 of rrweb to version 2

    metric v1 v2
    lcp 1486.06 ms 1529.11 ms
    cls 0.40 ms 0.40 ms
    fid 1.53 ms 1.50 ms
    tbt 3207.22 ms 3036.80 ms
    memoryAvg 131.83 MB 124.84 MB
    memoryMax 324.8 MB 339.03 MB
    netTx 282.67 KB 272.51 KB
    netRx 8.02 MB 8.07 MB

    Other Changes

    • feat: Always assemble Envelopes (#9101)
    • feat(node): Rate limit local variables for caught exceptions and enable captureAllExceptions by default (#9102)
    • fix(core): Ensure tunnel is considered for isSentryUrl checks (#9130)
    • fix(nextjs): Fix RequestAsyncStorage fallback path (#9126)
    • fix(node-otel): Suppress tracing for generated sentry spans (#9142)
    • fix(node): fill in span data from http request options object (#9112)
    • fix(node): Fixes and improvements to ANR detection (#9128)
    • fix(sveltekit): Avoid data invalidation in wrapped client-side load functions (#9071)
    • ref(core): Refactor InboundFilters integration to use processEvent (#9020)
    • ref(wasm): Refactor Wasm integration to use processEvent (#9019)

    Work in this release contributed by @ vlad-zhukov. Thank you for your contribution!

    Bundle size 📦

    Path Size
    @ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 84.26 KB
    @ sentry/browser (incl. Tracing) - Webpack (gzipped) 31.42 KB
    @ sentry/browser - Webpack (gzipped) 22 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 78.69 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 28.52 KB
    @ sentry/browser - ES6 CDN Bundle (gzipped) 20.59 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 254.14 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 86.42 KB
    @ sentry/browser - ES6 CDN Bundle (minified & uncompressed) 61.23 KB
    @ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.38 KB
    @ sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 84.28 KB
    @ sentry/react - Webpack (gzipped) 22.03 KB
    @ sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 102.2 KB
    @ sentry/nextjs Client - Webpack (gzipped) 50.95 KB
  • 7.72.0 - 2023-09-26

    Important Changes

    • feat(node): App Not Responding with stack traces (#9079)

    This release introduces support for Application Not Responding (ANR) errors for Node.js applications.
    These errors are triggered when the Node.js main thread event loop of an application is blocked for more than five seconds.
    The Node SDK reports ANR errors as Sentry events and can optionally attach a stacktrace of the blocking code to the ANR event.

    To enable ANR detection, import and use the enableANRDetection function from the @ sentry/node package before you run the rest of your application code.
    Any event loop blocking before calling enableANRDetection will not be detected by the SDK.

    Example (ESM):

    import * as Sentry from "@ sentry/node";

    Sentry.init({
    dsn: "PUBLIC_DSN",
    tracesSampleRate: 1.0,
    });

    await Sentry.enableANRDetection({ captureStackTrace: true });
    // Function that runs your app
    runApp();

    Example (CJS):

    const Sentry = require("@ sentry/node");

    Sentry.init({
    dsn: "PUBLIC_DSN",
    tracesSampleRate: 1.0,
    });

    Sentry.enableANRDetection({ captureStackTrace: true }).then(() => {
    // Function that runs your app
    runApp();
    });

    Other Changes

    • fix(nextjs): Filter RequestAsyncStorage locations by locations that webpack will resolve (#9114)
    • fix(replay): Ensure replay_id is not captured when session is expired (#9109)

    Bundle size 📦

    Path Size
    @ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 75.58 KB
    @ sentry/browser (incl. Tracing) - Webpack (gzipped) 31.46 KB
    @ sentry/browser - Webpack (gzipped) 22.06 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 70.28 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 28.57 KB
    @ sentry/browser - ES6 CDN Bundle (gzipped) 20.65 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 222.21 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 86.57 KB
    @ sentry/browser - ES6 CDN Bundle (minified & uncompressed) 61.42 KB
    @ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.43 KB
    @ sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 75.61 KB
    @ sentry/react - Webpack (gzipped) 22.09 KB
    @ sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 93.48 KB
    @ sentry/nextjs Client - Webpack (gzipped) 51.04 KB
  • 7.71.0 - 2023-09-25
    • feat(bun): Instrument Bun.serve (#9080)
    • fix(core): Ensure global event processors are always applied to event (#9064)
    • fix(core): Run client eventProcessors before global ones (#9032)
    • fix(nextjs): Use webpack module paths to attempt to resolve internal request async storage module (#9100)
    • fix(react): Add actual error name to boundary error name (#9065)
    • fix(react): Compare location against basename-prefixed route. (#9076)
    • ref(browser): Refactor browser integrations to use processEvent (#9022)

    Work in this release contributed by @ jorrit. Thank you for your contribution!

    Bundle size 📦

    Path Size
    @ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 75.58 KB
    @ sentry/browser (incl. Tracing) - Webpack (gzipped) 31.46 KB
    @ sentry/browser - Webpack (gzipped) 22.06 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 70.27 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 28.57 KB
    @ sentry/browser - ES6 CDN Bundle (gzipped) 20.64 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 222.17 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 86.57 KB
    @ sentry/browser - ES6 CDN Bundle (minified & uncompressed) 61.42 KB
    @ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.43 KB
    @ sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 75.6 KB
    @ sentry/react - Webpack (gzipped) 22.09 KB
    @ sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 93.48 KB
    @ sentry/nextjs Client - Webpack (gzipped) 51.04 KB
  • 7.70.0 - 2023-09-20
    Read more
  • 7.70.0-beta.1 - 2023-09-15
  • 7.70.0-beta.0 - 2023-09-14
  • 7.69.0 - 2023-09-13
  • 7.68.0 - 2023-09-06
  • 7.67.0 - 2023-09-05
  • 7.67.0-beta.0 - 2023-08-31
  • 7.66.0 - 2023-08-30
  • 7.66.0-alpha.0 - 2023-08-29
  • 7.65.0 - 2023-08-28
  • 7.65.0-alpha.0 - 2023-08-16
  • 7.64.0 - 2023-08-14
  • 7.64.0-alpha.0 - 2023-08-11
  • 7.63.0 - 2023-08-10
  • 7.62.0 - 2023-08-09
  • 7.61.1 - 2023-08-04
  • 7.61.0 - 2023-07-31
  • 7.60.1 - 2023-07-26
from @sentry/utils GitHub release notes

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

@vercel
Copy link

vercel bot commented Oct 23, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
crates-io ❌ Failed (Inspect) Oct 23, 2023 11:12pm

@stackblitz
Copy link

stackblitz bot commented Oct 23, 2023

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@changeset-bot
Copy link

changeset-bot bot commented Oct 23, 2023

⚠️ No Changeset found

Latest commit: bba6d59

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

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.

2 participants