impactMarket / app

impactMarket WebApp
https://app.impactmarket.com
Apache License 2.0
2 stars 1 forks source link

Build(deps): Bump @sentry/integrations from 7.80.0 to 7.82.0 #666

Closed dependabot[bot] closed 10 months ago

dependabot[bot] commented 11 months ago

Bumps @sentry/integrations from 7.80.0 to 7.82.0.

Release notes

Sourced from @​sentry/integrations's releases.

7.82.0

  • feat(astro): Automatically add Sentry middleware in Astro integration (#9532)
  • feat(core): Add optional setup hook to integrations (#9556)
  • feat(core): Add top level getClient() method (#9638)
  • feat(core): Allow to pass mechanism as event hint (#9590)
  • feat(core): Allow to use continueTrace without callback (#9615)
  • feat(feedback): Add onClose callback to showReportDialog (#9433) (#9550)
  • feat(nextjs): Add request data to all edge-capable functionalities (#9636)
  • feat(node): Add Spotlight option to Node SDK (#9629)
  • feat(utils): Refactor addInstrumentationHandler to dedicated methods (#9542)
  • fix: Make full url customizable for Spotlight (#9652)
  • fix(astro): Remove Auth Token existence check (#9651)
  • fix(nextjs): Fix middleware detection logic (#9637)
  • fix(remix): Skip capturing aborted requests (#9659)
  • fix(replay): Add BODY_PARSE_ERROR warning & time out fetch response load (#9622)
  • fix(tracing): Filter out invalid resource sizes (#9641)
  • ref: Hoist RequestData integration to @sentry/core (#9597)
  • ref(feedback): Rename onDialog* to onForm*, remove onActorClick (#9625)

Work in this release contributed by @​arya-s. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 66.02 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 56.21 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 31.19 KB
@​sentry/browser - Webpack (gzipped) 21.4 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 62.65 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.47 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 21.55 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 197.27 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 89.15 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 64.12 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 32.13 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 66.43 KB
@​sentry/react - Webpack (gzipped) 21.45 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 83.16 KB
@​sentry/nextjs Client - Webpack (gzipped) 48.32 KB
@​sentry-internal/feedback - Webpack (gzipped) 16.19 KB

7.81.1

  • 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!

... (truncated)

Changelog

Sourced from @​sentry/integrations's changelog.

7.82.0

  • feat(astro): Automatically add Sentry middleware in Astro integration (#9532)
  • feat(core): Add optional setup hook to integrations (#9556)
  • feat(core): Add top level getClient() method (#9638)
  • feat(core): Allow to pass mechanism as event hint (#9590)
  • feat(core): Allow to use continueTrace without callback (#9615)
  • feat(feedback): Add onClose callback to showReportDialog (#9433) (#9550)
  • feat(nextjs): Add request data to all edge-capable functionalities (#9636)
  • feat(node): Add Spotlight option to Node SDK (#9629)
  • feat(utils): Refactor addInstrumentationHandler to dedicated methods (#9542)
  • fix: Make full url customizable for Spotlight (#9652)
  • fix(astro): Remove Auth Token existence check (#9651)
  • fix(nextjs): Fix middleware detection logic (#9637)
  • fix(remix): Skip capturing aborted requests (#9659)
  • fix(replay): Add BODY_PARSE_ERROR warning & time out fetch response load (#9622)
  • fix(tracing): Filter out invalid resource sizes (#9641)
  • ref: Hoist RequestData integration to @sentry/core (#9597)
  • ref(feedback): Rename onDialog* to onForm*, remove onActorClick (#9625)

Work in this release contributed by @​arya-s. Thank you for your contribution!

7.81.1

  • 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!

7.81.0

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( </tr></table>

... (truncated)

Commits
  • b6373e3 release: 7.82.0
  • 853f50b Merge pull request #9661 from getsentry/prepare-release/7.82.0
  • cf8cda8 meta(changelog): Update changelog for 7.82.0
  • 4c75f85 fix(remix): Skip capturing aborted requests. (#9659)
  • 61bcf73 feat(astro): Automatically add Sentry middleware in Astro integration (#9532)
  • 739d904 fix: Make full url customizable for Spotlight (#9652)
  • 075cc6e fix: Remove Auth Token check here (#9651)
  • eb2d726 feat(nextjs): Add request data to all edge-capable functionalities (#9636)
  • 8c9ff6b fix(nextjs): Fix middleware detection logic (#9637)
  • 08818d8 fix(tracing): Filter out invalid resource sizes (#9641)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
vercel[bot] commented 11 months ago

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

Name Status Preview Comments Updated (UTC)
app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 27, 2023 11:06pm