Skip to content

build(deps): bump @mastra/core from 1.52.1 to 1.63.0 - #1105

Open
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/mastra/core-1.63.0
Open

build(deps): bump @mastra/core from 1.52.1 to 1.63.0#1105
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/mastra/core-1.63.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Contributor

Bumps @mastra/core from 1.52.1 to 1.63.0.

Release notes

Sourced from @​mastra/core's releases.

August 26, 2026

Highlights

Trace-correlated logging via the new logger adapter contract

A new AdaptableLogger contract in @mastra/core/logger standardizes trace correlation by injecting trace_id/span_id into native log records during traced operations, and deriving observability LogEvents from the same record. Mastra now supports loggerOptions to control correlation and log export, and the legacy dual-write wrapper path is deprecated.

First-class Pino integration with trace context in every transport

@mastra/loggersPinoLogger now implements the adapter contract, so trace fields are added via a pino mixin to stdout, files, and custom transports—while preserving user mixin fields. This aligns native application logs with Mastra observability without separate logging pipelines.

More reliable trace/log linking for non-exported spans (no more “Span not found”)

Across @mastra/core and @mastra/observability, logs/metrics emitted inside internal or excluded spans now link to the nearest ancestor span that actually reaches exporters, and omit spanId when none exists. This fixes broken click-through from Studio and ensures stdout correlation matches stored observability records.

Deployment readiness improvements: worker health gating

@mastra/deployer now ships a dedicated worker entry in standard build artifacts, and the worker runtime exposes a /health endpoint that returns 503 during startup and 200 once workers are initialized. This enables deployment platforms to block rollouts until workers are actually ready.

Scheduler + resume robustness fixes (fewer restarts, fewer duplicate runs)

Workers now discover and run schedules created after startup without requiring a restart. Tool/background-task resuming is also hardened (supports falsy resume payloads like false/0/""), preventing suspended background tasks from accidentally starting a second run and ensuring replayed tool-call chunks are preserved for reloading clients.

Breaking Changes

  • @mastra/playground-ui DataList API cleanup: removed variant="lined", flushLeft/flushRight, per-cell height, and DataList.MonoCell (use DataList.TextCell font="mono" instead).

Changelog

@​mastra/core@1.63.0

Minor Changes

  • Added a logger adapter contract (AdaptableLogger in @mastra/core/logger) for trace-correlated log output. Loggers implementing the adapter inject trace_id and span_id into their native log records during traced operations, and the observability LogEvent is derived from that same record. The built-in ConsoleLogger implements the contract. A new loggerOptions config on Mastra controls the behavior: (#21753)

    import { Mastra } from '@mastra/core/mastra';
    export const mastra = new Mastra({
    loggerOptions: {
    correlation: true, // inject trace_id/span_id into native output (default: true)
    export: true, // forward log records to observability storage (default: true)
    },
    });

    Custom IMastraLogger implementations without adapter support continue to work through the existing dual-write wrapper, which is now deprecated and will be removed in the next major version.

Patch Changes

  • Update provider registry and model documentation with latest models and providers (7176362)

  • Fixed worker processes to discover and run schedules created after startup without requiring a restart or explicit scheduler configuration. (#22420)

  • Fixed output stream processor traces remaining open when streams close or are canceled before a finish chunk. (#22397)

  • Added an optional getExportedSpanId() method to the Span interface. It returns the span's own id when the span reaches exporters, and the nearest exportable ancestor's id when it does not. (#22286)

... (truncated)

Commits
  • 17ad0c6 chore: version - exit prerelease mode
  • 9045b8f fix(workers): discover schedules created after startup (#22420)
  • dc4d430 chore: version packages (alpha) (#22374)
  • 04a4727 chore: regenerate providers and docs [skip ci]
  • f9c56f3 fix(core): resolve stdout trace correlation to an exportable span id (#22387)
  • 9d7595d chore: version packages
  • 7677a2c fix(core): end output processor spans on stream teardown (#22397)
  • f7a7467 fix(core): treat falsy resume payloads as present in the tool-call step (#22363)
  • e3b796d fix(observability): resolve log/metric spanId to nearest exportable ancestor ...
  • 49ccd14 feat(core): logger adapters for trace-correlated stdout (#21753)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@mastra/core](https://github.com/mastra-ai/mastra/tree/HEAD/packages/core) from 1.52.1 to 1.63.0.
- [Release notes](https://github.com/mastra-ai/mastra/releases)
- [Changelog](https://github.com/mastra-ai/mastra/blob/main/docs/CHANGELOG.md)
- [Commits](https://github.com/mastra-ai/mastra/commits/@mastra/core@1.63.0/packages/core)

---
updated-dependencies:
- dependency-name: "@mastra/core"
  dependency-version: 1.63.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 31, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Coverage Report for server

Status Category Percentage Covered / Total
🟢 Lines 98.08% (🎯 97%) 3335 / 3400
🟢 Statements 97.46% (🎯 96%) 3494 / 3585
🟢 Functions 98.15% (🎯 97%) 585 / 596
🟢 Branches 89.29% (🎯 87%) 1385 / 1551
File CoverageNo changed files found.
Generated in workflow #2070 for commit eefc80f by the Vitest Coverage Report Action

@github-actions

Copy link
Copy Markdown
Contributor

Coverage Report for web

Status Category Percentage Covered / Total
🟢 Lines 97.34% (🎯 96%) 1614 / 1658
🟢 Statements 96.17% (🎯 95%) 1709 / 1777
🟢 Functions 95.89% (🎯 95%) 677 / 706
🟢 Branches 89.97% (🎯 88%) 1095 / 1217
File CoverageNo changed files found.
Generated in workflow #2070 for commit eefc80f by the Vitest Coverage Report Action

@github-actions

Copy link
Copy Markdown
Contributor

Coverage Report for shared

Status Category Percentage Covered / Total
🟢 Lines 99.15% (🎯 98%) 235 / 237
🟢 Statements 80.96% (🎯 80%) 251 / 310
🟢 Functions 100% (🎯 98%) 79 / 79
🟢 Branches 62.87% (🎯 62%) 105 / 167
File CoverageNo changed files found.
Generated in workflow #2070 for commit eefc80f by the Vitest Coverage Report Action

@github-actions

Copy link
Copy Markdown
Contributor

Coverage Report for widget

Status Category Percentage Covered / Total
🟢 Lines 99.62% (🎯 98%) 265 / 266
🟢 Statements 97.94% (🎯 96%) 286 / 292
🟢 Functions 98.11% (🎯 98%) 52 / 53
🟢 Branches 93.28% (🎯 92%) 139 / 149
File CoverageNo changed files found.
Generated in workflow #2070 for commit eefc80f by the Vitest Coverage Report Action

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 Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants