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): bump the sentry-dependencies group across 1 directory with 7 updates #83882

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 22, 2025

Bumps the sentry-dependencies group with 7 updates in the / directory:

Package From To
@sentry/core 8.48.0 8.51.0
@sentry/node 8.48.0 8.51.0
@sentry/react 8.48.0 8.51.0
@sentry/types 8.48.0 8.51.0
@sentry/utils 8.48.0 8.51.0
@sentry/webpack-plugin 2.22.4 3.0.0
@sentry/profiling-node 8.48.0 8.51.0

Updates @sentry/core from 8.48.0 to 8.51.0

Release notes

Sourced from @​sentry/core's releases.

8.51.0

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

... (truncated)

Changelog

Sourced from @​sentry/core's changelog.

8.51.0

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!

8.50.0

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

8.49.0

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

... (truncated)

Commits
  • 3a0e160 release: 8.51.0
  • e9a5f00 meta: Update Changelog for 8.51.0 (#15113)
  • d9138ff feat(node/v8): Add prismaInstrumentation option to Prisma integration as es...
  • d7aa93f feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • 79c2c2a feat(deno): Deprecate Deno SDK as published on deno.land (#15121)
  • b0dc860 feat(flags/v8): Add Unleash integration (#14948)
  • 5f47fbb chore(v8/deps): Deduplicate yarn.lock (#15094)
  • 8b870ba fix(v8/node/nestjs): Use method on current fastify request (#15104)
  • d296ce0 fix(v8/core): fatal events should set session as crashed (#15073)
  • dd2201e chore(v8/deps): Upgrade to Vitest 2.1.8 and Vite 5.4.11 (#15038)
  • Additional commits viewable in compare view

Updates @sentry/node from 8.48.0 to 8.51.0

Release notes

Sourced from @​sentry/node's releases.

8.51.0

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

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

8.51.0

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!

8.50.0

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

8.49.0

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

... (truncated)

Commits
  • 3a0e160 release: 8.51.0
  • e9a5f00 meta: Update Changelog for 8.51.0 (#15113)
  • d9138ff feat(node/v8): Add prismaInstrumentation option to Prisma integration as es...
  • d7aa93f feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • 79c2c2a feat(deno): Deprecate Deno SDK as published on deno.land (#15121)
  • b0dc860 feat(flags/v8): Add Unleash integration (#14948)
  • 5f47fbb chore(v8/deps): Deduplicate yarn.lock (#15094)
  • 8b870ba fix(v8/node/nestjs): Use method on current fastify request (#15104)
  • d296ce0 fix(v8/core): fatal events should set session as crashed (#15073)
  • dd2201e chore(v8/deps): Upgrade to Vitest 2.1.8 and Vite 5.4.11 (#15038)
  • Additional commits viewable in compare view

Updates @sentry/react from 8.48.0 to 8.51.0

Release notes

Sourced from @​sentry/react's releases.

8.51.0

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

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

8.51.0

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!

8.50.0

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

8.49.0

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

... (truncated)

Commits
  • 3a0e160 release: 8.51.0
  • e9a5f00 meta: Update Changelog for 8.51.0 (#15113)
  • d9138ff feat(node/v8): Add prismaInstrumentation option to Prisma integration as es...
  • d7aa93f feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • 79c2c2a feat(deno): Deprecate Deno SDK as published on deno.land (#15121)
  • b0dc860 feat(flags/v8): Add Unleash integration (#14948)
  • 5f47fbb chore(v8/deps): Deduplicate yarn.lock (#15094)
  • 8b870ba fix(v8/node/nestjs): Use method on current fastify request (#15104)
  • d296ce0 fix(v8/core): fatal events should set session as crashed (#15073)
  • dd2201e chore(v8/deps): Upgrade to Vitest 2.1.8 and Vite 5.4.11 (#15038)
  • Additional commits viewable in compare view

Updates @sentry/types from 8.48.0 to 8.51.0

Release notes

Sourced from @​sentry/types's releases.

8.51.0

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

... (truncated)

Changelog

Sourced from @​sentry/types's changelog.

8.51.0

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!

8.50.0

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

8.49.0

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

... (truncated)

Commits
  • 3a0e160 release: 8.51.0
  • e9a5f00 meta: Update Changelog for 8.51.0 (#15113)
  • d9138ff feat(node/v8): Add prismaInstrumentation option to Prisma integration as es...
  • d7aa93f feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • 79c2c2a feat(deno): Deprecate Deno SDK as published on deno.land (#15121)
  • b0dc860 feat(flags/v8): Add Unleash integration (#14948)
  • 5f47fbb chore(v8/deps): Deduplicate yarn.lock (#15094)
  • 8b870ba fix(v8/node/nestjs): Use method on current fastify request (#15104)
  • d296ce0 fix(v8/core): fatal events should set session as crashed (#15073)
  • dd2201e chore(v8/deps): Upgrade to Vitest 2.1.8 and Vite 5.4.11 (#15038)
  • Additional commits viewable in compare view

Updates @sentry/utils from 8.48.0 to 8.51.0

Release notes

Sourced from @​sentry/utils's releases.

8.51.0

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

... (truncated)

Changelog

Sourced from @​sentry/utils's changelog.

8.51.0

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!

8.50.0

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

8.49.0

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

... (truncated)

Commits
  • 3a0e160 release: 8.51.0
  • e9a5f00 meta: Update Changelog for 8.51.0 (#15113)
  • d9138ff feat(node/v8): Add prismaInstrumentation option to Prisma integration as es...
  • d7aa93f feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • 79c2c2a feat(deno): Deprecate Deno SDK as published on deno.land (#15121)
  • b0dc860 feat(flags/v8): Add Unleash integration (#14948)
  • 5f47fbb chore(v8/deps): Deduplicate yarn.lock (#15094)
  • 8b870ba fix(v8/node/nestjs): Use method on current fastify request (#15104)
  • d296ce0 fix(v8/core): fatal events should set session as crashed (#15073)
  • dd2201e chore(v8/deps): Upgrade to Vitest 2.1.8 and Vite 5.4.11 (#15038)
  • Additional commits viewable in compare view

Updates @sentry/webpack-plugin from 2.22.4 to 3.0.0

Release notes

Sourced from @​sentry/webpack-plugin's releases.

3.0.0

Breaking Changes

  • Injected code will now use let, which was added in ES6 (ES2015). This means that ES6 is the minimum JavaScript version that the Sentry bundler plugins support.

  • Deprecated options have been removed:

    • deleteFilesAfterUpload - Use filesToDeleteAfterUpload instead
    • bundleSizeOptimizations.excludePerformanceMonitoring - Use bundleSizeOptimizations.excludeTracing instead
    • _experiments.moduleMetadata - Use moduleMetadata instead
    • cleanArtifacts - Did not do anything

List of Changes

  • fix!: Wrap injected code in block-statement to contain scope (#646)
  • chore!: Remove deprecated options (#654)
  • feat(logger): Use console methods respective to log level (#652)
  • fix(webpack): Ensure process exits when done (#653)
  • fix: Use correct replacement matcher for bundleSizeOptimizations.excludeTracing (#644)

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

2.23.0

  • chore(deps): bump nanoid from 3.3.6 to 3.3.8 (#641)
  • feat(core): Detect Railway release name (#639)
  • feat(core): Write module injections to globalThis (#636)
  • feat(react-component-annotate): Allow skipping annotations on specified components (#617)
  • ref(core): Rename release management plugin name (#647)

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

2.22.7

  • deps: Bump @sentry/cli to 2.39.1 and require specific version (#632)
  • feat(telemetry): Record if plugin is run in CI (#627)

2.22.6

  • fix(core): Use sha256 instead of md5 to generate uuids from string (#619)

2.22.5

  • fix: Ignore stderr output from git command (#613)
  • feat: Update Sentry telemetry to v8 (#604)
  • deps: Update @sentry/cli to 2.36.1 (#609)
Changelog

Sourced from @​sentry/webpack-plugin's changelog.

3.0.0

Breaking Changes

  • Injected code will now use let, which was added in ES6 (ES2015). This means that ES6 is the minimum JavaScript version that the Sentry bundler plugins support.

  • Deprecated options have been removed:

    • deleteFilesAfterUpload - Use filesToDeleteAfterUpload instead
    • bundleSizeOptimizations.excludePerformanceMonitoring - Use bundleSizeOptimizations.excludeTracing instead
    • _experiments.moduleMetadata - Use moduleMetadata instead
    • cleanArtifacts - Did not do anything

List of Changes

  • fix!: Wrap injected code in block-statement to contain scope (#646)
  • chore!: Remove deprecated options (#654)
  • feat(logger): Use console methods respective to log level (#652)
  • fix(webpack): Ensure process exits when done (#653)
  • fix: Use correct replacement matcher for bundleSizeOptimizations.excludeTracing (#644)

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

2.23.0

  • chore(deps): bump nanoid from 3.3.6 to 3.3.8 (#641)
  • feat(core): Detect Railway release name (#639)
  • feat(core): Write module injections to globalThis (#636)
  • feat(react-component-annotate): Allow skipping annotations on specified components (#617)
  • ref(core): Rename release management plugin name (#647)

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

2.22.7

  • deps: Bump @sentry/cli to 2.39.1 and require specific version (#632)
  • feat(telemetry): Record if plugin is run in CI (#627)

2.22.6

  • fix(core): Use sha256 instead of md5 to generate uuids from string (#619)

2.22.5

  • fix: Ignore stderr output from git command (#613)
  • feat: Update Sentry telemetry to v8 (#604)
  • deps: Update @sentry/cli to 2.36.1 (#609)
Commits
  • 3daff7b release: 3.0.0
  • 0316641 meta: Update changelog for 3.0.0 (#657)
  • 07a98c8 Revert "feat(core)!: Use globalThis for code injection" (#656)
  • 57ad14f fix: Use correct replacement matcher for `bundleSizeOptimizations.excludeTrac...
  • 8eb6c5f feat(core)!: Use globalThis for code injection (#610)
  • b734d45 fix!: Wrap injected code in block-statement to contain scope (#646)
  • 0074fb8 chore: Remove deprecated options and update changelog for v3 major (#654)
  • e729f02 fix(webpack): Ensure process exits when done (#653)
  • 1547fea feat(logger): Use console methods respective to log level (#652)
  • 01404ae Merge branch 'release/2.23.0'
  • Additional commits viewable in compare view

Updates @sentry/profiling-node from 8.48.0 to 8.51.0

Release notes

Sourced from @​sentry/profiling-node's releases.

8.51.0

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

      Description has been truncated

@dependabot dependabot bot requested a review from a team as a code owner January 22, 2025 23:15
@dependabot dependabot bot requested a review from a team January 22, 2025 23:15
@github-actions github-actions bot added the Scope: Frontend Automatically applied to PRs that change frontend components label Jan 22, 2025
…th 7 updates

Bumps the sentry-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@sentry/core](https://github.com/getsentry/sentry-javascript) | `8.48.0` | `8.51.0` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `8.48.0` | `8.51.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.48.0` | `8.51.0` |
| [@sentry/types](https://github.com/getsentry/sentry-javascript) | `8.48.0` | `8.51.0` |
| [@sentry/utils](https://github.com/getsentry/sentry-javascript) | `8.48.0` | `8.51.0` |
| [@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins) | `2.22.4` | `3.0.0` |
| [@sentry/profiling-node](https://github.com/getsentry/sentry-javascript) | `8.48.0` | `8.51.0` |



Updates `@sentry/core` from 8.48.0 to 8.51.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.51.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.48.0...8.51.0)

Updates `@sentry/node` from 8.48.0 to 8.51.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.51.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.48.0...8.51.0)

Updates `@sentry/react` from 8.48.0 to 8.51.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.51.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.48.0...8.51.0)

Updates `@sentry/types` from 8.48.0 to 8.51.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.51.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.48.0...8.51.0)

Updates `@sentry/utils` from 8.48.0 to 8.51.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.51.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.48.0...8.51.0)

Updates `@sentry/webpack-plugin` from 2.22.4 to 3.0.0
- [Release notes](https://github.com/getsentry/sentry-javascript-bundler-plugins/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript-bundler-plugins@2.22.4...3.0.0)

Updates `@sentry/profiling-node` from 8.48.0 to 8.51.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/8.51.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.48.0...8.51.0)

---
updated-dependencies:
- dependency-name: "@sentry/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry-dependencies
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry-dependencies
- dependency-name: "@sentry/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry-dependencies
- dependency-name: "@sentry/types"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry-dependencies
- dependency-name: "@sentry/utils"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry-dependencies
- dependency-name: "@sentry/webpack-plugin"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sentry-dependencies
- dependency-name: "@sentry/profiling-node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: sentry-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/sentry-dependencies-fa6390bd24 branch from b98e31c to 4c50098 Compare January 23, 2025 23:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Scope: Frontend Automatically applied to PRs that change frontend components
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants