nuxt-community / sentry-module

Sentry module for Nuxt 2
https://sentry.nuxtjs.org
MIT License
500 stars 113 forks source link

fix(deps): update sentry sdk to ^7.81.1 #653

Closed renovate[bot] closed 10 months ago

renovate[bot] commented 10 months ago

Mend Renovate logo banner

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/core (source) ^7.80.1 -> ^7.81.1 age adoption passing confidence
@sentry/integrations (source) ^7.80.1 -> ^7.81.1 age adoption passing confidence
@sentry/node (source) ^7.80.1 -> ^7.81.1 age adoption passing confidence
@sentry/utils (source) ^7.80.1 -> ^7.81.1 age adoption passing confidence
@sentry/vue (source) ^7.80.1 -> ^7.81.1 age adoption passing confidence

Release Notes

getsentry/sentry-javascript (@​sentry/core) ### [`v7.81.1`](https://togithub.com/getsentry/sentry-javascript/releases/tag/7.81.1) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/7.81.0...7.81.1) - fix(astro): Remove method from span op ([#​9603](https://togithub.com/getsentry/sentry-javascript/issues/9603)) - fix(deno): Make sure files get published ([#​9611](https://togithub.com/getsentry/sentry-javascript/issues/9611)) - fix(nextjs): Use `globalThis` instead of `global` in edge runtime ([#​9612](https://togithub.com/getsentry/sentry-javascript/issues/9612)) - fix(node): Improve error handling and shutdown handling for ANR ([#​9548](https://togithub.com/getsentry/sentry-javascript/issues/9548)) - fix(tracing-internal): Fix case when originalURL contain query params ([#​9531](https://togithub.com/getsentry/sentry-javascript/issues/9531)) Work in this release contributed by [@​powerfulyang](https://togithub.com/powerfulyang), [@​LubomirIgonda1](https://togithub.com/LubomirIgonda1), [@​joshkel](https://togithub.com/joshkel), and [@​alexgleason](https://togithub.com/alexgleason). Thank you for your contributions! #### Bundle size 📩 | Path | Size | | ---------------------------------------------------------------------------------- | ----------------- | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - Webpack (gzipped) | 65.61 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) | 55.72 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - Webpack (gzipped) | 31.01 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - Webpack (gzipped) | 21.32 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 62.03 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - ES6 CDN Bundle (gzipped) | 29.13 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES6 CDN Bundle (gzipped) | 21.26 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 195.71 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 88.38 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES6 CDN Bundle (minified & uncompressed) | 63.34 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - ES5 CDN Bundle (gzipped) | 31.85 KB | | [@​sentry/react](https://togithub.com/sentry/react) (incl. Tracing, Replay) - Webpack (gzipped) | 65.92 KB | | [@​sentry/react](https://togithub.com/sentry/react) - Webpack (gzipped) | 21.36 KB | | [@​sentry/nextjs](https://togithub.com/sentry/nextjs) Client (incl. Tracing, Replay) - Webpack (gzipped) | 82.66 KB | | [@​sentry/nextjs](https://togithub.com/sentry/nextjs) Client - Webpack (gzipped) | 48.15 KB | | [@​sentry-internal/feedback](https://togithub.com/sentry-internal/feedback) - Webpack (gzipped) | 16.12 KB | ### [`v7.81.0`](https://togithub.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7810) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/7.80.1...7.81.0) ##### Important Changes **- feat(nextjs): Add instrumentation utility for server actions ([#​9553](https://togithub.com/getsentry/sentry-javascript/issues/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: ```tsx 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 return { name: "John Doe" }; } ); } return (
); } ``` ##### Other Changes - docs(feedback): Example docs on `sendFeedback` ([#​9560](https://togithub.com/getsentry/sentry-javascript/issues/9560)) - feat(feedback): Add `level` and remove breadcrumbs from feedback event ([#​9533](https://togithub.com/getsentry/sentry-javascript/issues/9533)) - feat(vercel-edge): Add fetch instrumentation ([#​9504](https://togithub.com/getsentry/sentry-javascript/issues/9504)) - feat(vue): Support Vue 3 lifecycle hooks in mixin options ([#​9578](https://togithub.com/getsentry/sentry-javascript/issues/9578)) - fix(nextjs): Download CLI binary if it can't be found ([#​9584](https://togithub.com/getsentry/sentry-javascript/issues/9584)) - ref: Deprecate `extractTraceParentData` from `@sentry/core` & downstream packages ([#​9158](https://togithub.com/getsentry/sentry-javascript/issues/9158)) - ref(replay): Add further logging to network body parsing ([#​9566](https://togithub.com/getsentry/sentry-javascript/issues/9566)) Work in this release contributed by [@​snoozbuster](https://togithub.com/snoozbuster). Thank you for your contribution!

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 these updates again.



This PR has been generated by Mend Renovate. View repository job log here.

github-actions[bot] commented 10 months ago

size-limit report 📩

Path Size
fixture: base 379.9 KB (+0.03% đŸ”ș)
fixture: replay 499.86 KB (+0.08% đŸ”ș)
fixture: lazy 384.7 KB (+0.03% đŸ”ș)
fixture: tracing 400.15 KB (+0.04% đŸ”ș)
fixture: lazy+tracing 404.91 KB (+0.04% đŸ”ș)
fixture: typescript 380.04 KB (+0.03% đŸ”ș)