Skip to content

chore(deps): update Sentry JavaScript to v10.41.0#555

Merged
limbonaut merged 1 commit intomainfrom
deps/scripts/javascript-version.ps1
Mar 3, 2026
Merged

chore(deps): update Sentry JavaScript to v10.41.0#555
limbonaut merged 1 commit intomainfrom
deps/scripts/javascript-version.ps1

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Mar 3, 2026

Bumps scripts/javascript-version.ps1 from 10.40.0 to 10.41.0.

Auto-generated by a dependency updater.

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';
    
    Sentry.init({
      integrations: [
        Sentry.thirdPartyErrorFilterIntegration({
          filterKeys: ['my-app-key'],
          behaviour: 'apply-tag-if-exclusively-contains-third-party-frames',
        }),
      ],
    });

Other Changes

  • feat(core,cloudflare): Add dispose to the client for proper cleanup (#19506)
  • feat(deps): Bump rxjs from 7.8.1 to 7.8.2 (#19545)
  • feat(nextjs): Use not: foreign condition in turbopack loaders (#19502)
  • feat(react-router): Include middleware function names and indices (#19109)
  • fix(consola): Normalize extra keys from consola (#19511)
  • fix(core): Improve message truncation for multimodal content and normalize streaming span names (#19500)
  • fix(core): Strip inline media from multimodal content before stringification (#19540)
  • fix(deps): Bump transitive rollup deps to patch CVE-2026-27606 (#19565)
  • fix(langchain): Use runName argument in handleChainStart to fix unknown_chain spans (#19554)
  • fix(nestjs): Improve control flow exception filtering (#19524)
  • fix(tanstackstart-react): Flush events in server entry point for serverless environments (#19513)
  • fix(vue): Avoid triggering deprecated next callback from router instrumentation (#19476)
Internal Changes
  • chore: Updating minimatch (#19434)
  • chore(agents): Add dotagents (#19526)
  • chore(agents): Add nested AGENTS.md for browser (#19551)
  • chore(agents): Add nested AGENTS.md for nextjs (#19556)
  • chore(agents): Consolidate SDK dev rules into AGENTS.md (#19521)
  • chore(agents): Migrate repo-wide cursor rules to skills (#19549)
  • chore(agents): Remove stale cursor commands (#19560)
  • chore(ci): Validate alert id (#19499)
  • chore(deps): Bump rollup to 4.59.0 to fix path traversal vulnerability (#19538)
  • chore(lint): Remove junit report file (#19491)
  • chore(svelte,sveltekit): Use version range for magic-string (#19520)
  • chore(tanstackstart): Fix leftover formatting issue (#19536)
  • test(consola): Restructure tests (#19517)
  • test(node): Test runName parameter in handleChainStart for langchain (#19562)

Work in this release was contributed by YevheniiKotyrlo. Thank you for your contribution!

@bruno-garcia bruno-garcia force-pushed the deps/scripts/javascript-version.ps1 branch from eaa42aa to 9c186b2 Compare March 3, 2026 03:49
@github-actions
Copy link
Contributor Author

github-actions bot commented Mar 3, 2026

Semver Impact of This PR

🟢 Patch (bug fixes)

📋 Changelog Preview

This is how your changes will appear in the changelog.
Entries from this PR are highlighted with a left border (blockquote style).


New Features ✨

  • (options) Support SENTRY_DSN, SENTRY_RELEASE, and SENTRY_ENVIRONMENT env vars by limbonaut in #548
  • Add shutdown_timeout_ms option by limbonaut in #539

Documentation 📚

  • Add README files for addon and demo project packages by limbonaut in #547
  • Update Web platform support information in README by limbonaut in #536

Internal Changes 🔧

Deps

  • Update Sentry JavaScript to v10.41.0 by github-actions[bot] in #555
  • Update Native SDK to v0.13.1 by github-actions in #544
  • Update Native SDK to v0.13.0 by github-actions in #533
  • Update Sentry Android to v8.33.0 by github-actions in #531
  • Update wasm-split to v26.2.1 by github-actions in #534
  • Update Sentry JavaScript to v10.40.0 by github-actions in #540

Other

  • (web) Optimize file attachment loading in WASM bridge by limbonaut in #538
  • Use better AssetLib icon by limbonaut in #549
  • Add GH_TOKEN and harden AssetLib workflow by limbonaut in #546
  • Automate AssetLib updates on release by limbonaut in #545
  • Generate a separate package with demo project by limbonaut in #542
  • Exclude MSVC linker byproducts from build artifact by limbonaut in #543
  • Run CI on all PRs regardless of changed paths by limbonaut in #541

🤖 This preview updates automatically when you update the PR.

@limbonaut limbonaut merged commit f350729 into main Mar 3, 2026
61 checks passed
@limbonaut limbonaut deleted the deps/scripts/javascript-version.ps1 branch March 3, 2026 12:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants