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 #77207

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 9, 2024

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

Package From To
@sentry/core 8.28.0 8.29.0
@sentry/node 8.28.0 8.29.0
@sentry/react 8.28.0 8.29.0
@sentry/status-page-list 0.3.0 0.5.0
@sentry/profiling-node 8.28.0 8.29.0

Updates @sentry/core from 8.28.0 to 8.29.0

Release notes

Sourced from @​sentry/core's releases.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Changelog

Sourced from @​sentry/core's changelog.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Commits
  • 49d95ca release: 8.29.0
  • 75e898f Merge pull request #13619 from getsentry/prepare-release/8.29.0
  • d28a0e5 meta(changelog): Update changelog for 8.29.0
  • e5d1575 fix(replays): Improve replay web vital types (#13602)
  • 8a8f08f fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • bdec033 fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • a8e5f59 feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)
  • 75aa007 ci: Fix size-limit action on develop branches (#13585)
  • a7a8b80 chore(javascript): Update READMEs of Solid and SolidStart SDKs to indicate be...
  • e2213fc feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps u...
  • Additional commits viewable in compare view

Updates @sentry/node from 8.28.0 to 8.29.0

Release notes

Sourced from @​sentry/node's releases.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Changelog

Sourced from @​sentry/node's changelog.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Commits
  • 49d95ca release: 8.29.0
  • 75e898f Merge pull request #13619 from getsentry/prepare-release/8.29.0
  • d28a0e5 meta(changelog): Update changelog for 8.29.0
  • e5d1575 fix(replays): Improve replay web vital types (#13602)
  • 8a8f08f fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • bdec033 fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • a8e5f59 feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)
  • 75aa007 ci: Fix size-limit action on develop branches (#13585)
  • a7a8b80 chore(javascript): Update READMEs of Solid and SolidStart SDKs to indicate be...
  • e2213fc feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps u...
  • Additional commits viewable in compare view

Updates @sentry/react from 8.28.0 to 8.29.0

Release notes

Sourced from @​sentry/react's releases.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Changelog

Sourced from @​sentry/react's changelog.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Commits
  • 49d95ca release: 8.29.0
  • 75e898f Merge pull request #13619 from getsentry/prepare-release/8.29.0
  • d28a0e5 meta(changelog): Update changelog for 8.29.0
  • e5d1575 fix(replays): Improve replay web vital types (#13602)
  • 8a8f08f fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • bdec033 fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • a8e5f59 feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)
  • 75aa007 ci: Fix size-limit action on develop branches (#13585)
  • a7a8b80 chore(javascript): Update READMEs of Solid and SolidStart SDKs to indicate be...
  • e2213fc feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps u...
  • Additional commits viewable in compare view

Updates @sentry/status-page-list from 0.3.0 to 0.5.0

Release notes

Sourced from @​sentry/status-page-list's releases.

0.5.0

This release adds entries for Autodesk, Etsy, InfluxData, Loom, Miro, Monday.com, PlanetScale, Pleo, Ravelin, Render, Rippling, Squarespace, Twilio, and Vanta.

  • feat: Add new entries (#30)

0.4.0

This release adds entries for Jotform, Paubox, and SendGrid.

This release improves the entry for Vercel

  • feat: Add more entries (#27)

Thanks to @​houserx-jmcc for the suggestions on the new entries.

Changelog

Sourced from @​sentry/status-page-list's changelog.

0.5.0

This release adds entries for Autodesk, Etsy, InfluxData, Loom, Miro, Monday.com, PlanetScale, Pleo, Ravelin, Render, Rippling, Squarespace, Twilio, and Vanta.

  • feat: Add new entries (#30)

0.4.0

This release adds entries for Jotform, Paubox, and SendGrid.

This release improves the entry for Vercel

  • feat: Add more entries (#27)

Thanks to @​houserx-jmcc for the suggestions on the new entries.

Commits

Updates @sentry/types from 8.28.0 to 8.29.0

Release notes

Sourced from @​sentry/types's releases.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Changelog

Sourced from @​sentry/types's changelog.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Commits
  • 49d95ca release: 8.29.0
  • 75e898f Merge pull request #13619 from getsentry/prepare-release/8.29.0
  • d28a0e5 meta(changelog): Update changelog for 8.29.0
  • e5d1575 fix(replays): Improve replay web vital types (#13602)
  • 8a8f08f fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • bdec033 fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • a8e5f59 feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)
  • 75aa007 ci: Fix size-limit action on develop branches (#13585)
  • a7a8b80 chore(javascript): Update READMEs of Solid and SolidStart SDKs to indicate be...
  • e2213fc feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps u...
  • Additional commits viewable in compare view

Updates @sentry/utils from 8.28.0 to 8.29.0

Release notes

Sourced from @​sentry/utils's releases.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Changelog

Sourced from @​sentry/utils's changelog.

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493)
  • feat(vue): Only start UI spans if parent is available (#13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • fix(node-fetch): Use stringified origin url (#13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#13579)
  • fix(replay): Fix types in WebVitalData (#13573)
  • fix(replay): Improve replay web vital types (#13602)
  • fix(utils): Keep logger on carrier (#13570)

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

Commits
  • 49d95ca release: 8.29.0
  • 75e898f Merge pull request #13619 from getsentry/prepare-release/8.29.0
  • d28a0e5 meta(changelog): Update changelog for 8.29.0
  • e5d1575 fix(replays): Improve replay web vital types (#13602)
  • 8a8f08f fix(nextjs): Use posix paths for sourcemap uploads (#13603)
  • bdec033 fix(gatsby): Fix assets path for sourcemaps upload (#13592)
  • a8e5f59 feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)
  • 75aa007 ci: Fix size-limit action on develop branches (#13585)
  • a7a8b80 chore(javascript): Update READMEs of Solid and SolidStart SDKs to indicate be...
  • e2213fc feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps u...
  • Additional commits viewable in compare view

Updates @sentry/profiling-node from 8.28.0 to 8.29.0

Release notes

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

8.29.0

Important Changes

  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to use them, check out the Sentry Solid SDK README and the Sentry SolidStart SDK README respectively. Please reach out on GitHub if you have any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@sentry/node';
Sentry.init({
dsn: 'PUBLIC_DSN',
registerEsmLoaderHooks: { onlyHookedModules: true },
});

  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8 and fixes various bugs related to ESM mode.

Other Changes

  • feat(nextjs): Emit warning when using turbopack (#13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#13586)
  • feat(node): Add generic-pool integration (#13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#13382)
  • feat(solidstart): Add browserTracingIntegration by default (#13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#13493...

    Description has been truncated

…th 7 updates

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

| Package | From | To |
| --- | --- | --- |
| [@sentry/core](https://github.com/getsentry/sentry-javascript) | `8.28.0` | `8.29.0` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `8.28.0` | `8.29.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.28.0` | `8.29.0` |
| [@sentry/status-page-list](https://github.com/getsentry/status-page-list) | `0.3.0` | `0.5.0` |
| [@sentry/profiling-node](https://github.com/getsentry/sentry-javascript) | `8.28.0` | `8.29.0` |



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

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

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

Updates `@sentry/status-page-list` from 0.3.0 to 0.5.0
- [Release notes](https://github.com/getsentry/status-page-list/releases)
- [Changelog](https://github.com/getsentry/status-page-list/blob/main/CHANGELOG.md)
- [Commits](getsentry/status-page-list@0.3.0...0.5.0)

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

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

Updates `@sentry/profiling-node` from 8.28.0 to 8.29.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.28.0...8.29.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/status-page-list"
  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/profiling-node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: sentry-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner September 9, 2024 22:09
@github-actions github-actions bot added the Scope: Frontend Automatically applied to PRs that change frontend components label Sep 9, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 10, 2024

Superseded by #77287.

@dependabot dependabot bot closed this Sep 10, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/sentry-dependencies-17a8a6cfc7 branch September 10, 2024 22:10
@github-actions github-actions bot locked and limited conversation to collaborators Sep 26, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
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