Skip to content

build(deps): bump @mastra/libsql from 1.17.0 to 1.19.0 - #1006

Closed
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/mastra/libsql-1.19.0
Closed

build(deps): bump @mastra/libsql from 1.17.0 to 1.19.0#1006
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/mastra/libsql-1.19.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps @mastra/libsql from 1.17.0 to 1.19.0.

Release notes

Sourced from @​mastra/libsql's releases.

December 9, 2025

Changelog

Summary

  • Total packages with changes: 12
  • Packages with major changes: 0
  • Packages with minor changes: 0
  • Packages with patch changes: 4

@​mastra/agent-builder@​0.2.6-alpha.1

Patch Changes

  • Fix install step validation error by making targetPath optional in InstallInputSchema. This resolves the "expected string, received undefined" error when running the agent builder template workflow without explicitly providing a targetPath parameter. (#10923)

Dependency Updates

  • @​mastra/core@​0.24.7-alpha.3

@​mastra/ai-sdk@​0.3.3-alpha.0

Patch Changes

  • Return NetworkDataPart on each agent-execution-event and workflow-execution-event in network streams (#10979)

  • Fixed tool-call-suspended chunks being dropped in workflow-step-output when using AI SDK. Previously, when an agent inside a workflow step called a tool that got suspended, the tool-call-suspended chunk was not received on the frontend even though tool-input-available chunks were correctly received. (#10988)

    The issue occurred because tool-call-suspended was not included in the isMastraTextStreamChunk list, causing it to be filtered out in transformWorkflow. Now tool-call-suspended, tool-call-approval, object, and tripwire chunks are properly included in the text stream chunk list and will be transformed and passed through correctly.

    Fixes #10978

Dependency Updates

  • @​mastra/core@​0.24.7-alpha.3

@​mastra/client-js@​0.17.0-alpha.3

Dependency Updates

  • @​mastra/core@​0.24.7-alpha.3

... (truncated)

Changelog

Sourced from @​mastra/libsql's changelog.

1.19.0

Minor Changes

  • Added persistence for dataset item undeclared tool policies. (#19643)

    await dataset.addItem({
      input: 'What is the weather?',
      unmockedToolPolicy: 'deny',
    });

Patch Changes

  • Added a comment column to experiment results so review comments persist. The column is added automatically and non-destructively on startup for existing databases (mastra-ai/mastra#19857). (#19865)

  • Dataset item scorer selections now persist across LibSQL writes and reads. Setting scorerIds to null clears an item override, while [] remains an explicit override with no scorers. (#20191)

    await dataset.addItem({
      input: 'Evaluate this response',
      scorerIds: [],
    });
  • Stored workflow definitions now persist across restarts on every major database backend. (#20471)

    Implement the workflowDefinitions storage domain for libsql, pg, mysql, mssql, mongodb, and spanner. Previously the stored-workflow persistence path (POST /stored/workflows, Mastra.addStoredWorkflow) only worked against @mastra/core's in-memory store. Persistent adapters returned undefined from storage.getStore('workflowDefinitions') and threw when the HTTP handler tried to read/write a workflow.

    const workflowDefinitions = await storage.getStore('workflowDefinitions');
    if (!workflowDefinitions) {
      throw new Error('This storage adapter does not support the workflowDefinitions domain');
    }
    await workflowDefinitions.upsert({
    id: 'greeting-workflow',
    inputSchema: { type: 'object', properties: { name: { type: 'string' } }, required: ['name'] },
    outputSchema: { type: 'object', properties: { text: { type: 'string' } }, required: ['text'] },
    graph: [{ type: 'agent', id: 'greet', agentId: 'greeter-agent' }],
    });
    const { definitions, total } = await workflowDefinitions.list({ status: 'active' });
    const definition = await workflowDefinitions.get('greeting-workflow');
    await workflowDefinitions.delete('greeting-workflow');

    Each adapter now ships a WorkflowDefinitions* domain that:

... (truncated)

Commits
  • b4c8440 chore: version - exit prerelease mode
  • 6a4222d chore: version packages
  • 19ccefa feat(storage): persist dataset item scorer selections (#20191)
  • a8d01e4 chore: version packages
  • 5faf93f Declarative, persistable workflow graphs: engine support, storage domain, and...
  • a199729 chore: version packages
  • c5e56ff fix(datasets): persist review comments on experiment results (#19865)
  • 4e35a56 MASTRA-4502: deny undeclared experiment tool calls deterministically (#19643)
  • 162f3da chore: version - exit prerelease mode
  • 621c9c7 chore: version packages (alpha) (#20247)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 10, 2026
@github-actions

github-actions Bot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

Coverage Report for server

Status Category Percentage Covered / Total
🟢 Lines 98.38% (🎯 97%) 3173 / 3225
🟢 Statements 97.7% (🎯 96%) 3322 / 3400
🟢 Functions 98.74% (🎯 97%) 551 / 558
🟢 Branches 89.1% (🎯 87%) 1300 / 1459
File CoverageNo changed files found.
Generated in workflow #1775 for commit 86fc241 by the Vitest Coverage Report Action

@github-actions

github-actions Bot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

Coverage Report for web

Status Category Percentage Covered / Total
🟢 Lines 97.31% (🎯 96%) 1524 / 1566
🟢 Statements 96.23% (🎯 95%) 1611 / 1674
🟢 Functions 95.82% (🎯 95%) 643 / 671
🟢 Branches 90.71% (🎯 88%) 1016 / 1120
File CoverageNo changed files found.
Generated in workflow #1775 for commit 86fc241 by the Vitest Coverage Report Action

@github-actions

github-actions Bot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

Coverage Report for shared

Status Category Percentage Covered / Total
🟢 Lines 99.12% (🎯 98%) 226 / 228
🟢 Statements 81.2% (🎯 80%) 242 / 298
🟢 Functions 100% (🎯 98%) 76 / 76
🟢 Branches 63.52% (🎯 62%) 101 / 159
File CoverageNo changed files found.
Generated in workflow #1775 for commit 86fc241 by the Vitest Coverage Report Action

@github-actions

github-actions Bot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

Coverage Report for widget

Status Category Percentage Covered / Total
🟢 Lines 100% (🎯 98%) 230 / 230
🟢 Statements 99.59% (🎯 96%) 247 / 248
🟢 Functions 100% (🎯 98%) 45 / 45
🟢 Branches 95.96% (🎯 92%) 119 / 124
File CoverageNo changed files found.
Generated in workflow #1775 for commit 86fc241 by the Vitest Coverage Report Action

Bumps [@mastra/libsql](https://github.com/mastra-ai/mastra/tree/HEAD/stores/libsql) from 1.17.0 to 1.19.0.
- [Release notes](https://github.com/mastra-ai/mastra/releases)
- [Changelog](https://github.com/mastra-ai/mastra/blob/main/stores/libsql/CHANGELOG.md)
- [Commits](https://github.com/mastra-ai/mastra/commits/@mastra/libsql@1.19.0/stores/libsql)

---
updated-dependencies:
- dependency-name: "@mastra/libsql"
  dependency-version: 1.19.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/mastra/libsql-1.19.0 branch from 5bdf096 to 86fc241 Compare August 12, 2026 06:51
@dependabot @github

dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #1027.

@dependabot dependabot Bot closed this Aug 17, 2026
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