Skip to content

Bump @sentry/browser from 10.44.0 to 10.47.0 in /src-editor#2187

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/src-editor/sentry/browser-10.47.0
Closed

Bump @sentry/browser from 10.44.0 to 10.47.0 in /src-editor#2187
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/src-editor/sentry/browser-10.47.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 10, 2026

Bumps @sentry/browser from 10.44.0 to 10.47.0.

Release notes

Sourced from @​sentry/browser's releases.

10.47.0

Important Changes

  • feat(node-core): Add OTLP integration for node-core/light (#19729)

    Added otlpIntegration at @sentry/node-core/light/otlp for users who manage their own OpenTelemetry setup and want to send trace data to Sentry without adopting the full @sentry/node SDK.

    import { NodeTracerProvider } from '@opentelemetry/sdk-trace-node';
    import * as Sentry from '@sentry/node-core/light';
    import { otlpIntegration } from '@sentry/node-core/light/otlp';
    const provider = new NodeTracerProvider();
    provider.register();
    Sentry.init({
    dsn: 'DSN',
    integrations: [
    otlpIntegration({
    // Export OTel spans to Sentry via OTLP (default: true)
    setupOtlpTracesExporter: true,
    }),
    ],
    });

    The integration links Sentry errors to OTel traces and exports spans to Sentry via OTLP.

  • feat(node, bun): Add runtime metrics integrations for Node.js and Bun (#19923, #19979)

    New nodeRuntimeMetricsIntegration and bunRuntimeMetricsIntegration automatically collect runtime health metrics and send them to Sentry on a configurable interval (default: 30s). Collected metrics include memory (RSS, heap used/total), CPU utilization, event loop utilization, and process uptime. Node additionally collects event loop delay percentiles (p50, p99). Extra metrics like CPU time and external memory are available as opt-in.

    // Node.js
    import * as Sentry from '@sentry/node';
    Sentry.init({
    dsn: '...',
    integrations: [Sentry.nodeRuntimeMetricsIntegration()],
    });
    // Bun
    import * as Sentry from '@​sentry/bun';
    Sentry.init({
    dsn: '...',
    integrations: [Sentry.bunRuntimeMetricsIntegration()],
    });

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

10.47.0

Important Changes

  • feat(node-core): Add OTLP integration for node-core/light (#19729)

    Added otlpIntegration at @sentry/node-core/light/otlp for users who manage their own OpenTelemetry setup and want to send trace data to Sentry without adopting the full @sentry/node SDK.

    import { NodeTracerProvider } from '@opentelemetry/sdk-trace-node';
    import * as Sentry from '@sentry/node-core/light';
    import { otlpIntegration } from '@sentry/node-core/light/otlp';
    const provider = new NodeTracerProvider();
    provider.register();
    Sentry.init({
    dsn: 'DSN',
    integrations: [
    otlpIntegration({
    // Export OTel spans to Sentry via OTLP (default: true)
    setupOtlpTracesExporter: true,
    }),
    ],
    });

    The integration links Sentry errors to OTel traces and exports spans to Sentry via OTLP.

  • feat(node, bun): Add runtime metrics integrations for Node.js and Bun (#19923, #19979)

    New nodeRuntimeMetricsIntegration and bunRuntimeMetricsIntegration automatically collect runtime health metrics and send them to Sentry on a configurable interval (default: 30s). Collected metrics include memory (RSS, heap used/total), CPU utilization, event loop utilization, and process uptime. Node additionally collects event loop delay percentiles (p50, p99). Extra metrics like CPU time and external memory are available as opt-in.

    // Node.js
    import * as Sentry from '@sentry/node';
    Sentry.init({
    dsn: '...',
    integrations: [Sentry.nodeRuntimeMetricsIntegration()],
    });
    // Bun
    import * as Sentry from '@​sentry/bun';
    Sentry.init({
    dsn: '...',
    integrations: [Sentry.bunRuntimeMetricsIntegration()],

... (truncated)

Commits
  • a5a4e73 release: 10.47.0
  • c7477bb Merge pull request #20050 from getsentry/prepare-release/10.47.0
  • 3d4e38d meta(changelog): Update changelog for 10.47.0
  • 2c0ce6f feat(deps): Bump OpenTelemetry dependencies (#20046)
  • 8f08fcb fix(browser-tests): Pin axios to 1.13.5 to avoid compromised 1.14.1 (#20047)
  • 3815492 fix(profiling): Disable profiling in worker threads (#20040)
  • 61edc25 Merge pull request #19890 from getsentry/fix/react-router-debug-id-double-inj...
  • 28f94f3 fix(react-router): Disable debug ID injection in Vite plugin to prevent doubl...
  • 9bfc682 ref(browser-tests): Add waitForMetricRequest helper (#20002)
  • 08cab24 fix(node): Deduplicate sentry-trace and baggage headers on outgoing reque...
  • Additional commits viewable in compare view

@dependabot dependabot bot added dependencies Pull requests that update a dependency file JavaScript labels Apr 10, 2026
@github-actions
Copy link
Copy Markdown
Contributor

Not Automerged

The PR does not match any automerge rules.

Details: No configuration rule matched this update

Dependabot Information:

  • Package name(s): @sentry/browser
  • Update type: minor
  • Dependency type: production
  • Previous version: 10.44.0
  • New version: 10.47.0

Modified Files:

  • src-editor/package-lock.json
  • src-editor/package.json

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src-editor/sentry/browser-10.47.0 branch from 8208e5a to 26d7008 Compare April 10, 2026 18:03
@github-actions
Copy link
Copy Markdown
Contributor

Not Automerged

The PR does not match any automerge rules.

Details: No configuration rule matched this update

Dependabot Information:

  • Package name(s): @sentry/browser
  • Update type: minor
  • Dependency type: production
  • Previous version: 10.44.0
  • New version: 10.47.0

Modified Files:

  • src-editor/package-lock.json
  • src-editor/package.json

Bumps [@sentry/browser](https://github.com/getsentry/sentry-javascript) from 10.44.0 to 10.47.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.44.0...10.47.0)

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-version: 10.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src-editor/sentry/browser-10.47.0 branch from 26d7008 to 7010b91 Compare April 11, 2026 12:13
@github-actions
Copy link
Copy Markdown
Contributor

Not Automerged

The PR does not match any automerge rules.

Details: No configuration rule matched this update

Dependabot Information:

  • Package name(s): @sentry/browser
  • Update type: minor
  • Dependency type: production
  • Previous version: 10.44.0
  • New version: 10.47.0

Modified Files:

  • src-editor/package-lock.json
  • src-editor/package.json

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 11, 2026

Looks like @sentry/browser is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Apr 11, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/src-editor/sentry/browser-10.47.0 branch April 11, 2026 13:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file JavaScript

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants