Skip to content

chore(deps): bump jsondiffpatch and @mastra/core in /03-integrations/agentic-frameworks/typescript_mastra - #2043

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/03-integrations/agentic-frameworks/typescript_mastra/multi-c3917a4b41
Open

chore(deps): bump jsondiffpatch and @mastra/core in /03-integrations/agentic-frameworks/typescript_mastra#2043
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/03-integrations/agentic-frameworks/typescript_mastra/multi-c3917a4b41

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Removes jsondiffpatch. It's no longer used after updating ancestor dependency @mastra/core. These dependencies need to be updated together.

Removes jsondiffpatch

Updates @mastra/core from 0.24.0 to 1.63.2

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
  • 003e757 chore: version - exit prerelease mode
  • 8da7066 chore: version packages
  • 0a9d29c fix(core): strip foreign reasoning on provider switch (#22568)
  • 4a41ea6 chore: version - exit prerelease mode
  • d4961b0 chore: regenerate providers and docs [skip ci]
  • c25282b chore: version packages (alpha) (#22521)
  • b8cb683 feat(core): track file-based agent usage (#22457)
  • b0c060a chore: regenerate providers and docs [skip ci]
  • 5eb0f6c chore: version packages (alpha) (#22434)
  • 732f397 chore: regenerate providers and docs [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mastra/core since your current version.


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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Removes [jsondiffpatch](https://github.com/benjamine/jsondiffpatch). It's no longer used after updating ancestor dependency [@mastra/core](https://github.com/mastra-ai/mastra/tree/HEAD/packages/core). These dependencies need to be updated together.


Removes `jsondiffpatch`

Updates `@mastra/core` from 0.24.0 to 1.63.2
- [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.2/packages/core)

---
updated-dependencies:
- dependency-name: jsondiffpatch
  dependency-version:
  dependency-type: indirect
- dependency-name: "@mastra/core"
  dependency-version: 1.63.2
  dependency-type: direct:production
...

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 github-actions Bot added 03-integrations 03-integrations agentic-frameworks 03-integrations/agentic-frameworks labels Aug 31, 2026
@github-actions

Copy link
Copy Markdown

Latest scan for commit: 3fa066e | Updated: 2026-08-31 23:18:54 UTC

Security Scan Results

Scan Metadata

  • Project: ASH
  • Scan executed: 2026-08-31T23:10:35+00:00
  • ASH version: 3.0.0

Summary

Scanner Results

The table below shows findings by scanner, with status based on severity thresholds and dependencies:

Column Explanations:

Severity Levels (S/C/H/M/L/I):

  • Suppressed (S): Security findings that have been explicitly suppressed/ignored and don't affect the scanner's pass/fail status
  • Critical (C): The most severe security vulnerabilities requiring immediate remediation (e.g., SQL injection, remote code execution)
  • High (H): Serious security vulnerabilities that should be addressed promptly (e.g., authentication bypasses, privilege escalation)
  • Medium (M): Moderate security risks that should be addressed in normal development cycles (e.g., weak encryption, input validation issues)
  • Low (L): Minor security concerns with limited impact (e.g., information disclosure, weak recommendations)
  • Info (I): Informational findings for awareness with minimal security risk (e.g., code quality suggestions, best practice recommendations)

Other Columns:

  • Time: Duration taken by each scanner to complete its analysis
  • Action: Total number of actionable findings at or above the configured severity threshold that require attention

Scanner Results:

  • PASSED: Scanner found no security issues at or above the configured severity threshold - code is clean for this scanner
  • FAILED: Scanner found security vulnerabilities at or above the threshold that require attention and remediation
  • MISSING: Scanner could not run because required dependencies/tools are not installed or available
  • SKIPPED: Scanner was intentionally disabled or excluded from this scan
  • ERROR: Scanner encountered an execution error and could not complete successfully

Severity Thresholds (Thresh Column):

  • CRITICAL: Only Critical severity findings cause scanner to fail
  • HIGH: High and Critical severity findings cause scanner to fail
  • MEDIUM (MED): Medium, High, and Critical severity findings cause scanner to fail
  • LOW: Low, Medium, High, and Critical severity findings cause scanner to fail
  • ALL: Any finding of any severity level causes scanner to fail

Threshold Source: Values in parentheses indicate where the threshold is configured:

  • (g) = global: Set in the global_settings section of ASH configuration
  • (c) = config: Set in the individual scanner configuration section
  • (s) = scanner: Default threshold built into the scanner itself

Statistics calculation:

  • All statistics are calculated from the final aggregated SARIF report
  • Suppressed findings are counted separately and do not contribute to actionable findings
  • Scanner status is determined by comparing actionable findings to the threshold
Scanner S C H M L I Time Action Result Thresh
bandit 0 0 0 0 0 0 420ms 0 PASSED MED (g)
cdk-nag 0 0 0 0 0 0 6.5s 0 PASSED MED (g)
cfn-nag 0 0 0 0 0 0 318ms 0 PASSED MED (g)
checkov 0 0 0 0 0 0 4.4s 0 PASSED MED (g)
detect-secrets 0 0 0 0 0 0 696ms 0 PASSED MED (g)
grype 0 5 0 5 4 0 1m 5s 10 FAILED MED (g)
npm-audit 0 0 0 0 0 0 1.0s 0 PASSED MED (g)
opengrep 0 0 0 0 0 0 <1ms 0 SKIPPED MED (g)
semgrep 0 0 0 0 0 0 <1ms 0 MISSING MED (g)
syft 0 0 0 0 0 0 2.2s 0 PASSED MED (g)

Detailed Findings

Show 10 actionable findings

Finding 1: GHSA-jmr7-xgp7-cmfj-fast-xml-parser

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-jmr7-xgp7-cmfj-fast-xml-parser
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A high vulnerability in npm package: fast-xml-parser, version 5.2.5 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Finding 2: GHSA-j3q9-mxjg-w52f-path-to-regexp

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-j3q9-mxjg-w52f-path-to-regexp
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A high vulnerability in npm package: path-to-regexp, version 8.3.0 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Finding 3: GHSA-8gc5-j5rx-235r-fast-xml-parser

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-8gc5-j5rx-235r-fast-xml-parser
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A high vulnerability in npm package: fast-xml-parser, version 5.2.5 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Finding 4: GHSA-37qj-frw5-hhjh-fast-xml-parser

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-37qj-frw5-hhjh-fast-xml-parser
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A high vulnerability in npm package: fast-xml-parser, version 5.2.5 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Finding 5: GHSA-m7jm-9gc2-mpf2-fast-xml-parser

  • Severity: HIGH
  • Scanner: grype
  • Rule ID: GHSA-m7jm-9gc2-mpf2-fast-xml-parser
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A critical vulnerability in npm package: fast-xml-parser, version 5.2.5 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Finding 6: GHSA-jp2q-39xq-3w4g-fast-xml-parser

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-jp2q-39xq-3w4g-fast-xml-parser
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A medium vulnerability in npm package: fast-xml-parser, version 5.2.5 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Finding 7: GHSA-6rw7-vpxm-498p-qs

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-6rw7-vpxm-498p-qs
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A medium vulnerability in npm package: qs, version 6.14.0 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Finding 8: GHSA-q8mj-m7cp-5q26-qs

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-q8mj-m7cp-5q26-qs
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A medium vulnerability in npm package: qs, version 6.14.0 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Finding 9: GHSA-27v5-c462-wpq7-path-to-regexp

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-27v5-c462-wpq7-path-to-regexp
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A medium vulnerability in npm package: path-to-regexp, version 8.3.0 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Finding 10: GHSA-gh4j-gqv2-49f6-fast-xml-parser

  • Severity: MEDIUM
  • Scanner: grype
  • Rule ID: GHSA-gh4j-gqv2-49f6-fast-xml-parser
  • Location: 03-integrations/agentic-frameworks/typescript_mastra/package-lock.json:1

Description:
A medium vulnerability in npm package: fast-xml-parser, version 5.2.5 was found at: /03-integrations/agentic-frameworks/typescript_mastra/package-lock.json


Report generated by Automated Security Helper (ASH) at 2026-08-31T23:10:31+00:00

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

03-integrations 03-integrations agentic-frameworks 03-integrations/agentic-frameworks 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