Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update dependency @sentry/astro to v8.51.0 (#1187)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@sentry/astro](https://redirect.github.com/getsentry/sentry-javascript/tree/master/packages/astro) ([source](https://redirect.github.com/getsentry/sentry-javascript)) | [`8.50.0` -> `8.51.0`](https://renovatebot.com/diffs/npm/@sentry%2fastro/8.50.0/8.51.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@sentry%2fastro/8.51.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@sentry%2fastro/8.51.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@sentry%2fastro/8.50.0/8.51.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@sentry%2fastro/8.50.0/8.51.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@​sentry/astro)</summary> ### [`v8.51.0`](https://redirect.github.com/getsentry/sentry-javascript/releases/tag/8.51.0) [Compare Source](https://redirect.github.com/getsentry/sentry-javascript/compare/8.50.0...8.51.0) ##### Important Changes - **feat(v8/node): Add `prismaInstrumentation` option to Prisma integration as escape hatch for all Prisma versions ([#​15128](https://redirect.github.com/getsentry/sentry-javascript/pull/15128))** This release adds a compatibility API to add support for Prisma version 6. To capture performance data for Prisma version 6: 1. Install the `@prisma/instrumentation` package on version 6. 2. Pass a `new PrismaInstrumentation()` instance as exported from `@prisma/instrumentation` to the `prismaInstrumentation` option: ```js import { PrismaInstrumentation } from '@​prisma/instrumentation'; Sentry.init({ integrations: [ prismaIntegration({ // Override the default instrumentation that Sentry uses prismaInstrumentation: new PrismaInstrumentation(), }), ], }); ``` The passed instrumentation instance will override the default instrumentation instance the integration would use, while the `prismaIntegration` will still ensure data compatibility for the various Prisma versions. 3. Remove the `previewFeatures = ["tracing"]` option from the client generator block of your Prisma schema. ##### Other Changes - feat(v8/browser): Add `multiplexedtransport.js` CDN bundle ([#​15046](https://redirect.github.com/getsentry/sentry-javascript/pull/15046)) - feat(v8/browser): Add Unleash integration ([#​14948](https://redirect.github.com/getsentry/sentry-javascript/pull/14948)) - feat(v8/deno): Deprecate Deno SDK as published on deno.land ([#​15121](https://redirect.github.com/getsentry/sentry-javascript/pull/15121)) - feat(v8/sveltekit): Deprecate `fetchProxyScriptNonce` option ([#​15011](https://redirect.github.com/getsentry/sentry-javascript/pull/15011)) - fix(v8/aws-lambda): Avoid overwriting root span name ([#​15054](https://redirect.github.com/getsentry/sentry-javascript/pull/15054)) - fix(v8/core): `fatal` events should set session as crashed ([#​15073](https://redirect.github.com/getsentry/sentry-javascript/pull/15073)) - fix(v8/node/nestjs): Use method on current fastify request ([#​15104](https://redirect.github.com/getsentry/sentry-javascript/pull/15104)) Work in this release was contributed by [@​tjhiggins](https://redirect.github.com/tjhiggins), and [@​nwalters512](https://redirect.github.com/nwalters512). Thank you for your contributions! #### Bundle size 📦 | Path | Size | | ---------------------------------------------------------------- | ----------------- | | [@​sentry/browser](https://redirect.github.com/sentry/browser) | 23.29 KB | | [@​sentry/browser](https://redirect.github.com/sentry/browser) - with treeshaking flags | 23.17 KB | | [@​sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing) | 35.85 KB | | [@​sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay) | 73.2 KB | | [@​sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay) - with treeshaking flags | 66.66 KB | | [@​sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay with Canvas) | 77.51 KB | | [@​sentry/browser](https://redirect.github.com/sentry/browser) (incl. Tracing, Replay, Feedback) | 89.44 KB | | [@​sentry/browser](https://redirect.github.com/sentry/browser) (incl. Feedback) | 39.5 KB | | [@​sentry/browser](https://redirect.github.com/sentry/browser) (incl. sendFeedback) | 27.9 KB | | [@​sentry/browser](https://redirect.github.com/sentry/browser) (incl. FeedbackAsync) | 32.7 KB | | [@​sentry/react](https://redirect.github.com/sentry/react) | 25.97 KB | | [@​sentry/react](https://redirect.github.com/sentry/react) (incl. Tracing) | 38.68 KB | | [@​sentry/vue](https://redirect.github.com/sentry/vue) | 27.57 KB | | [@​sentry/vue](https://redirect.github.com/sentry/vue) (incl. Tracing) | 37.71 KB | | [@​sentry/svelte](https://redirect.github.com/sentry/svelte) | 23.46 KB | | CDN Bundle | 24.5 KB | | CDN Bundle (incl. Tracing) | 37.56 KB | | CDN Bundle (incl. Tracing, Replay) | 72.85 KB | | CDN Bundle (incl. Tracing, Replay, Feedback) | 78.21 KB | | CDN Bundle - uncompressed | 71.94 KB | | CDN Bundle (incl. Tracing) - uncompressed | 111.44 KB | | CDN Bundle (incl. Tracing, Replay) - uncompressed | 225.69 KB | | CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 238.79 KB | | [@​sentry/nextjs](https://redirect.github.com/sentry/nextjs) (client) | 38.93 KB | | [@​sentry/sveltekit](https://redirect.github.com/sentry/sveltekit) (client) | 36.36 KB | | [@​sentry/node](https://redirect.github.com/sentry/node) | 162.83 KB | | [@​sentry/node](https://redirect.github.com/sentry/node) - without tracing | 99.14 KB | | [@​sentry/aws-serverless](https://redirect.github.com/sentry/aws-serverless) | 126.65 KB | </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/creatorsgarten/creatorsgarten.org). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMDcuMCIsInVwZGF0ZWRJblZlciI6IjM5LjEwNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information