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

Update dependency @sentry/node to v8.55.0 #250

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 9, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/node (source) 8.49.0 -> 8.55.0 age adoption passing confidence

Release Notes

getsentry/sentry-javascript (@​sentry/node)

v8.55.0

Compare Source

Important Changes
  • chore(ci/v8): Switch lambda layer name to SentryNodeServerlessSDKv8 (#​15351)

The SentryNodeServerlessSDK AWS Lambda Layer will stop receiving updates.
If you intend to stay on v8 and receive updates use SentryNodeServerlessSDKv8 instead.

Other Changes
  • feat(flags/v8): add Statsig browser integration (#​15347)
  • feat(v8/node): Add missing vercelAIIntegration export (#​15339)
  • feat(v8/nuxt): Add enabled to disable Sentry module (#​15337) (#​15381)
  • feat(v8/vue): Support Pinia v3 (#​15384)
  • fix(astro): Add vue to registerEsmLoaderHooks (#​15352)
  • fix(react/v8): Support lazy-loaded routes and components (#​15281)
  • fix(v8/nuxt): Detect Azure Function runtime for flushing with timeout (#​15297)
  • fix(v8/solidstart): Do not copy release-injection map file (#​15304)
  • fix(v8/svelte): Guard component tracking beforeUpdate call (#​15262)

Work in this release was contributed by @​aryanvdesh. Thank you for your contribution!

Bundle size 📦
Path Size
@​sentry/browser 23.3 KB
@​sentry/browser - with treeshaking flags 23.17 KB
@​sentry/browser (incl. Tracing) 35.9 KB
@​sentry/browser (incl. Tracing, Replay) 73.27 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.71 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.57 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.5 KB
@​sentry/browser (incl. Feedback) 39.51 KB
@​sentry/browser (incl. sendFeedback) 27.91 KB
@​sentry/browser (incl. FeedbackAsync) 32.71 KB
@​sentry/react 25.98 KB
@​sentry/react (incl. Tracing) 38.71 KB
@​sentry/vue 27.58 KB
@​sentry/vue (incl. Tracing) 37.75 KB
@​sentry/svelte 23.46 KB
CDN Bundle 24.49 KB
CDN Bundle (incl. Tracing) 37.6 KB
CDN Bundle (incl. Tracing, Replay) 72.9 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.23 KB
CDN Bundle - uncompressed 71.92 KB
CDN Bundle (incl. Tracing) - uncompressed 111.52 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.78 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.88 KB
@​sentry/nextjs (client) 38.96 KB
@​sentry/sveltekit (client) 36.4 KB
@​sentry/node 162.85 KB
@​sentry/node - without tracing 99.14 KB
@​sentry/aws-serverless 131.23 KB

v8.54.0

Compare Source

  • feat(v8/deps): Upgrade all OpenTelemetry dependencies (#​15098)
  • fix(node/v8): Add compatibility layer for Prisma v5 (#​15210)

Work in this release was contributed by @​nwalters512. Thank you for your contribution!

v8.53.0

Compare Source

  • feat(v8/nuxt): Add url to SourcemapsUploadOptions (#​15202)
  • fix(v8/react): fromLocation can be undefined in Tanstack Router Instrumentation (#​15237)

Work in this release was contributed by @​tannerlinsley. Thank you for your contribution!

v8.52.1

Compare Source

  • fix(v8/nextjs): Fix nextjs build warning (#​15226)
  • ref(v8/browser): Add protocol attributes to resource spans #​15224
  • ref(v8/core): Don't set this.name to new.target.prototype.constructor.name (#​15222)

Work in this release was contributed by @​Zen-cronic. Thank you for your contribution!

v8.52.0

Compare Source

Important Changes
  • feat(solidstart): Add withSentry wrapper for SolidStart config (#​15135)

To enable the SolidStart SDK, wrap your SolidStart Config with withSentry. The sentrySolidStartVite plugin is now automatically
added by withSentry and you can pass the Sentry build-time options like this:

import { defineConfig } from '@​solidjs/start/config';
import { withSentry } from '@​sentry/solidstart';

export default defineConfig(
  withSentry(
    {
      /* Your SolidStart config options... */
    },
    {
      // Options for setting up source maps
      org: process.env.SENTRY_ORG,
      project: process.env.SENTRY_PROJECT,
      authToken: process.env.SENTRY_AUTH_TOKEN,
    },
  ),
);

With the withSentry wrapper, the Sentry server config should not be added to the public directory anymore.
Add the Sentry server config in src/instrument.server.ts. Then, the server config will be placed inside the server build output as instrument.server.mjs.

Now, there are two options to set up the SDK:

  1. (recommended) Provide an --import CLI flag to the start command like this (path depends on your server setup):
    node --import ./.output/server/instrument.server.mjs .output/server/index.mjs
  2. Add autoInjectServerSentry: 'top-level-import' and the Sentry config will be imported at the top of the server entry (comes with tracing limitations)
    withSentry(
      {
        /* Your SolidStart config options... */
      },
      {
        // Optional: Install Sentry with a top-level import
        autoInjectServerSentry: 'top-level-import',
      },
    );
Other Changes
  • feat(v8/core): Add client outcomes for breadcrumbs buffer (#​15149)
  • feat(v8/core): Improve error formatting in ZodErrors integration (#​15155)
  • fix(v8/bun): Ensure instrumentation of Bun.serve survives a server reload (#​15157)
  • fix(v8/core): Pass module into loadModule (#​15139) (#​15166)

Work in this release was contributed by @​jahands, @​jrandolf, and @​nathankleyn. Thank you for your contributions!

v8.51.0

Compare Source

Important Changes
  • feat(v8/node): Add prismaInstrumentation option to Prisma integration as escape hatch for all Prisma versions (#​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:

      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)
  • feat(v8/browser): Add Unleash integration (#​14948)
  • feat(v8/deno): Deprecate Deno SDK as published on deno.land (#​15121)
  • feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#​15011)
  • fix(v8/aws-lambda): Avoid overwriting root span name (#​15054)
  • fix(v8/core): fatal events should set session as crashed (#​15073)
  • fix(v8/node/nestjs): Use method on current fastify request (#​15104)

Work in this release was contributed by @​tjhiggins, and @​nwalters512. Thank you for your contributions!

v8.50.0

Compare Source

  • feat(v8/react): Add support for React Router createMemoryRouter (#​14985)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "* 17-23 * * 5,* * * * 0,6,* 0-12 * * 1" (UTC).

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency @sentry/node to v8.48.0 Update dependency @sentry/node to v8.48.0 - autoclosed Jan 28, 2025
@renovate renovate bot closed this Jan 28, 2025
@renovate renovate bot deleted the renovate/sentry-javascript-monorepo branch January 28, 2025 22:34
@renovate renovate bot changed the title Update dependency @sentry/node to v8.48.0 - autoclosed Update dependency @sentry/node to v8.48.0 Jan 29, 2025
@renovate renovate bot reopened this Jan 29, 2025
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 1900c0d to 8f24bbc Compare January 29, 2025 11:28
@renovate renovate bot changed the title Update dependency @sentry/node to v8.48.0 Update dependency @sentry/node to v8.52.0 Jan 29, 2025
@renovate renovate bot enabled auto-merge (squash) April 3, 2025 21:20
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 8f24bbc to b3f6e76 Compare April 3, 2025 21:20
@renovate renovate bot changed the title Update dependency @sentry/node to v8.52.0 Update dependency @sentry/node to v8.55.0 Apr 3, 2025
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from b3f6e76 to 07a0de7 Compare April 4, 2025 00:40
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 07a0de7 to 20f85c8 Compare April 4, 2025 04:23
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 20f85c8 to 131b358 Compare April 7, 2025 13:48
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 131b358 to b7c7f0f Compare April 7, 2025 14:05
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from b7c7f0f to 9da01f5 Compare April 8, 2025 05:37
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 9da01f5 to 3fda2ce Compare April 8, 2025 06:07
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 3fda2ce to 5478f99 Compare April 8, 2025 09:18
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 5478f99 to ce66c47 Compare April 8, 2025 09:19
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from ce66c47 to d94905c Compare April 8, 2025 12:47
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 4210db2 to 0570f50 Compare April 9, 2025 09:02
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 0570f50 to 1903d23 Compare April 9, 2025 10:23
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 1903d23 to a88d651 Compare April 10, 2025 07:04
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from a88d651 to 4e9b54e Compare April 10, 2025 07:32
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 4e9b54e to 8013524 Compare April 10, 2025 08:41
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 8013524 to 598c526 Compare April 10, 2025 12:57
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 598c526 to 6192adb Compare April 10, 2025 16:44
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 6192adb to 240f78b Compare April 10, 2025 17:25
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 240f78b to 16f8759 Compare April 10, 2025 17:43
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 16f8759 to c000eba Compare April 11, 2025 10:47
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from c000eba to af55dc4 Compare April 13, 2025 16:37
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from af55dc4 to 9450bad Compare April 14, 2025 09:30
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 9450bad to 4657f3d Compare April 14, 2025 10:30
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 4657f3d to bbd64b4 Compare April 14, 2025 12:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants