Skip to content

chore(deps): bump the production-minor group across 1 directory with 5 updates#137

Merged
charlesrhoward merged 1 commit intomainfrom
dependabot/npm_and_yarn/production-minor-6c16df1775
Apr 5, 2026
Merged

chore(deps): bump the production-minor group across 1 directory with 5 updates#137
charlesrhoward merged 1 commit intomainfrom
dependabot/npm_and_yarn/production-minor-6c16df1775

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the production-minor group with 5 updates in the / directory:

Package From To
@modelcontextprotocol/sdk 1.27.1 1.29.0
@opentelemetry/sdk-trace-node 2.6.0 2.6.1
@sentry/nextjs 10.45.0 10.47.0
drizzle-orm 0.45.1 0.45.2
resend 6.9.4 6.10.0

Updates @modelcontextprotocol/sdk from 1.27.1 to 1.29.0

Release notes

Sourced from @​modelcontextprotocol/sdk's releases.

v1.29.0

What's Changed

New Contributors

Full Changelog: modelcontextprotocol/typescript-sdk@v1.28.0...v1.29.0

v1.28.0

What's Changed

New Contributors

Full Changelog: modelcontextprotocol/typescript-sdk@v1.27.1...v1.28.0

Commits

Updates @opentelemetry/sdk-trace-node from 2.6.0 to 2.6.1

Release notes

Sourced from @​opentelemetry/sdk-trace-node's releases.

v2.6.1

2.6.1

🐛 Bug Fixes

  • fix(opentelemetry-instrumentation): improve _warnOnPreloadedModules function not to show warning logs when the module is not marked as loaded #6095 @​rlj1202
  • fix(sdk-trace-base): derive internal SpanOptions from API type to prevent drift #6478 @​overbalance
  • fix(span): enforce attributePerEventCountLimit, attributePerLinkCountLimit, linkCountLimit, and attributeValueLengthLimit for event/link attributes #6479 @​overbalance

🏠 Internal

Changelog

Sourced from @​opentelemetry/sdk-trace-node's changelog.

2.6.1

🐛 Bug Fixes

  • fix(opentelemetry-instrumentation): improve _warnOnPreloadedModules function not to show warning logs when the module is not marked as loaded #6095 @​rlj1202
  • fix(sdk-trace-base): derive internal SpanOptions from API type to prevent drift #6478 @​overbalance
  • fix(span): enforce attributePerEventCountLimit, attributePerLinkCountLimit, linkCountLimit, and attributeValueLengthLimit for event/link attributes #6479 @​overbalance
  • fix(context-zone): guard onCancelTask against terminal-state tasks to prevent infinite loop with rc-align (Ant Design) in React 16 dev mode #6512 @​Renegade2345

🏠 Internal

Commits
  • 7e74509 chore: prepare next release (#6510)
  • c846919 fix(instrumentation-fetch): do not modify the returned type of fetch (#6521)
  • 99fb3fb fix(api): re-introduce fallback chain for global utils (#6523)
  • b842717 test(bundlers): add node webpack tests, expand edge coverage, assert known pr...
  • b5a6b12 fix(opentelemetry-sdk-node): add missing @​opentelemetry/otlp-exporter-base de...
  • dc93ed4 perf(sdk-trace-base): optimize Span.{addEvent,addLink} performance (#6516)
  • e9831e7 perf(sdk-trace-base): avoid Object.entries in Span.setAttributes (#6514)
  • d56af69 chore(deps): lock file maintenance (#6517)
  • f3a10ab chore(deps): update github/codeql-action digest to 3869755 (#6513)
  • 2f73776 chore(deps): update github/codeql-action digest to c6f9311 (#6511)
  • Additional commits viewable in compare view

Updates @sentry/nextjs from 10.45.0 to 10.47.0

Release notes

Sourced from @​sentry/nextjs'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/nextjs'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 drizzle-orm from 0.45.1 to 0.45.2

Release notes

Sourced from drizzle-orm's releases.

0.45.2

  • Fixed sql.identifier(), sql.as() escaping issues. Previously all the values passed to this functions were not properly escaped causing a possible SQL Injection (CWE-89) vulnerability

Thanks to @​EthanKim88, @​0x90sh and @​wgoodall01 for reaching out to us with a reproduction and suggested fix

Commits

Updates resend from 6.9.4 to 6.10.0

Release notes

Sourced from resend's releases.

v6.10.0

What's Changed

New Contributors

Full Changelog: resend/resend-node@v6.9.4...v6.10.0

Commits
  • 0d8923c chore: bump 6.10.0 (#900)
  • c643cf2 feat: support logs endpoints (#899)
  • ed788b1 chore(ci): pin GitHub Actions workflows to commit SHAs (#889)
  • e0c0b15 chore(deps): update dependency @​types/node to v24.12.0 (#869)
  • f86ff17 feat(ci): split script and workflow for e2e test (#887)
  • 264bfde fix(deps): update dependency svix to v1.88.0 (#873)
  • bd8fd85 chore(deps): update tj-actions/changed-files digest to 445b0eb (#870)
  • ca968c7 chore(deps): update dependency tsdown to v0.21.4 (#872)
  • b64ba52 chore(deps): update pnpm to v10.32.1 (#871)
  • 440843d fix(deps): update dependency next to v16.2.0 (#882)
  • Additional commits viewable in compare view

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 1, 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 1, 2026

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

Project Deployment Actions Updated (UTC)
unicon Ready Ready Preview, Comment Apr 5, 2026 7:27pm

Request Review

@charlesrhoward
Copy link
Copy Markdown
Contributor

@dependabot rebase

@dependabot dependabot bot changed the title chore(deps): bump the production-minor group with 5 updates chore(deps): bump the production-minor group across 1 directory with 5 updates Apr 5, 2026
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-minor-6c16df1775 branch from 6a2dee9 to f113739 Compare April 5, 2026 19:00
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-minor-6c16df1775 branch from f113739 to 519b146 Compare April 5, 2026 19:04
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-minor-6c16df1775 branch from 519b146 to 8ca8a7e Compare April 5, 2026 19:08
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-minor-6c16df1775 branch from 8ca8a7e to d2507ca Compare April 5, 2026 19:11
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-minor-6c16df1775 branch from d2507ca to d3c96f1 Compare April 5, 2026 19:15
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-minor-6c16df1775 branch from d3c96f1 to 4b066f5 Compare April 5, 2026 19:20
@charlesrhoward
Copy link
Copy Markdown
Contributor

@dependabot rebase

Bumps the production-minor group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) | `1.27.1` | `1.29.0` |
| [@opentelemetry/sdk-trace-node](https://github.com/open-telemetry/opentelemetry-js) | `2.6.0` | `2.6.1` |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `10.45.0` | `10.47.0` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.45.1` | `0.45.2` |
| [resend](https://github.com/resend/resend-node) | `6.9.4` | `6.10.0` |


Updates `@modelcontextprotocol/sdk` from 1.27.1 to 1.29.0
- [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases)
- [Commits](modelcontextprotocol/typescript-sdk@v1.27.1...v1.29.0)

Updates `@opentelemetry/sdk-trace-node` from 2.6.0 to 2.6.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v2.6.0...v2.6.1)

Updates `@sentry/nextjs` from 10.45.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.45.0...10.47.0)

Updates `drizzle-orm` from 0.45.1 to 0.45.2
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.45.1...0.45.2)

Updates `resend` from 6.9.4 to 6.10.0
- [Release notes](https://github.com/resend/resend-node/releases)
- [Commits](resend/resend-node@v6.9.4...v6.10.0)

---
updated-dependencies:
- dependency-name: "@modelcontextprotocol/sdk"
  dependency-version: 1.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor
- dependency-name: "@opentelemetry/sdk-trace-node"
  dependency-version: 2.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor
- dependency-name: drizzle-orm
  dependency-version: 0.45.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor
- dependency-name: resend
  dependency-version: 6.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-minor-6c16df1775 branch from 4b066f5 to 319662e Compare April 5, 2026 19:26
@charlesrhoward charlesrhoward merged commit 7cbd90d into main Apr 5, 2026
6 checks passed
@charlesrhoward charlesrhoward deleted the dependabot/npm_and_yarn/production-minor-6c16df1775 branch April 5, 2026 19:28
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