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 8 updates #75701

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 6, 2024

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

Package From To
@sentry/babel-plugin-component-annotate 2.16.1 2.21.1
@sentry/core 8.18.0 8.24.0
@sentry/node 8.18.0 8.24.0
@sentry/react 8.18.0 8.24.0
@sentry/status-page-list 0.3.0 0.4.0
@sentry/profiling-node 8.18.0 8.24.0

Updates @sentry/babel-plugin-component-annotate from 2.16.1 to 2.21.1

Release notes

Sourced from @​sentry/babel-plugin-component-annotate's releases.

2.21.1

  • fix: Do not delete files before all upload tasks executed (#572)

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

2.21.0

  • fix: Use sequential and post order for vite artifact deletion (#568)
  • feat: Add option to disable sourcemaps (#561)

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

2.20.1

  • feat(telemetry): Collect whether applicationKey is set (#559)
  • fix: Wait for tasks depending on sourcemaps before deleting (#557)

2.20.0

  • feat: Export esbuild plugin as default (#555)

2.19.0

  • feat: Don't use word "error" in log message about telemetry (#548)
  • feat(core): Detect releases from more providers (#549)
  • fix: Always delete files when sourcemaps.filesToDeleteAfterUpload is set (#547)
  • fix(vite): Fix environment variable loading issue for Windows (#545)

Work in this release contributed by @​Rassilion, and @​mateusz-daniluk-xtb. Thank you for your contributions!

2.18.0

  • feat: Add applicationKey option to identify application code from within the SDK (#540)
  • feat: Allow passing of meta-framework as telemetry data (#539)
  • feat: Promote experimental moduleMetadata option to stable (#538)
  • fix(esbuild): Invert warning about bundle: true (#542)

2.17.0

  • feat: Deprecate and noop cleanArtifacts (#525)
  • feat: Support Heroku env vars when inferring release name (#517)
  • fix(docs): Update pnpm install commands (#516)
  • misc(esbuild): Log warning when attempting to inject debug IDs with esbuild bundle option active (#526)

Work in this release contributed by @​et84121, and @​duailibe. Thank you for your contributions!

Changelog

Sourced from @​sentry/babel-plugin-component-annotate's changelog.

2.21.1

  • fix: Do not delete files before all upload tasks executed (#572)

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

2.21.0

  • fix: Use sequential and post order for vite artifact deletion (#568)
  • feat: Add option to disable sourcemaps (#561)

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

2.20.1

  • feat(telemetry): Collect whether applicationKey is set (#559)
  • fix: Wait for tasks depending on sourcemaps before deleting (#557)

2.20.0

  • feat: Export esbuild plugin as default (#555)

2.19.0

  • feat: Don't use word "error" in log message about telemetry (#548)
  • feat(core): Detect releases from more providers (#549)
  • fix: Always delete files when sourcemaps.filesToDeleteAfterUpload is set (#547)
  • fix(vite): Fix environment variable loading issue for Windows (#545)

Work in this release contributed by @​Rassilion, and @​mateusz-daniluk-xtb. Thank you for your contributions!

2.18.0

  • feat: Add applicationKey option to identify application code from within the SDK (#540)
  • feat: Allow passing of meta-framework as telemetry data (#539)
  • feat: Promote experimental moduleMetadata option to stable (#538)
  • fix(esbuild): Invert warning about bundle: true (#542)

2.17.0

  • feat: Deprecate and noop cleanArtifacts (#525)
  • feat: Support Heroku env vars when inferring release name (#517)
  • fix(docs): Update pnpm install commands (#516)
  • misc(esbuild): Log warning when attempting to inject debug IDs with esbuild bundle option active (#526)

Work in this release contributed by @​et84121, and @​duailibe. Thank you for your contributions!

Commits
  • a05ce77 release: 2.21.1
  • 060f323 meta: Update changelog for 2.21.1
  • e66910d fix: Do not delete files before all upload tasks executed (#572)
  • c68361a Merge branch 'release/2.21.0'
  • 277064f release: 2.21.0
  • 5891db6 meta: Update changelog for 2.21.0
  • e26b875 fix: Use sequential and post order for vite artifact deletion (#568)
  • a7e69d3 feat: Add option to disable sourcemaps (#561)
  • 9bb19f3 chore: Add contributors to README (#558)
  • 5e53faa Merge branch 'release/2.20.1'
  • Additional commits viewable in compare view

Updates @sentry/core from 8.18.0 to 8.24.0

Release notes

Sourced from @​sentry/core's releases.

8.24.0

  • feat(nestjs): Filter RPC exceptions (#13227)
  • fix: Guard getReader function for other fetch implementations (#13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)

8.23.0

Important Changes

  • feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1 database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();

Other Changes

  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
  • feat(cloudflare): Instrument scheduled handler (#13114)
  • feat(core): Add getTraceData function (#13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#13137)
  • feat(nuxt): Filter out Nuxt build assets (#13148)
  • feat(profiling): Attach sdk info to chunks (#13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#13202)
  • ref(browser): Improve browserMetrics collection (#13062)

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

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it, please see the README. Any feedback/bug reports are greatly appreciated, please reach out on GitHub.

... (truncated)

Changelog

Sourced from @​sentry/core's changelog.

8.24.0

  • feat(nestjs): Filter RPC exceptions (#13227)
  • fix: Guard getReader function for other fetch implementations (#13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)

8.23.0

Important Changes

  • feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1 database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();

Other Changes

  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
  • feat(cloudflare): Instrument scheduled handler (#13114)
  • feat(core): Add getTraceData function (#13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#13137)
  • feat(nuxt): Filter out Nuxt build assets (#13148)
  • feat(profiling): Attach sdk info to chunks (#13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#13202)
  • ref(browser): Improve browserMetrics collection (#13062)

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

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it,

... (truncated)

Commits
  • 7730bef release: 8.24.0
  • d73daeb Merge pull request #13249 from getsentry/prepare-release/8.24.0
  • 7c7e2e2 meta: Update changelog for 8.24.0
  • 7fc479f ref(core): Reduce hasTracingEnabled size (#13232)
  • ddff302 fix: Guard getReader function for other fetch implementations (#13246)
  • d125ff2 build(deps): bump nuxt from 3.11.2 to 3.12.4 in /dev-packages/e2e-tests/test-...
  • c8054cc tests(e2e): Remove await timeout in nest e2e tests (#13243)
  • 22905fe fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)
  • ea20c21 test(e2e): Fix event buffering (#13233)
  • 420aaf8 test(nuxt): Unit tests for event filter (#13229)
  • Additional commits viewable in compare view

Updates @sentry/node from 8.18.0 to 8.24.0

Release notes

Sourced from @​sentry/node's releases.

8.24.0

  • feat(nestjs): Filter RPC exceptions (#13227)
  • fix: Guard getReader function for other fetch implementations (#13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)

8.23.0

Important Changes

  • feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1 database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();

Other Changes

  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
  • feat(cloudflare): Instrument scheduled handler (#13114)
  • feat(core): Add getTraceData function (#13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#13137)
  • feat(nuxt): Filter out Nuxt build assets (#13148)
  • feat(profiling): Attach sdk info to chunks (#13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#13202)
  • ref(browser): Improve browserMetrics collection (#13062)

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

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it, please see the README. Any feedback/bug reports are greatly appreciated, please reach out on GitHub.

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

8.24.0

  • feat(nestjs): Filter RPC exceptions (#13227)
  • fix: Guard getReader function for other fetch implementations (#13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)

8.23.0

Important Changes

  • feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1 database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();

Other Changes

  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
  • feat(cloudflare): Instrument scheduled handler (#13114)
  • feat(core): Add getTraceData function (#13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#13137)
  • feat(nuxt): Filter out Nuxt build assets (#13148)
  • feat(profiling): Attach sdk info to chunks (#13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#13202)
  • ref(browser): Improve browserMetrics collection (#13062)

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

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it,

... (truncated)

Commits
  • 7730bef release: 8.24.0
  • d73daeb Merge pull request #13249 from getsentry/prepare-release/8.24.0
  • 7c7e2e2 meta: Update changelog for 8.24.0
  • 7fc479f ref(core): Reduce hasTracingEnabled size (#13232)
  • ddff302 fix: Guard getReader function for other fetch implementations (#13246)
  • d125ff2 build(deps): bump nuxt from 3.11.2 to 3.12.4 in /dev-packages/e2e-tests/test-...
  • c8054cc tests(e2e): Remove await timeout in nest e2e tests (#13243)
  • 22905fe fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)
  • ea20c21 test(e2e): Fix event buffering (#13233)
  • 420aaf8 test(nuxt): Unit tests for event filter (#13229)
  • Additional commits viewable in compare view

Updates @sentry/react from 8.18.0 to 8.24.0

Release notes

Sourced from @​sentry/react's releases.

8.24.0

  • feat(nestjs): Filter RPC exceptions (#13227)
  • fix: Guard getReader function for other fetch implementations (#13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)

8.23.0

Important Changes

  • feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1 database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();

Other Changes

  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
  • feat(cloudflare): Instrument scheduled handler (#13114)
  • feat(core): Add getTraceData function (#13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#13137)
  • feat(nuxt): Filter out Nuxt build assets (#13148)
  • feat(profiling): Attach sdk info to chunks (#13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#13202)
  • ref(browser): Improve browserMetrics collection (#13062)

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

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it, please see the README. Any feedback/bug reports are greatly appreciated, please reach out on GitHub.

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

8.24.0

  • feat(nestjs): Filter RPC exceptions (#13227)
  • fix: Guard getReader function for other fetch implementations (#13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)

8.23.0

Important Changes

  • feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1 database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();

Other Changes

  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
  • feat(cloudflare): Instrument scheduled handler (#13114)
  • feat(core): Add getTraceData function (#13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#13137)
  • feat(nuxt): Filter out Nuxt build assets (#13148)
  • feat(profiling): Attach sdk info to chunks (#13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#13202)
  • ref(browser): Improve browserMetrics collection (#13062)

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

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it,

... (truncated)

Commits
  • 7730bef release: 8.24.0
  • d73daeb Merge pull request #13249 from getsentry/prepare-release/8.24.0
  • 7c7e2e2 meta: Update changelog for 8.24.0
  • 7fc479f ref(core): Reduce hasTracingEnabled size (#13232)
  • ddff302 fix: Guard getReader function for other fetch implementations (#13246)
  • d125ff2 build(deps): bump nuxt from 3.11.2 to 3.12.4 in /dev-packages/e2e-tests/test-...
  • c8054cc tests(e2e): Remove await timeout in nest e2e tests (#13243)
  • 22905fe fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)
  • ea20c21 test(e2e): Fix event buffering (#13233)
  • 420aaf8 test(nuxt): Unit tests for event filter (#13229)
  • Additional commits viewable in compare view

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

Release notes

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

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.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.18.0 to 8.24.0

Release notes

Sourced from @​sentry/types's releases.

8.24.0

  • feat(nestjs): Filter RPC exceptions (#13227)
  • fix: Guard getReader function for other fetch implementations (#13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)

8.23.0

Important Changes

  • feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1 database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();

Other Changes

  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
  • feat(cloudflare): Instrument scheduled handler (#13114)
  • feat(core): Add getTraceData function (#13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#13137)
  • feat(nuxt): Filter out Nuxt build assets (#13148)
  • feat(profiling): Attach sdk info to chunks (#13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#13202)
  • ref(browser): Improve browserMetrics collection (#13062)

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

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it, please see the README. Any feedback/bug reports are greatly appreciated, please reach out on GitHub.

... (truncated)

Changelog

Sourced from @​sentry/types's changelog.

8.24.0

  • feat(nestjs): Filter RPC exceptions (#13227)
  • fix: Guard getReader function for other fetch implementations (#13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)

8.23.0

Important Changes

  • feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1 database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();

Other Changes

  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
  • feat(cloudflare): Instrument scheduled handler (#13114)
  • feat(core): Add getTraceData function (#13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#13137)
  • feat(nuxt): Filter out Nuxt build assets (#13148)
  • feat(profiling): Attach sdk info to chunks (#13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#13202)
  • ref(browser): Improve browserMetrics collection (#13062)

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

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it,

... (truncated)

Commits
  • 7730bef release: 8.24.0
  • d73daeb Merge pull request #13249 from getsentry/prepare-release/8.24.0
  • 7c7e2e2 meta: Update changelog for 8.24.0
  • 7fc479f ref(core): Reduce hasTracingEnabled size (#13232)
  • ddff302 fix: Guard getReader function for other fetch implementations (#13246)
  • d125ff2 build(deps): bump nuxt from 3.11.2 to 3.12.4 in /dev-packages/e2e-tests/test-...
  • c8054cc tests(e2e): Remove await timeout in nest e2e tests (#13243)
  • 22905fe fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)
  • ea20c21 test(e2e): Fix event buffering (#13233)
  • 420aaf8 test(nuxt): Unit tests for event filter (#13229)
  • Additional commits viewable in compare view

Updates @sentry/utils from 8.18.0 to 8.24.0

Release notes

Sourced from @​sentry/utils's releases.

8.24.0

  • feat(nestjs): Filter RPC exceptions (#13227)
  • fix: Guard getReader function for other fetch implementations (#13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#13241)

8.23.0

Important Changes

  • feat(cloudflare): Add Cloudflare D1 instrumentation (#13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1 database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();

Other Changes

  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#13192)
  • feat(cloudflare): Instrument scheduled handler (#13114)
  • feat(c...

    Description has been truncated

…th 8 updates

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

| Package | From | To |
| --- | --- | --- |
| [@sentry/babel-plugin-component-annotate](https://github.com/getsentry/sentry-javascript-bundler-plugins) | `2.16.1` | `2.21.1` |
| [@sentry/core](https://github.com/getsentry/sentry-javascript) | `8.18.0` | `8.24.0` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `8.18.0` | `8.24.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.18.0` | `8.24.0` |
| [@sentry/status-page-list](https://github.com/getsentry/status-page-list) | `0.3.0` | `0.4.0` |
| [@sentry/profiling-node](https://github.com/getsentry/sentry-javascript) | `8.18.0` | `8.24.0` |



Updates `@sentry/babel-plugin-component-annotate` from 2.16.1 to 2.21.1
- [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.16.1...2.21.1)

Updates `@sentry/core` from 8.18.0 to 8.24.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.18.0...8.24.0)

Updates `@sentry/node` from 8.18.0 to 8.24.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.18.0...8.24.0)

Updates `@sentry/react` from 8.18.0 to 8.24.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.18.0...8.24.0)

Updates `@sentry/status-page-list` from 0.3.0 to 0.4.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.4.0)

Updates `@sentry/types` from 8.18.0 to 8.24.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.18.0...8.24.0)

Updates `@sentry/utils` from 8.18.0 to 8.24.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.18.0...8.24.0)

Updates `@sentry/profiling-node` from 8.18.0 to 8.24.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.18.0...8.24.0)

---
updated-dependencies:
- dependency-name: "@sentry/babel-plugin-component-annotate"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sentry-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 August 6, 2024 22:28
@github-actions github-actions bot added the Scope: Frontend Automatically applied to PRs that change frontend components label Aug 6, 2024
@billyvg billyvg added the Trigger: getsentry tests once code is reviewed: apply label to PR to trigger getsentry tests label Aug 7, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 7, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Aug 7, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/sentry-dependencies-cbeb222b7c branch August 7, 2024 21:40
@github-actions github-actions bot locked and limited conversation to collaborators Aug 23, 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 Trigger: getsentry tests once code is reviewed: apply label to PR to trigger getsentry tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant