Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 3 updates#261

Merged
Doberjohn merged 1 commit intomasterfrom
dependabot/npm_and_yarn/production-dependencies-7ba909af04
Apr 6, 2026
Merged

chore(deps): bump the production-dependencies group across 1 directory with 3 updates#261
Doberjohn merged 1 commit intomasterfrom
dependabot/npm_and_yarn/production-dependencies-7ba909af04

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the production-dependencies group with 3 updates in the / directory: @sentry/react, @supabase/supabase-js and react-router-dom.

Updates @sentry/react from 10.46.0 to 10.47.0

Release notes

Sourced from @​sentry/react'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/react'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

Updates @supabase/supabase-js from 2.100.1 to 2.101.1

Release notes

Sourced from @​supabase/supabase-js's releases.

v2.101.1

2.101.1 (2026-03-31)

🩹 Fixes

  • storage: support exactOptionalPropertyTypes (#2200)

❤️ Thank You

v2.101.1-canary.0

2.101.1-canary.0 (2026-03-31)

🩹 Fixes

  • storage: support exactOptionalPropertyTypes (#2200)

❤️ Thank You

v2.101.0

2.101.0 (2026-03-30)

🚀 Features

  • realtime: add copyBindings functionality (#2197)
  • realtime: block setting postgres_changes event listener after joining (#2201)

❤️ Thank You

v2.101.0-canary.0

2.101.0-canary.0 (2026-03-30)

This was a version bump only, there were no code changes.

Changelog

Sourced from @​supabase/supabase-js's changelog.

2.101.1 (2026-03-31)

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

2.101.0 (2026-03-30)

This was a version bump only for @​supabase/supabase-js to align it with other projects, there were no code changes.

Commits

Updates react-router-dom from 7.13.2 to 7.14.0

Changelog

Sourced from react-router-dom's changelog.

7.14.0

Patch Changes

  • Updated dependencies:
    • react-router@7.14.0
Commits

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 6, 2026

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel
Copy link
Copy Markdown

vercel bot commented Apr 6, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
inkweave Ready Ready Preview, Comment Apr 6, 2026 2:54pm

@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 6, 2026

size-limit report 📦

Path Size
Total JS bundle 221.42 KB (+0.07% 🔺)
Card data JSON 249.3 KB (0%)

@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 6, 2026

⚡ Lighthouse Results

URL TBT LCP CLS FCP SI
/ 🟢 28ms 🔴 4628ms 🟢 0.002 🔴 2594ms 🟢 2594ms
/browse 🟢 52ms 🔴 4400ms 🟢 0.008 🔴 2677ms 🟢 2677ms
/card/957 🟢 11ms 🔴 4068ms 🟢 0.001 🔴 2746ms 🟢 2746ms
/card/957/synergies 🟢 25ms 🔴 4376ms 🟢 0.001 🔴 2659ms 🟢 2659ms
/playstyles 🟢 0ms 🔴 4686ms 🟢 0.001 🔴 2523ms 🟢 2523ms
/playstyles/lore-denial 🟢 43ms 🔴 4517ms 🟢 0.001 🔴 2738ms 🟢 2738ms
Threshold 🚫 500ms ⚠️ 3000ms 🚫 0.1 ⚠️ 2200ms ⚠️ 4000ms

Median of 3 runs. 🟢 ≤75% of limit · 🟠 within limit · 🔴 over limit · 🚫 merge-blocking · ⚠️ warning

@dependabot dependabot bot changed the title chore(deps): bump the production-dependencies group with 3 updates chore(deps): bump the production-dependencies group across 1 directory with 3 updates Apr 6, 2026
Bumps the production-dependencies group with 3 updates: [@sentry/react](https://github.com/getsentry/sentry-javascript), [@supabase/supabase-js](https://github.com/supabase/supabase-js/tree/HEAD/packages/core/supabase-js) and [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom).


Updates `@sentry/react` from 10.46.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.46.0...10.47.0)

Updates `@supabase/supabase-js` from 2.100.1 to 2.101.1
- [Release notes](https://github.com/supabase/supabase-js/releases)
- [Changelog](https://github.com/supabase/supabase-js/blob/master/packages/core/supabase-js/CHANGELOG.md)
- [Commits](https://github.com/supabase/supabase-js/commits/v2.101.1/packages/core/supabase-js)

Updates `react-router-dom` from 7.13.2 to 7.14.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.14.0/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: "@sentry/react"
  dependency-version: 10.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@supabase/supabase-js"
  dependency-version: 2.101.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-dependencies-7ba909af04 branch from 92e405e to c4fa708 Compare April 6, 2026 14:53
@Doberjohn
Copy link
Copy Markdown
Owner

@dependabot rebase

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 6, 2026

Looks like this PR is already up-to-date with master! If you'd still like to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@Doberjohn Doberjohn merged commit 2dfa604 into master Apr 6, 2026
11 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-7ba909af04 branch April 6, 2026 15:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant