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/react from 7.16.0 to 7.81.1 #459

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

Conversation

q1blue
Copy link
Collaborator

@q1blue q1blue commented Dec 12, 2023

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


Snyk has created this PR to upgrade @sentry/react from 7.16.0 to 7.81.1.

ℹ️ 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 109 versions ahead of your current version.
  • The recommended version was released 21 days ago, on 2023-11-21.
Release notes
Package name: @sentry/react
  • 7.81.1 - 2023-11-21
    • fix(astro): Remove method from span op (#9603)
    • fix(deno): Make sure files get published (#9611)
    • fix(nextjs): Use globalThis instead of global in edge runtime (#9612)
    • fix(node): Improve error handling and shutdown handling for ANR (#9548)
    • fix(tracing-internal): Fix case when originalURL contain query params (#9531)

    Work in this release contributed by @ powerfulyang, @ LubomirIgonda1, @ joshkel, and @ alexgleason. Thank you for your contributions!

    Bundle size 📦

    Path Size
    @ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 65.61 KB
    @ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 55.72 KB
    @ sentry/browser (incl. Tracing) - Webpack (gzipped) 31.01 KB
    @ sentry/browser - Webpack (gzipped) 21.32 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 62.03 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.13 KB
    @ sentry/browser - ES6 CDN Bundle (gzipped) 21.26 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 195.71 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 88.38 KB
    @ sentry/browser - ES6 CDN Bundle (minified & uncompressed) 63.34 KB
    @ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.85 KB
    @ sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 65.92 KB
    @ sentry/react - Webpack (gzipped) 21.36 KB
    @ sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 82.66 KB
    @ sentry/nextjs Client - Webpack (gzipped) 48.15 KB
    @ sentry-internal/feedback - Webpack (gzipped) 16.12 KB
  • 7.81.0 - 2023-11-20

    Important Changes

    - feat(nextjs): Add instrumentation utility for server actions (#9553)

    This release adds a utility function withServerActionInstrumentation to the @ sentry/nextjs SDK for instrumenting your Next.js server actions with error and performance monitoring.

    You can optionally pass form data and headers to record them, and configure the wrapper to record the Server Action responses:

    import * as Sentry from "@ sentry/nextjs";
    import { headers } from "next/headers";

    export default function ServerComponent() {
    async function myServerAction(formData: FormData) {
    "use server";
    return await Sentry.withServerActionInstrumentation(
    "myServerAction", // The name you want to associate this Server Action with in Sentry
    {
    formData, // Optionally pass in the form data
    headers: headers(), // Optionally pass in headers
    recordResponse: true, // Optionally record the server action response
    },
    async () => {
    // ... Your Server Action code

        <span class="pl-k">return</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"John Doe"</span> <span class="pl-kos">}</span><span class="pl-kos">;</span>
      <span class="pl-kos">}</span>
    <span class="pl-kos">)</span><span class="pl-kos">;</span>
    

    }

    return (
    <form action={myServerAction}>
    <input type="text" name="some-input-value" />
    <button type="submit">Run Action</button>
    </form>
    );
    }

    Other Changes

    • docs(feedback): Example docs on sendFeedback (#9560)
    • feat(feedback): Add level and remove breadcrumbs from feedback event (#9533)
    • feat(vercel-edge): Add fetch instrumentation (#9504)
    • feat(vue): Support Vue 3 lifecycle hooks in mixin options (#9578)
    • fix(nextjs): Download CLI binary if it can't be found (#9584)
    • ref: Deprecate extractTraceParentData from @ sentry/core & downstream packages (#9158)
    • ref(replay): Add further logging to network body parsing (#9566)

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

    Bundle size 📦

    Path Size
    @ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 65.53 KB
    @ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 55.67 KB
    @ sentry/browser (incl. Tracing) - Webpack (gzipped) 31.01 KB
    @ sentry/browser - Webpack (gzipped) 21.32 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 61.99 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.13 KB
    @ sentry/browser - ES6 CDN Bundle (gzipped) 21.26 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 195.53 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 88.38 KB
    @ sentry/browser - ES6 CDN Bundle (minified & uncompressed) 63.34 KB
    @ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.85 KB
    @ sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 65.84 KB
    @ sentry/react - Webpack (gzipped) 21.36 KB
    @ sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 82.58 KB
    @ sentry/nextjs Client - Webpack (gzipped) 48.15 KB
    @ sentry-internal/feedback - Webpack (gzipped) 16.08 KB
  • 7.80.2-alpha.1 - 2023-11-15

    No longer will prioritize the component names for replays, as this will break searching by CSS selector.

    Bundle size 📦

    Path Size
    @ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 65.47 KB
    @ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 55.68 KB
    @ sentry/browser (incl. Tracing) - Webpack (gzipped) 31.03 KB
    @ sentry/browser - Webpack (gzipped) 21.34 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 62 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.14 KB
    @ sentry/browser - ES6 CDN Bundle (gzipped) 21.29 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 195.54 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 88.43 KB
    @ sentry/browser - ES6 CDN Bundle (minified & uncompressed) 63.41 KB
    @ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.86 KB
    @ sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 65.79 KB
    @ sentry/react - Webpack (gzipped) 21.39 KB
    @ sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 82.53 KB
    @ sentry/nextjs Client - Webpack (gzipped) 48.17 KB
    @ sentry-internal/feedback - Webpack (gzipped) 16.04 KB
  • 7.80.2-alpha.0 - 2023-11-14
    • feat(utils): Prioritize Component name attributes over HTML Tree String (#9496)

    Bundle size 📦

    Path Size
    @ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 65.46 KB
    @ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 55.68 KB
    @ sentry/browser (incl. Tracing) - Webpack (gzipped) 31.03 KB
    @ sentry/browser - Webpack (gzipped) 21.34 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 62 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.14 KB
    @ sentry/browser - ES6 CDN Bundle (gzipped) 21.29 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 195.53 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 88.43 KB
    @ sentry/browser - ES6 CDN Bundle (minified & uncompressed) 63.41 KB
    @ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.86 KB
    @ sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 65.81 KB
    @ sentry/react - Webpack (gzipped) 21.39 KB
    @ sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 82.53 KB
    @ sentry/nextjs Client - Webpack (gzipped) 48.17 KB
    @ sentry-internal/feedback - Webpack (gzipped) 16.04 KB
  • 7.80.1 - 2023-11-14
    • fix(astro): Adjust Vite plugin config to upload server source maps (#9541)
    • fix(nextjs): Add tracing extensions in all serverside wrappers (#9537)
    • fix(nextjs): Fix serverside transaction names on Windows (#9526)
    • fix(node): Fix tRPC middleware typing (#9540)
    • fix(replay): Add additional safeguards for capturing network bodies (#9506)
    • fix(tracing): Update prisma span to be db.prisma (#9512)

    Bundle size 📦

    Path Size
    @ sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 65.42 KB
    @ sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 55.63 KB
    @ sentry/browser (incl. Tracing) - Webpack (gzipped) 30.98 KB
    @ sentry/browser - Webpack (gzipped) 21.3 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 61.95 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.1 KB
    @ sentry/browser - ES6 CDN Bundle (gzipped) 21.24 KB
    @ sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 195.42 KB
    @ sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 88.32 KB
    @ sentry/browser - ES6 CDN Bundle (minified & uncompressed) 63.3 KB
    @ sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.81 KB
    @ sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 65.77 KB
    @ sentry/react - Webpack (gzipped) 21.34 KB
    @ sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 82.49 KB
    @ sentry/nextjs Client - Webpack (gzipped) 48.13 KB
    @ sentry-internal/feedback - Webpack (gzipped) 16 KB
  • 7.80.0 - 2023-11-09
  • 7.79.0 - 2023-11-08
  • 7.78.0 - 2023-11-08
  • 7.77.0 - 2023-10-31
  • 7.76.0 - 2023-10-27
  • 7.75.1 - 2023-10-25
  • 7.75.0 - 2023-10-24
  • 7.74.2-alpha.1 - 2023-10-23
  • 7.74.2-alpha.0 - 2023-10-19
  • 7.74.1 - 2023-10-17
  • 7.74.0 - 2023-10-13
  • 7.73.0 - 2023-10-02
  • 7.72.0 - 2023-09-26
  • 7.71.0 - 2023-09-25
  • 7.70.0 - 2023-09-20
  • 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
  • 7.60.0 - 2023-07-21
  • 7.59.3 - 2023-07-19
  • 7.59.2 - 2023-07-18
  • 7.59.1 - 2023-07-18
  • 7.59.0-beta.1 - 2023-07-17
  • 7.59.0-beta.0 - 2023-07-13
  • 7.58.1 - 2023-07-13
  • 7.58.0 - 2023-07-12
  • 7.57.0 - 2023-06-28
  • 7.57.0-beta.0 - 2023-06-21
  • 7.56.0 - 2023-06-19
  • 7.55.2 - 2023-06-14
  • 7.55.1 - 2023-06-14
  • 7.55.0 - 2023-06-13
  • 7.54.0 - 2023-06-01
  • 7.53.1 - 2023-05-24
  • 7.53.0 - 2023-05-23
  • 7.52.1 - 2023-05-15
  • 7.52.0 - 2023-05-15
  • 7.51.2 - 2023-05-08
  • 7.51.1 - 2023-05-08
  • 7.51.0 - 2023-05-04
  • 7.50.0 - 2023-04-27
  • 7.49.0 - 2023-04-20
  • 7.48.0 - 2023-04-14
  • 7.47.0 - 2023-04-05
  • 7.46.0 - 2023-03-30
  • 7.45.0 - 2023-03-24
  • 7.44.2 - 2023-03-21
  • 7.44.1 - 2023-03-20
  • 7.44.0 - 2023-03-20
  • 7.43.0 - 2023-03-13
  • 7.42.0 - 2023-03-09
  • 7.41.0 - 2023-03-06
  • 7.40.0 - 2023-03-01
  • 7.39.0 - 2023-02-27
  • 7.38.0 - 2023-02-17
  • 7.37.2 - 2023-02-13
  • 7.37.1 - 2023-02-10
  • 7.37.0 - 2023-02-09
  • 7.36.0 - 2023-02-02
  • 7.35.0 - 2023-02-01
  • 7.34.0 - 2023-01-26
  • 7.34.0-beta.0 - 2023-01-25
  • 7.33.0 - 2023-01-24
  • 7.32.1 - 2023-01-23
  • 7.32.0 - 2023-01-23
  • 7.31.1 - 2023-01-17
  • 7.31.0 - 2023-01-16
  • 7.30.0 - 2023-01-10
  • 7.29.0 - 2023-01-04
  • 7.28.1 - 2022-12-22
  • 7.28.0 - 2022-12-20
  • 7.27.0 - 2022-12-16
  • 7.26.0 - 2022-12-13
  • 7.25.0 - 2022-12-12
  • 7.24.2 - 2022-12-07
  • 7.24.1 - 2022-12-07
  • 7.24.0 - 2022-12-07
  • 7.23.0 - 2022-12-01
  • 7.22.0 - 2022-11-29
  • 7.21.1 - 2022-11-23
  • 7.21.0 - 2022-11-22
  • 7.20.1 - 2022-11-21
  • 7.20.0 - 2022-11-17
  • 7.19.0 - 2022-11-10
  • 7.18.0 - 2022-11-08
  • 7.17.4 - 2022-11-03
  • 7.17.3 - 2022-10-31
  • 7.17.2 - 2022-10-28
  • 7.17.1 - 2022-10-27
  • 7.17.0 - 2022-10-27
  • 7.16.0 - 2022-10-19
from @sentry/react 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

Copy link

changeset-bot bot commented Dec 12, 2023

⚠️ No Changeset found

Latest commit: b4038bf

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

Copy link

Updated dependencies detected. Learn more about Socket for GitHub ↗︎

Packages Version New capabilities Transitives Size Publisher
@sentry/react 7.16.0...7.81.1 network +6/-1 6.95 MB sentry-bot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants