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

chore(deps): update dependency @sentry/node to v8 #571

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/node (source) ^7.11.1 -> ^8.53.0 age adoption passing confidence

Release Notes

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

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!

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.84 KB
@​sentry/node - without tracing 99.15 KB
@​sentry/aws-serverless 126.67 KB

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!

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.84 KB
@​sentry/node - without tracing 99.15 KB
@​sentry/aws-serverless 126.67 KB

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!

Bundle size 📦
Path Size
@​sentry/browser 23.32 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 35.88 KB
@​sentry/browser (incl. Tracing, Replay) 73.23 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.7 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.54 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.47 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.94 KB
@​sentry/browser (incl. FeedbackAsync) 32.73 KB
@​sentry/react 26 KB
@​sentry/react (incl. Tracing) 38.71 KB
@​sentry/vue 27.6 KB
@​sentry/vue (incl. Tracing) 37.74 KB
@​sentry/svelte 23.49 KB
CDN Bundle 24.52 KB
CDN Bundle (incl. Tracing) 37.59 KB
CDN Bundle (incl. Tracing, Replay) 72.87 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.24 KB
CDN Bundle - uncompressed 72.01 KB
CDN Bundle (incl. Tracing) - uncompressed 111.51 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.76 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.86 KB
@​sentry/nextjs (client) 38.96 KB
@​sentry/sveltekit (client) 36.39 KB
@​sentry/node 162.87 KB
@​sentry/node - without tracing 99.18 KB
@​sentry/aws-serverless 126.69 KB

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!

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 23.17 KB
@​sentry/browser (incl. Tracing) 35.85 KB
@​sentry/browser (incl. Tracing, Replay) 73.2 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.66 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.51 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.44 KB
@​sentry/browser (incl. Feedback) 39.5 KB
@​sentry/browser (incl. sendFeedback) 27.9 KB
@​sentry/browser (incl. FeedbackAsync) 32.7 KB
@​sentry/react 25.97 KB
@​sentry/react (incl. Tracing) 38.68 KB
@​sentry/vue 27.57 KB
@​sentry/vue (incl. Tracing) 37.71 KB
@​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 (client) 38.93 KB
@​sentry/sveltekit (client) 36.36 KB
@​sentry/node 162.83 KB
@​sentry/node - without tracing 99.14 KB
@​sentry/aws-serverless 126.65 KB

v8.50.0

Compare Source

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

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 21.96 KB
@​sentry/browser (incl. Tracing) 35.85 KB
@​sentry/browser (incl. Tracing, Replay) 73.19 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 63.58 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.5 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.43 KB
@​sentry/browser (incl. Feedback) 39.5 KB
@​sentry/browser (incl. sendFeedback) 27.89 KB
@​sentry/browser (incl. FeedbackAsync) 32.69 KB
@​sentry/react 25.97 KB
@​sentry/react (incl. Tracing) 38.67 KB
@​sentry/vue 27.57 KB
@​sentry/vue (incl. Tracing) 37.71 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.49 KB
CDN Bundle (incl. Tracing) 37.56 KB
CDN Bundle (incl. Tracing, Replay) 72.84 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.2 KB
CDN Bundle - uncompressed 71.93 KB
CDN Bundle (incl. Tracing) - uncompressed 111.42 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.68 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.78 KB
@​sentry/nextjs (client) 38.92 KB
@​sentry/sveltekit (client) 36.35 KB
@​sentry/node 162.82 KB
@​sentry/node - without tracing 98.95 KB
@​sentry/aws-serverless 126.65 KB

v8.49.0

Compare Source

  • feat(v8/browser): Flush offline queue on flush and browser online event (#​14969)
  • feat(v8/react): Add a handled prop to ErrorBoundary (#​14978)
  • fix(profiling/v8): Don't put require, __filename and __dirname on global object (#​14952)
  • fix(v8/node): Enforce that ContextLines integration does not leave open file handles (#​14997)
  • fix(v8/replay): Disable mousemove sampling in rrweb for iOS browsers (#​14944)
  • fix(v8/sveltekit): Ensure source maps deletion is called after source ma… (#​14963)
  • fix(v8/vue): Re-throw error when no errorHandler exists (#​14943)

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

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 21.96 KB
@​sentry/browser (incl. Tracing) 35.85 KB
@​sentry/browser (incl. Tracing, Replay) 73.19 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 63.58 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.5 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.44 KB
@​sentry/browser (incl. Feedback) 39.5 KB
@​sentry/browser (incl. sendFeedback) 27.89 KB
@​sentry/browser (incl. FeedbackAsync) 32.69 KB
@​sentry/react 25.97 KB
@​sentry/react (incl. Tracing) 38.67 KB
@​sentry/vue 27.57 KB
@​sentry/vue (incl. Tracing) 37.71 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.49 KB
CDN Bundle (incl. Tracing) 37.56 KB
CDN Bundle (incl. Tracing, Replay) 72.84 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.2 KB
CDN Bundle - uncompressed 71.93 KB
CDN Bundle (incl. Tracing) - uncompressed 111.42 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.68 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.78 KB
@​sentry/nextjs (client) 38.92 KB
@​sentry/sveltekit (client) 36.36 KB
@​sentry/node 162.82 KB
@​sentry/node - without tracing 98.95 KB
@​sentry/aws-serverless 126.65 KB

v8.48.0

Compare Source

Deprecations
  • feat(v8/core): Deprecate getDomElement method (#​14799)

    Deprecates getDomElement. There is no replacement.

Other changes
  • fix(nestjs/v8): Use correct main/module path in package.json (#​14791)
  • fix(v8/core): Use consistent continueTrace implementation in core (#​14819)
  • fix(v8/node): Correctly resolve debug IDs for ANR events with custom appRoot (#​14823)
  • fix(v8/node): Ensure NODE_OPTIONS is not passed to worker threads (#​14825)
  • fix(v8/angular): Fall back to element tagName when name is not provided to TraceDirective (#​14828)
  • fix(aws-lambda): Remove version suffix from lambda layer (#​14843)
  • fix(v8/node): Ensure express requests are properly handled (#​14851)
  • feat(v8/node): Add openTelemetrySpanProcessors option (#​14853)
  • fix(v8/react): Use Set as the allRoutes container. (#​14878) (#​14884)
  • fix(v8/react): Improve handling of routes nested under path="/" (#​14897)
  • feat(v8/core): Add normalizedRequest to samplingContext (#​14903)
  • fix(v8/feedback): Avoid lazy loading code for syncFeedbackIntegration (#​14918)

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

Bundle size 📦
Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 21.96 KB
@​sentry/browser (incl. Tracing) 35.85 KB
@​sentry/browser (incl. Tracing, Replay) 73.09 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 63.48 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.4 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.34 KB
@​sentry/browser (incl. Feedback) 39.5 KB
@​sentry/browser (incl. sendFeedback) 27.89 KB
@​sentry/browser (incl. FeedbackAsync) 32.69 KB
@​sentry/react 25.96 KB
@​sentry/react (incl. Tracing) 38.66 KB
@​sentry/vue 27.56 KB
@​sentry/vue (incl. Tracing) 37.69 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.49 KB
CDN Bundle (incl. Tracing) 37.56 KB
CDN Bundle (incl. Tracing, Replay) 72.75 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.11 KB
CDN Bundle - uncompressed 71.93 KB
CDN Bundle (incl. Tracing) - uncompressed 111.42 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.5 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.6 KB
@​sentry/nextjs (client) 38.92 KB
@​sentry/sveltekit (client) 36.36 KB
@​sentry/node 162.8 KB
@​sentry/node - without tracing 98.94 KB
@​sentry/aws-serverless 126.63 KB

v8.47.0

Compare Source

  • feat(v8/core): Add updateSpanName helper function (#​14736)
  • feat(v8/node): Do not overwrite prisma db.system in newer Prisma versions (#​14772)
  • feat(v8/node/deps): Bump @​prisma/instrumentation from 5.19.1 to 5.22.0 (#​14755)
  • feat(v8/replay): Mask srcdoc iframe contents per default (#​14779)
  • ref(v8/nextjs): Fix typo in source maps deletion warning (#​14776)

Work in this release was contributed by @​aloisklink and @​benjick. Thank you for your contributions!

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 21.96 KB
@​sentry/browser (incl. Tracing) 35.81 KB
@​sentry/browser (incl. Tracing, Replay) 73.06 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 63.45 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.37 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.85 KB
@​sentry/browser (incl. Feedback) 40.04 KB
@​sentry/browser (incl. sendFeedback) 27.89 KB
@​sentry/browser (incl. FeedbackAsync) 32.68 KB
@​sentry/react 25.96 KB
@​sentry/react (incl. Tracing) 38.64 KB
@​sentry/vue 27.52 KB
@​sentry/vue (incl. Tracing) 37.67 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.47 KB
CDN Bundle (incl. Tracing) 37.51 KB
CDN Bundle (incl. Tracing, Replay) 72.71 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.1 KB
CDN Bundle - uncompressed 71.85 KB
CDN Bundle (incl. Tracing) - uncompressed 111.23 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.3 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.52 KB
@​sentry/nextjs (client) 38.9 KB
@​sentry/sveltekit (client) 36.32 KB
@​sentry/node 162.7 KB
@​sentry/node - without tracing 98.87 KB
@​sentry/aws-serverless 126.53 KB

v8.46.0

Compare Source

  • feat: Allow capture of more than 1 ANR event [v8] (#​14713)
  • feat(node): Detect Railway release name [v8] (#​14714)
  • fix: Normalise ANR debug image file paths if appRoot was supplied [v8] (#​14709)
  • fix(nuxt): Remove build config from tsconfig (#​14737)

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

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 21.96 KB
@​sentry/browser (incl. Tracing) 35.79 KB
@​sentry/browser (incl. Tracing, Replay) 73.01 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 63.41 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.32 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.81 KB
@​sentry/browser (incl. Feedback) 40.04 KB
@​sentry/browser (incl. sendFeedback) 27.89 KB
@​sentry/browser (incl. FeedbackAsync) 32.68 KB
@​sentry/react 25.96 KB
@​sentry/react (incl. Tracing) 38.6 KB
@​sentry/vue 27.49 KB
@​sentry/vue (incl. Tracing) 37.63 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.43 KB
CDN Bundle (incl. Tracing) 37.46 KB
CDN Bundle (incl. Tracing, Replay) 72.64 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.01 KB
CDN Bundle - uncompressed 71.74 KB
CDN Bundle (incl. Tracing) - uncompressed 111.05 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.1 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.32 KB
@​sentry/nextjs (client) 38.88 KB
@​sentry/sveltekit (client) 36.29 KB
@​sentry/node 162.53 KB
@​sentry/node - without tracing 98.72 KB
@​sentry/aws-serverless 126.4 KB

v8.45.1

Compare Source

  • fix(feedback): Return when the sendFeedback promise resolves (#​14683)

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 21.96 KB
@​sentry/browser (incl. Tracing) 35.79 KB
@​sentry/browser (incl. Tracing, Replay) 73.01 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 63.41 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.32 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.81 KB
@​sentry/browser (incl. Feedback) 40.04 KB
@​sentry/browser (incl. sendFeedback) 27.89 KB
@​sentry/browser (incl. FeedbackAsync) 32.68 KB
@​sentry/react 25.96 KB
@​sentry/react (incl. Tracing) 38.6 KB
@​sentry/vue 27.49 KB
@​sentry/vue (incl. Tracing) 37.63 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.43 KB
CDN Bundle (incl. Tracing) 37.46 KB
CDN Bundle (incl. Tracing, Replay) 72.64 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.01 KB
CDN Bundle - uncompressed 71.74 KB
CDN Bundle (incl. Tracing) - uncompressed 111.05 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.1 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.32 KB
@​sentry/nextjs (client) 38.88 KB
@​sentry/sveltekit (client) 36.29 KB
@​sentry/node 162.52 KB
@​sentry/node - without tracing 98.71 KB
@​sentry/aws-serverless 126.39 KB

v8.45.0

Compare Source

  • feat(core): Add handled option to captureConsoleIntegration (#​14664)
  • feat(browser): Attach virtual stack traces to HttpClient events (#​14515)
  • feat(replay): Upgrade rrweb packages to 2.31.0 (#​14689)
  • fix(aws-serverless): Remove v8 layer as it overwrites the current layer for docs (#​14679)
  • fix(browser): Mark stack trace from captureMessage with attachStacktrace: true as synthetic (#​14668)
  • fix(core): Mark stack trace from captureMessage with attatchStackTrace: true as synthetic (#​14670)
  • fix(core): Set level in server runtime captureException (#​10587)
  • fix(profiling-node): Guard invocation of native profiling methods (#​14676)
  • fix(nuxt): Inline nitro-utils function (#​14680)
  • fix(profiling-node): Ensure profileId is added to transaction event (#​14681)
  • fix(react): Add React Router Descendant Routes support (#​14304)
  • fix: Disable ANR and Local Variables if debugger is enabled via CLI args (#​14643)

Work in this release was contributed by @​anonrig and @​Zih0. Thank you for your contributions!

v8.44.0

Compare Source

Deprecations
  • feat: Deprecate autoSessionTracking (#​14640)

    Deprecates autoSessionTracking.
    To enable session tracking, it is recommended to unset autoSessionTracking and ensure that either, in browser environments
    the browserSessionIntegration is added, or in server environments the httpIntegration is added.

    To disable session tracking, it is recommended to unset autoSessionTracking and to remove the browserSessionIntegration in
    browser environments, or in server environments configure the httpIntegration with the trackIncomingRequestsAsSessions option set to false.

Other Changes
  • feat: Reword log message around unsent spans (#​14641)
  • feat(opentelemetry): Set response context for http.server spans (#​14634)
  • fix(google-cloud-serverless): Update homepage link in package.json (#​14411)
  • fix(nuxt): Add unbuild config to not fail on warn (#​14662)

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

v8.43.0

Compare Source

Important Changes
  • feat(nuxt): Add option autoInjectServerSentry (no default import()) (#​14553)

    Using the dynamic import() as the default behavior for initializing the SDK on the server-side did not work for every project.
    The default behavior of the SDK has been changed, and you now need to use the --import flag to initialize Sentry on the server-side to leverage full functionality.

    Example with --import:

    node --import ./.output/server/sentry.server.config.mjs .output/server/index.mjs

    In case you are not able to use the --import flag, you can enable auto-injecting Sentry in the nuxt.config.ts (comes with limitations):

    sentry: {
      autoInjectServerSentry: 'top-level-import', // or 'experimental_dynamic-import'
    },
  • feat(browser): Adds LaunchDarkly and OpenFeature integrations (#​14207)

    Adds browser SDK integrations for tracking feature flag evaluations through the LaunchDarkly JS SDK and OpenFeature Web SDK:

    import * as Sentry from '@​sentry/browser';
    
    Sentry.init({
      integrations: [
        // Track LaunchDarkly feature flags
        Sentry.launchDarklyIntegration(),
        // Track OpenFeature feature flags
        Sentry.openFeatureIntegration(),
      ],
    });
  • feat(browser): Add featureFlagsIntegration for custom tracking of flag evaluations (#​14582)

    Adds a browser integration to manually track feature flags with an API. Feature flags are attached to subsequent error events:

    import * as Sentry from '@​sentry/browser';
    
    const featureFlagsIntegrationInstance = Sentry.featureFlagsIntegration();
    
    Sentry.init({
      // Initialize the SDK with the feature flag integration
      integrations: [featureFlagsIntegrationInstance],
    });
    
    // Manually track a feature flag
    featureFlagsIntegrationInstance.addFeatureFlag('my-feature', true);
  • feat(astro): Add Astro 5 support (#​14613)

    With this release, the Sentry Astro SDK officially supports Astro 5.

Deprecations
  • feat(nextjs): Deprecate typedef for hideSourceMaps (#​14594)

    The functionality of hideSourceMaps was removed in version 8 but was forgotten to be deprecated and removed.
    It will be completely removed in the next major version.

  • feat(core): Deprecate APIs around RequestSessions (#​14566)

    The APIs around RequestSessions are mostly used internally.
    Going forward the SDK will not expose concepts around RequestSessions.
    Instead, functionality around server-side Release Health will be managed in integrations.

Other Changes

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 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 added the dependencies Pull requests that update a dependency file label May 13, 2024
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 3 times, most recently from ba1d946 to 4e8061f Compare May 22, 2024 20:21
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 4 times, most recently from 7e109b6 to 829dbd2 Compare May 29, 2024 18:34
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 4 times, most recently from c0c0338 to 39b585d Compare June 12, 2024 10:28
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 3 times, most recently from 5eb8908 to 16de261 Compare June 25, 2024 14:02
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 16de261 to 678aad6 Compare June 27, 2024 14:31
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 3 times, most recently from c074ed1 to 3c1eb94 Compare July 16, 2024 15:53
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from 312ec12 to aa830d9 Compare July 24, 2024 18:58
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 4 times, most recently from 0a110b2 to d6be35f Compare August 6, 2024 12:14
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from caca86f to a5dacb2 Compare August 14, 2024 08:21
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from a6ff402 to 1ad0461 Compare September 3, 2024 11:14
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 1ad0461 to ac3caa0 Compare September 7, 2024 14:21
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from 3599f68 to 8a5c3c0 Compare September 10, 2024 16:56
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from 26c6f1e to 8cf11c8 Compare September 25, 2024 10:44
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from 4345ed3 to 56de64e Compare October 3, 2024 13:46
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from d0aa2a5 to c1aaf01 Compare October 13, 2024 17:04
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from c1aaf01 to 22bb2f3 Compare October 21, 2024 13:56
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from 8a7ff43 to b2f80a9 Compare November 5, 2024 17:15
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from a371acd to 462ae4c Compare November 19, 2024 16:21
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from 08d4e6b to 0f779c6 Compare November 27, 2024 13:52
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 0f779c6 to 3736dfa Compare December 2, 2024 15:45
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 5 times, most recently from 055809e to a45affc Compare December 17, 2024 15:01
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from a45affc to 2ed5ce1 Compare December 18, 2024 21:14
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from 2e53d5c to 38a5bcc Compare January 15, 2025 10:41
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 38a5bcc to d7494a7 Compare January 15, 2025 16:20
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch 2 times, most recently from c04ebbd to d43f088 Compare January 28, 2025 18:24
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from d43f088 to 7076d69 Compare January 30, 2025 13:40
@renovate renovate bot force-pushed the renovate/major-sentry-javascript-monorepo branch from 7076d69 to 07f8f16 Compare February 1, 2025 21:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants