Skip to content

chore(deps): bump the prod-deps group with 4 updates#1404

Merged
github-actions[bot] merged 1 commit intomasterfrom
dependabot/npm_and_yarn/prod-deps-9a4abaeccb
Mar 2, 2026
Merged

chore(deps): bump the prod-deps group with 4 updates#1404
github-actions[bot] merged 1 commit intomasterfrom
dependabot/npm_and_yarn/prod-deps-9a4abaeccb

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 2, 2026

Bumps the prod-deps group with 4 updates: @sentry/cli, @sentry/nestjs, @sentry/opentelemetry and @sentry/profiling-node.

Updates @sentry/cli from 3.2.2 to 3.2.3

Release notes

Sourced from @​sentry/cli's releases.

3.2.3

Experimental Feature 🧑‍🔬 (internal-only)

  • Added experimental sentry-cli build snapshots command to upload build snapshots to a project (#3110).
    • This command uploads files from a specified directory to Sentry's Objectstore, associating them with a snapshot identifier.
    • The command is experimental and subject to breaking changes or removal in future releases.
Changelog

Sourced from @​sentry/cli's changelog.

3.2.3

Experimental Feature 🧑‍🔬 (internal-only)

  • Added experimental sentry-cli build snapshots command to upload build snapshots to a project (#3110).
    • This command uploads files from a specified directory to Sentry's Objectstore, associating them with a snapshot identifier.
    • The command is experimental and subject to breaking changes or removal in future releases.
Commits
  • 671f399 release: 3.2.3
  • 03ba17f meta(changelog): Prep for release (#3165)
  • cf86859 build(deps): bump minimatch (#3162)
  • bfb0b13 build(deps): bump github/codeql-action from 4.32.2 to 4.32.4 (#3158)
  • f37f446 build(deps): bump getsentry/github-workflows from 3.2.0 to 3.3.0 (#3157)
  • b70400d build(deps): bump getsentry/craft from 2.21.2 to 2.21.7 (#3156)
  • 36212cb build(deps): bump docker/build-push-action from 6.18.0 to 6.19.2 (#3148)
  • 2c5d857 feat(preprod): Add snapshots subcommand (#3110)
  • 466a2f0 build(npm): 🤖 Bump optional dependencies to 3.2.2
  • d4f268d Merge branch 'release/3.2.2'
  • See full diff in compare view

Updates @sentry/nestjs from 10.40.0 to 10.41.0

Release notes

Sourced from @​sentry/nestjs's releases.

10.41.0

Important Changes

  • feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)

    Added a new instrumentation helper for the postgres (postgres.js) library, designed for SDKs that are not based on OpenTelemetry (e.g. Cloudflare, Deno). This wraps a postgres.js sql tagged template instance so that all queries automatically create Sentry spans.

    import postgres from 'postgres';
    import * as Sentry from '@sentry/cloudflare'; // or '@sentry/deno'
    export default Sentry.withSentry(env => ({ dsn: 'DSN' }), {
    async fetch(request, env, ctx) {
    const sql = Sentry.instrumentPostgresJsSql(postgres(env.DATABASE_URL));
    // All queries now create Sentry spans
    const users = await sql`SELECT * FROM users WHERE id = ${userId}`;
    return Response.json(users);
    
    },
    });

    The instrumentation is available in @sentry/core, @sentry/cloudflare, and @sentry/deno.

  • feat(nextjs): Add Turbopack support for thirdPartyErrorFilterIntegration (#19542)

    We added experimental support for the thirdPartyErrorFilterIntegration with Turbopack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackApplicationKey: 'my-app-key',
    },
    });

    Then configure the integration in your client instrumentation file with a matching key:

    // instrumentation-client.ts
    import * as Sentry from '@sentry/nextjs';
    Sentry.init({

... (truncated)

Changelog

Sourced from @​sentry/nestjs's changelog.

10.41.0

Important Changes

  • feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)

    Added a new instrumentation helper for the postgres (postgres.js) library, designed for SDKs that are not based on OpenTelemetry (e.g. Cloudflare, Deno). This wraps a postgres.js sql tagged template instance so that all queries automatically create Sentry spans.

    import postgres from 'postgres';
    import * as Sentry from '@sentry/cloudflare'; // or '@sentry/deno'
    export default Sentry.withSentry(env => ({ dsn: 'DSN' }), {
    async fetch(request, env, ctx) {
    const sql = Sentry.instrumentPostgresJsSql(postgres(env.DATABASE_URL));
    // All queries now create Sentry spans
    const users = await sql`SELECT * FROM users WHERE id = ${userId}`;
    return Response.json(users);
    
    },
    });

    The instrumentation is available in @sentry/core, @sentry/cloudflare, and @sentry/deno.

  • feat(nextjs): Add Turbopack support for thirdPartyErrorFilterIntegration (#19542)

    We added experimental support for the thirdPartyErrorFilterIntegration with Turbopack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackApplicationKey: 'my-app-key',
    },
    });

    Then configure the integration in your client instrumentation file with a matching key:

    // instrumentation-client.ts
    import * as Sentry from '@sentry/nextjs';

... (truncated)

Commits
  • 66f455a release: 10.41.0
  • ca12aab Merge pull request #19576 from getsentry/prepare-release/10.41.0
  • dc44fe4 meta(changelog): Update changelog for 10.41.0
  • 93e3c30 fix(core): Strip inline media from multimodal content before stringification ...
  • 9d3ae61 feat(core,cloudflare): Add dispose to the client for proper cleanup (#19506)
  • 88078a0 feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)
  • 43be7b0 fix(deps): Bump transitive rollup deps to patch CVE-2026-27606 (#19565)
  • 6707fd3 feat(react-router): Include middleware function names and indices (#19109)
  • 0c3b071 test(node): Test runName parameter in handleChainStart for langchain (#19562)
  • 2b79e29 Merge pull request #19554 from getsentry/fix/langchain-handlechainstart-runname
  • Additional commits viewable in compare view

Updates @sentry/opentelemetry from 10.40.0 to 10.41.0

Release notes

Sourced from @​sentry/opentelemetry's releases.

10.41.0

Important Changes

  • feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)

    Added a new instrumentation helper for the postgres (postgres.js) library, designed for SDKs that are not based on OpenTelemetry (e.g. Cloudflare, Deno). This wraps a postgres.js sql tagged template instance so that all queries automatically create Sentry spans.

    import postgres from 'postgres';
    import * as Sentry from '@sentry/cloudflare'; // or '@sentry/deno'
    export default Sentry.withSentry(env => ({ dsn: 'DSN' }), {
    async fetch(request, env, ctx) {
    const sql = Sentry.instrumentPostgresJsSql(postgres(env.DATABASE_URL));
    // All queries now create Sentry spans
    const users = await sql`SELECT * FROM users WHERE id = ${userId}`;
    return Response.json(users);
    
    },
    });

    The instrumentation is available in @sentry/core, @sentry/cloudflare, and @sentry/deno.

  • feat(nextjs): Add Turbopack support for thirdPartyErrorFilterIntegration (#19542)

    We added experimental support for the thirdPartyErrorFilterIntegration with Turbopack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackApplicationKey: 'my-app-key',
    },
    });

    Then configure the integration in your client instrumentation file with a matching key:

    // instrumentation-client.ts
    import * as Sentry from '@sentry/nextjs';
    Sentry.init({

... (truncated)

Changelog

Sourced from @​sentry/opentelemetry's changelog.

10.41.0

Important Changes

  • feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)

    Added a new instrumentation helper for the postgres (postgres.js) library, designed for SDKs that are not based on OpenTelemetry (e.g. Cloudflare, Deno). This wraps a postgres.js sql tagged template instance so that all queries automatically create Sentry spans.

    import postgres from 'postgres';
    import * as Sentry from '@sentry/cloudflare'; // or '@sentry/deno'
    export default Sentry.withSentry(env => ({ dsn: 'DSN' }), {
    async fetch(request, env, ctx) {
    const sql = Sentry.instrumentPostgresJsSql(postgres(env.DATABASE_URL));
    // All queries now create Sentry spans
    const users = await sql`SELECT * FROM users WHERE id = ${userId}`;
    return Response.json(users);
    
    },
    });

    The instrumentation is available in @sentry/core, @sentry/cloudflare, and @sentry/deno.

  • feat(nextjs): Add Turbopack support for thirdPartyErrorFilterIntegration (#19542)

    We added experimental support for the thirdPartyErrorFilterIntegration with Turbopack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackApplicationKey: 'my-app-key',
    },
    });

    Then configure the integration in your client instrumentation file with a matching key:

    // instrumentation-client.ts
    import * as Sentry from '@sentry/nextjs';

... (truncated)

Commits
  • 66f455a release: 10.41.0
  • ca12aab Merge pull request #19576 from getsentry/prepare-release/10.41.0
  • dc44fe4 meta(changelog): Update changelog for 10.41.0
  • 93e3c30 fix(core): Strip inline media from multimodal content before stringification ...
  • 9d3ae61 feat(core,cloudflare): Add dispose to the client for proper cleanup (#19506)
  • 88078a0 feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)
  • 43be7b0 fix(deps): Bump transitive rollup deps to patch CVE-2026-27606 (#19565)
  • 6707fd3 feat(react-router): Include middleware function names and indices (#19109)
  • 0c3b071 test(node): Test runName parameter in handleChainStart for langchain (#19562)
  • 2b79e29 Merge pull request #19554 from getsentry/fix/langchain-handlechainstart-runname
  • Additional commits viewable in compare view

Updates @sentry/profiling-node from 10.40.0 to 10.41.0

Release notes

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

10.41.0

Important Changes

  • feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)

    Added a new instrumentation helper for the postgres (postgres.js) library, designed for SDKs that are not based on OpenTelemetry (e.g. Cloudflare, Deno). This wraps a postgres.js sql tagged template instance so that all queries automatically create Sentry spans.

    import postgres from 'postgres';
    import * as Sentry from '@sentry/cloudflare'; // or '@sentry/deno'
    export default Sentry.withSentry(env => ({ dsn: 'DSN' }), {
    async fetch(request, env, ctx) {
    const sql = Sentry.instrumentPostgresJsSql(postgres(env.DATABASE_URL));
    // All queries now create Sentry spans
    const users = await sql`SELECT * FROM users WHERE id = ${userId}`;
    return Response.json(users);
    
    },
    });

    The instrumentation is available in @sentry/core, @sentry/cloudflare, and @sentry/deno.

  • feat(nextjs): Add Turbopack support for thirdPartyErrorFilterIntegration (#19542)

    We added experimental support for the thirdPartyErrorFilterIntegration with Turbopack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackApplicationKey: 'my-app-key',
    },
    });

    Then configure the integration in your client instrumentation file with a matching key:

    // instrumentation-client.ts
    import * as Sentry from '@sentry/nextjs';
    Sentry.init({

... (truncated)

Changelog

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

10.41.0

Important Changes

  • feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)

    Added a new instrumentation helper for the postgres (postgres.js) library, designed for SDKs that are not based on OpenTelemetry (e.g. Cloudflare, Deno). This wraps a postgres.js sql tagged template instance so that all queries automatically create Sentry spans.

    import postgres from 'postgres';
    import * as Sentry from '@sentry/cloudflare'; // or '@sentry/deno'
    export default Sentry.withSentry(env => ({ dsn: 'DSN' }), {
    async fetch(request, env, ctx) {
    const sql = Sentry.instrumentPostgresJsSql(postgres(env.DATABASE_URL));
    // All queries now create Sentry spans
    const users = await sql`SELECT * FROM users WHERE id = ${userId}`;
    return Response.json(users);
    
    },
    });

    The instrumentation is available in @sentry/core, @sentry/cloudflare, and @sentry/deno.

  • feat(nextjs): Add Turbopack support for thirdPartyErrorFilterIntegration (#19542)

    We added experimental support for the thirdPartyErrorFilterIntegration with Turbopack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

    // next.config.ts
    import { withSentryConfig } from '@sentry/nextjs';
    export default withSentryConfig(nextConfig, {
    _experimental: {
    turbopackApplicationKey: 'my-app-key',
    },
    });

    Then configure the integration in your client instrumentation file with a matching key:

    // instrumentation-client.ts
    import * as Sentry from '@sentry/nextjs';

... (truncated)

Commits
  • 66f455a release: 10.41.0
  • ca12aab Merge pull request #19576 from getsentry/prepare-release/10.41.0
  • dc44fe4 meta(changelog): Update changelog for 10.41.0
  • 93e3c30 fix(core): Strip inline media from multimodal content before stringification ...
  • 9d3ae61 feat(core,cloudflare): Add dispose to the client for proper cleanup (#19506)
  • 88078a0 feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)
  • 43be7b0 fix(deps): Bump transitive rollup deps to patch CVE-2026-27606 (#19565)
  • 6707fd3 feat(react-router): Include middleware function names and indices (#19109)
  • 0c3b071 test(node): Test runName parameter in handleChainStart for langchain (#19562)
  • 2b79e29 Merge pull request #19554 from getsentry/fix/langchain-handlechainstart-runname
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the prod-deps group with 4 updates: [@sentry/cli](https://github.com/getsentry/sentry-cli), [@sentry/nestjs](https://github.com/getsentry/sentry-javascript), [@sentry/opentelemetry](https://github.com/getsentry/sentry-javascript) and [@sentry/profiling-node](https://github.com/getsentry/sentry-javascript).


Updates `@sentry/cli` from 3.2.2 to 3.2.3
- [Release notes](https://github.com/getsentry/sentry-cli/releases)
- [Changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-cli@3.2.2...3.2.3)

Updates `@sentry/nestjs` from 10.40.0 to 10.41.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@10.40.0...10.41.0)

Updates `@sentry/opentelemetry` from 10.40.0 to 10.41.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@10.40.0...10.41.0)

Updates `@sentry/profiling-node` from 10.40.0 to 10.41.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@10.40.0...10.41.0)

---
updated-dependencies:
- dependency-name: "@sentry/cli"
  dependency-version: 3.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: "@sentry/nestjs"
  dependency-version: 10.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: "@sentry/opentelemetry"
  dependency-version: 10.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: "@sentry/profiling-node"
  dependency-version: 10.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@github-actions github-actions bot enabled auto-merge (squash) March 2, 2026 18:46
@github-actions github-actions bot merged commit 7409e9f into master Mar 2, 2026
13 of 14 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/prod-deps-9a4abaeccb branch March 2, 2026 18:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Development

Successfully merging this pull request may close these issues.

0 participants