svthalia / thadmin

Vuejs Point of Sale frontend for custom Thalia Pay payment service
GNU Affero General Public License v3.0
0 stars 0 forks source link

Update dependency @sentry/tracing to v7.59.0 #595

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/tracing (source) 7.58.1 -> 7.59.0 age adoption passing confidence

Release Notes

getsentry/sentry-javascript (@​sentry/tracing) ### [`v7.59.0`](https://togithub.com/getsentry/sentry-javascript/releases/tag/7.59.0) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/7.58.1...7.59.0) ##### Important Changes - **feat(remix): Add Remix v2 support ([#​8415](https://togithub.com/getsentry/sentry-javascript/issues/8415))** This release adds support for Remix v2 future flags, in particular for the new error handling utilities of Remix v2. We recommend you switch to using `v2_errorBoundary` future flag to get the best error handling experience with Sentry. To capture errors from [v2 client-side ErrorBoundary](https://remix.run/docs/en/main/route/error-boundary-v2), you should define your own `ErrorBoundary` in `root.tsx` and use `Sentry.captureRemixErrorBoundaryError` helper to capture the error. ```typescript // root.tsx import { captureRemixErrorBoundaryError } from "@​sentry/remix"; export const ErrorBoundary: V2_ErrorBoundaryComponent = () => { const error = useRouteError(); captureRemixErrorBoundaryError(error); return
...
; }; ``` For server-side errors, define a [`handleError`](https://remix.run/docs/en/main/file-conventions/entry.server#handleerror) function in your server entry point and use the `Sentry.captureRemixServerException` helper to capture the error. ```ts // entry.server.tsx export function handleError( error: unknown, { request }: DataFunctionArgs ): void { if (error instanceof Error) { Sentry.captureRemixServerException(error, "remix.server", request); } else { // Optionally capture non-Error objects Sentry.captureException(error); } } ``` For more details, see the Sentry [Remix SDK](https://docs.sentry.io/platforms/javascript/guides/remix/) documentation. ##### Other Changes - feat(core): Add `ModuleMetadata` integration ([#​8475](https://togithub.com/getsentry/sentry-javascript/issues/8475)) - feat(core): Allow multiplexed transport to send to multiple releases ([#​8559](https://togithub.com/getsentry/sentry-javascript/issues/8559)) - feat(tracing): Add more network timings to http calls ([#​8540](https://togithub.com/getsentry/sentry-javascript/issues/8540)) - feat(tracing): Bring http timings out of experiment ([#​8563](https://togithub.com/getsentry/sentry-javascript/issues/8563)) - fix(nextjs): Avoid importing `SentryWebpackPlugin` in dev mode ([#​8557](https://togithub.com/getsentry/sentry-javascript/issues/8557)) - fix(otel): Use `HTTP_URL` attribute for client requests ([#​8539](https://togithub.com/getsentry/sentry-javascript/issues/8539)) - fix(replay): Better session storage check ([#​8547](https://togithub.com/getsentry/sentry-javascript/issues/8547)) - fix(replay): Handle errors in `beforeAddRecordingEvent` callback ([#​8548](https://togithub.com/getsentry/sentry-javascript/issues/8548)) - fix(tracing): Improve network.protocol.version ([#​8502](https://togithub.com/getsentry/sentry-javascript/issues/8502)) #### Bundle size πŸ“¦ | Path | Size | | ---------------------------------------------------------------------------------------- | ---------------- | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES5 CDN Bundle (gzipped + minified) | 21.95 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES5 CDN Bundle (minified) | 69.13 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES6 CDN Bundle (gzipped + minified) | 20.28 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES6 CDN Bundle (minified) | 60.38 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - Webpack (gzipped + minified) | 21.9 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - Webpack (minified) | 71.51 KB | | [@​sentry/react](https://togithub.com/sentry/react) - Webpack (gzipped + minified) | 21.92 KB | | [@​sentry/nextjs](https://togithub.com/sentry/nextjs) Client - Webpack (gzipped + minified) | 50.76 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) + [@​sentry/tracing](https://togithub.com/sentry/tracing) - ES5 CDN Bundle (gzipped + minified) | 30.33 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) + [@​sentry/tracing](https://togithub.com/sentry/tracing) - ES6 CDN Bundle (gzipped + minified) | 28.2 KB | | [@​sentry/replay](https://togithub.com/sentry/replay) ES6 CDN Bundle (gzipped + minified) | 49.44 KB | | [@​sentry/replay](https://togithub.com/sentry/replay) - Webpack (gzipped + minified) | 43.16 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) + [@​sentry/tracing](https://togithub.com/sentry/tracing) + [@​sentry/replay](https://togithub.com/sentry/replay) - ES6 CDN Bundle (gzipped + minified) | 69.56 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) + [@​sentry/replay](https://togithub.com/sentry/replay) - ES6 CDN Bundle (gzipped + minified) | 61.83 KB |

Configuration

πŸ“… Schedule: Branch creation - "every weekday except on Monday,every weekend,before 5pm on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

πŸ”• Ignore: Close this PR and you won't be reminded about this update again.



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