Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 23, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@mastra/core (source) ^0.4.4 -> ^0.18.0 age confidence

Release Notes

mastra-ai/mastra (@​mastra/core)

v0.18.0

Compare Source

Minor Changes
  • Allow agent instructions to accept SystemMessage types (#​7987)

    Agents can now use rich instruction formats beyond simple strings:

    • CoreSystemMessage and SystemModelMessage objects with provider-specific options
    • Arrays of strings or system messages
    • Dynamic instructions returning any SystemMessage type
Patch Changes
  • Agent type fixes (#​8072)

  • Fixes for getStepResult in workflow steps (#​8065)

  • fix: result object type inference when using structuredOutput and unify output/structuredOutput types with single OUTPUT generic (#​7969)

  • feat: implement trace scoring with batch processing capabilities (#​8033)

  • Fix selection of agent method based on model version (#​8001)

  • show the tool-output stream in the playground for streamVNext (#​7983)

  • Add scorer type, for automatic type inferrence when creating scorers for agents (#​8032)

  • Get rid off swr one for all (#​7931)

  • Fix PostgreSQL vector index recreation issue and add optional index configuration (#​8020)

    • Fixed critical bug where memory vector indexes were unnecessarily recreated on every operation
    • Added support for configuring vector index types (HNSW, IVFFlat, flat) and parameters
  • Fix navigating between scores and entity types (#​8129)

  • Delayed streamVNext breaking change notice by 1 week (#​8121)

  • Tool hitl (#​8084)

  • Updated dependencies [b61b8e0]:

v0.17.1

Compare Source

Patch Changes
  • Refactor agent.#execute fn workflow to make code easier to follow. (#​7964)

  • fix workflow resuming issue in the playground (#​7988)

  • feat: Add system option support to VNext methods (#​7925)

v0.17.0

Compare Source

Minor Changes
  • Remove original AgentNetwork (#​7919)

  • Fully deprecated createRun (now throws an error) in favour of createRunAsync (#​7897)

  • Improved workspace dependency resolution during development and builds. This makes the build process more reliable when working with monorepos and workspace packages, reducing potential bundling errors and improving development experience. (#​7619)

Patch Changes
  • dependencies updates: (#​7861)

  • Updated SensitiveDataFilter to be less greedy in its redacting (#​7840)

  • clean up console logs in monorepo (#​7926)

  • Update dependencies ai-v5 and @​ai-sdk/provider-utils-v5 to latest (#​7884)

  • Added the ability to hide internal ai tracing spans (enabled by default) (#​7764)

  • "refactored ai tracing to commonize types" (#​7744)

  • Register server cache in Mastra (#​7946)

  • feat: add requiresAuth option for custom API routes (#​7703)

    Added a new requiresAuth option to the ApiRoute type that allows users to explicitly control authentication requirements for custom endpoints.

    • By default, all custom routes require authentication (requiresAuth: true)
    • Set requiresAuth: false to make a route publicly accessible without authentication
    • The auth middleware now checks this configuration before applying authentication

    Example usage:

    const customRoutes: ApiRoute[] = [
      {
        path: '/api/public-endpoint',
        method: 'GET',
        requiresAuth: false, // No authentication required
        handler: async c => c.json({ message: 'Public access' }),
      },
      {
        path: '/api/protected-endpoint',
        method: 'GET',
        requiresAuth: true, // Authentication required (default)
        handler: async c => c.json({ message: 'Protected access' }),
      },
    ];

    This addresses issue #​7674 where custom endpoints were not being protected by the authentication system.

  • Resumable streams (#​7949)

  • Only log stream/generate deprecation warning once (#​7905)

  • Add support for running the Mastra dev server over HTTPS for local development. (#​7871)

    • Add --https flag for mastra dev. This automatically creates a local key and certificate for you.

    • Alternatively, you can provide your own key and cert through server.https:

      // src/mastra/index.ts
      import { Mastra } from '@​mastra/core/mastra';
      import fs from 'node:fs';
      
      export const mastra = new Mastra({
        server: {
          https: {
            key: fs.readFileSync('path/to/key.pem'),
            cert: fs.readFileSync('path/to/cert.pem'),
          },
        },
      });
  • refactored handling of internal ai spans to be more intelligent (#​7876)

  • Improve error message when using V1 model with streamVNext (#​7948)

  • prevent out-of-order span errors in ai-tracing DefaultExporter (#​7895)

  • move ToolExecutionOptions and ToolCallOptions to a union type (ToolInvocationOptions) for use in createTool, Tool, and ToolAction (#​7914)

  • avoid refetching on error when resolving a workflow in cloud (#​7842)

  • fix scorers table link full row (#​7915)

  • fix(core): handle JSON code blocks in structured output streaming (#​7864)

  • Postgresql Storage Query Index Performance: Adds index operations and automatic indexing for Postgresql (#​7757)

  • adjust the way we display scorers in agent metadata (#​7910)

  • fix: support destructuring of streamVNext return values (#​7920)

  • Fix VNext generate/stream usage tokens. They used to be undefined, now we are receiving the proper values. (#​7901)

  • Add model fallbacks (#​7126)

  • Add resource id to workflow run snapshots (#​7740)

  • Fixes assistant message ids when using toUIMessageStream, preserves the original messageId rather than creating a new id for this message. (#​7783)

  • Fixes multiple issues with stopWhen and step results. (#​7862)

  • fix error message when fetching observability things (#​7956)

  • Network stream class when calling agent.network() (#​7763)

  • fix workflows runs fetching and displaying (#​7852)

  • fix empty state for scorers on agent page (#​7846)

  • Remove extraneous console.log (#​7916)

  • Deprecate "output" in generate and stream VNext in favour of structuredOutput. When structuredOutput is used in tandem with maxSteps = 1, the structuredOutput processor won't run, it'll generate the output using the main agent, similar to how "output" used to work. (#​7750)

  • Fix switch in prompt-injection (#​7951)

v0.16.3

Compare Source

Patch Changes
  • dependencies updates: (#​7545)

  • Delayed deprecation notice for streamVNext() replacing stream() until Sept 23rd (#​7739)

  • Fix onFinish callback in VNext functions to properly resolve the result (#​7733)

  • support JSONSchema7 output option with generateVNext, streamVNext (#​7630)

  • various improvements to input & output data on ai spans (#​7636)

  • cleanup (#​7736)

  • add network method (#​7704)

  • Fix memory not being affected by agent output processors (#​7087). Output processors now correctly modify messages before they are saved to memory storage. The fix ensures that any transformations applied by output processors (like redacting sensitive information) are properly propagated to the memory system. (#​7647)

  • Fix agent structuredOutput option types (#​7668)

  • "added output to agent spans in ai-tracing" (#​7717)

  • Ensure system messages are persisted in processedList (#​7715)

  • AN Merge pt 1 (#​7702)

  • Custom metadata for traces can now be set when starting agents or workflows (#​7689)

  • Workflow & Agent executions now return traceId. (#​7663)

  • fixed bugs in observability config parsing (#​7669)

  • fix playground UI issue about dynmic workflow exec in agent thread (#​7665)

  • Updated dependencies [779d469]:

v0.16.2

Compare Source

Patch Changes

v0.16.1

Compare Source

Patch Changes
  • Fixed ai tracing for workflows nested directly in agents (#​7599)

  • Fixed provider defined tools for stream/generate vnext (#​7642)

  • Made tracing context optional on tool execute() (#​7532)

  • Fixed ai tracing context propagation in tool calls (#​7531)

  • Call getMemoryMessages even during first turn in a thread when semantic recall scope is resource (#​7529)

  • add usage and total usage to streamVNext onFinish callback (#​7598)

  • Add prepareStep to generate/stream VNext options. (#​7646)

  • Change to createRunAsync (#​7632)

  • Fix type in worfklow (#​7519)

  • Execute tool calls in parallel in generate/stream VNext methods (#​7524)

  • Allow streamVNext and generateVNext to use structuredOutputs from the MastraClient (#​7597)

  • Use workflow streamVNext in playground (#​7575)

  • Revert "feat(mcp): add createMCPTool helper for proper execute types" (#​7513)

  • Fix InvalidDataContentError when using image messages with AI SDK (#​7542)

    Resolves an issue where passing image content in messages would throw an InvalidDataContentError. The fix properly handles multi-part content arrays containing both text and image parts when converting between Mastra and AI SDK message formats.

  • Flatten loop config in stream options and pass to loop options (#​7643)

  • Pass mastra instance into MCP Server tools (#​7520)

  • Fix image input handling for Google Gemini models in AI SDK V5 (#​7490)

    Resolves issue #​7362 where Gemini threw AI_InvalidDataContentError when receiving URLs in image parts. The fix properly handles V3 message file parts that contain both URL and data fields, ensuring URLs are passed as URLs rather than being incorrectly treated as base64 data.

  • Vnext output schema injection (#​6990)

  • removed duplicate 'float' switch case (#​7516)

  • Fix issue with response message id consistency between stream/generate response and the message ids saveed in the DB. Also fixed the custom generatorId implementation to work with this. (#​7606)

v0.16.0

Compare Source

Minor Changes
  • a01cf14: Add workflow graph in agent (workflow as tool in agent)
Patch Changes
  • 8fbf79e: Fix this to be not set when workflow is a step

  • fd83526: Stream agent events with workflow .streamVNext()

  • d0b90ab: Fix output processors to run before saving messages to memory

  • 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages

  • a9e50ee: Allow both workflow stream message formats for now

  • 5397eb4: Add public URL support when adding files in Multi Modal

  • c9f4e4a: Pass tracing context to scorer run

  • 0acbc80: Add InferUITools and related type helpers for AI SDK compatibility

    Adds new type utility functions to help with type inference when using Mastra tools with the AI SDK's UI components:

    • InferUITools - Infers input/output types for a collection of tools
    • InferUITool - Infers input/output types for a single tool

    These type helpers allow developers to easily integrate Mastra tools with AI SDK UI components like useChat by providing proper type inference for tool inputs and outputs.

v0.15.3

Compare Source

Patch Changes
  • ab48c97: dependencies updates:
  • 85ef90b: Return nested workflow steps information in getWorkflowRunExecutionResult
  • aedbbfa: Fixed wrapping of models with AI Tracing when used with structured output.
  • ff89505: Add deprecation warnings and add legacy routes
  • 637f323: Fix issue with some compilers and calling zod v4's toJSONSchema function
  • de3cbc6: Update the package.json file to include additional fields like repository, homepage or files.
  • c19bcf7: stopped recording event spans for llm_chunks in ai-observability
  • 4474d04: fix: do not pass tracing context to score run
  • 183dc95: Added a fix to prevent filtering out injected initial default user messages. Related to issue 7231
  • a1111e2: Fixes #​7254 where the onFinish callback wasn't returning assistant messages when using format: 'aisdk' in streamVNext. The messageList was being updated with response messages but these weren't being passed to the user's onFinish callback.
  • b42a961: New createMCPTool helper for correct types for MCP Server tools
  • 61debef: Fix - add missing tool options to createTool
  • 9beaeff: Create new @mastra/ai-sdk package to better support useChat()
  • 29de0e1: MastraEmbeddingModel and ts hack
  • f643c65: Support file download
  • 00c74e7: Added a DefaultExporter for AI Tracing.
  • fef7375: Fix tool validation when schema uses context or inputData reserved keys
  • e3d8fea: Support Inngest flow control features for Mastra Inngest workflows
  • 45e4d39: Try fixing the Attempted import error: 'z'.'toJSONSchema' is not exported from 'zod' error by tricking the compiler
  • 9eee594: Fix passing providerOptions through in streamVNext, enabling reasoning-delta chunks to be receiving.
  • 7149d8d: Add tripwire chunk to streamVNext full stream
  • 822c2e8: Fix custom output (tool-output) in ai-sdk stream output
  • 979912c: "Updated langfuse exporter to handle Event spans"
  • 7dcf4c0: Ensure original stacktrace is preserved during workflow runs
  • 4106a58: Fix image handling for Google Gemini and other providers when using streamVNext (fixes #​7362)
  • ad78bfc: "pipes tracingContext through all ai items: agents, workflows, tools, processors, scorers, etc.."
  • 0302f50: Some LLM providers (openrouter for ex) add response-metadata chunks after each text-delta, this was resulting in us flushing text deltas into parts after each delta, so our output messages (with streamVNext) would have a separate text part for each text delta, instead of one text part for the combined deltas
  • 6ac697e: improveEmbeddingModelStuff
  • 74db265: Adds handling for event-type spans to the default ai observability exporter
  • 0ce418a: upgrade ai v5 versions to latest for core and memory
  • af90672: Add maxSteps
  • 8387952: Register scorers on mastra instance to override per agent generate call
  • 7f3b8da: Automatically pipe writer to workflows as a tool.
    Also changed start, finish, step-output events to be workflow-start, workflow-finish and workflow-step-output
  • 905352b: Support AISDK models for runExperiment
  • 599d04c: follow up fix for scorers
  • 56041d0: Don't set supportsStructuredOutputs for every v2 model
  • 3412597: Pass provider options
  • 5eca5d2: Fixed wrapped mastra class inside workflow steps.
  • f2cda47: Fixed issue where multiple split messages were created with identical content
    instead of properly distributing different parts of the original message.
  • 5de1555: Fixed tracingContext on tool executions in AI tracing
  • cfd377a: fix default stream options onFinish being overridden
  • 1ed5a3e: Support workflows for run experiments
  • Updated dependencies [ab48c97]
  • Updated dependencies [637f323]
  • Updated dependencies [de3cbc6]
  • Updated dependencies [45e4d39]

v0.15.2

Compare Source

Patch Changes

v0.15.1

Compare Source

v0.15.0

Compare Source

Minor Changes
Patch Changes

v0.14.1

Compare Source

Patch Changes

v0.14.0

Compare Source

Minor Changes
  • 3b5fec7: Added AIV5 support to internal MessageList, precursor to full AIV5 support in latest Mastra
Patch Changes
  • 227c7e6: replace console.log with logger.debug in inmemory operations

  • 12cae67: fix: add threadId and resourceId to scorers

  • fd3a3eb: Add runExperments to run scorers in a test suite or in CI

  • 6faaee5: Reworks agent Processor API to include output processors. Adds structuredOutput property in agent.streamVNext and agent.generate to replace experimental_output. Move imports for processors to @​mastra/core/processors. Adds 6 new output processors, BatchParts, StructuredOutputProcessor, TokenLimiter, SystemPromptScrubber, ModerationProcessor, PiiDetectorProcessor.

  • 4232b14: Fix provider metadata preservation during V5 message conversions

    Provider metadata (providerMetadata and callProviderMetadata) is now properly preserved when converting messages between AI SDK V5 and internal V2 formats. This ensures provider-specific information isn't lost during message transformations.

  • a89de7e: Adding a new agentic loop and streaming workflow system while working towards AI SDK v5 support.

  • 5a37d0c: Fix dev server bug related to p-map imports

  • 4bde0cb: Allow renaming .map functions in workflows

  • cf4f357: When using the Cloudflare deployer you might see a [duplicate-case] warning. The internal cause for this was fixed.

  • ad888a2: Stream vnext agent-network

  • 481751d: Tests mitt.off event handler removal

  • 2454423: Agentic loop and streaming workflow: generateVNext and streamVNext

  • 194e395: exclude _wrapToolsWithAITracing from agent trace

  • a722c0b: Added a patch to filter out system messages that were stored in the db via an old memory bug that was patched long ago (see issue 6689). Users upgrading from the old version that still had the bug would see errors when the memory messages were retrieved from the db

  • c30bca8: Fix do while resume-suspend in simple workflow losing data

  • a8f129d: initial addition of experimental ai observability tracing features.

v0.13.2

Compare Source

Patch Changes
  • d5330bf: Allow agent model to be updated after the agent is created
  • 2e74797: Fix tool arguments being lost when tool-result messages arrive separately from tool-call messages or when messages are restored from database. Tool invocations now correctly preserve their arguments in all scenarios.
  • 8388649: Allow array of messages in vnext agent network
  • a239d41: Updated A2A syntax to v0.3.0
  • dd94a26: Dont rely on the full language model for schema compat
  • 3ba6772: MastraModelInput
  • b5cf2a3: make system message always available during agent calls
  • 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
  • b32c50d: Filter scores by source
  • 63449d0: Change the function signatures of bundle, lint, and internally getToolsInputOptions to expand the toolsPaths TypeScript type from string[] to (string | string[])[].
  • 121a3f8: Fixed an issue where telemetry logs were displaying promise statuses when agent.stream is called
  • ec510e7: Tool input validation now returns errors as tool results instead of throwing, allowing agents to understand validation failures and retry with corrected parameters.
  • Updated dependencies [dd94a26]
  • Updated dependencies [2fff911]
  • Updated dependencies [ae2eb63]

v0.13.1

Compare Source

Patch Changes
  • cd0042e: Fix tool call history not being accessible in agent conversations

    When converting v2 messages (with combined tool calls and text) to v1 format for memory storage, split messages were all keeping the same ID. This caused later messages to replace earlier ones when added back to MessageList, losing tool history.

    The fix adds ID deduplication by appending __split-N suffixes to split messages and prevents double-suffixing when messages are re-converted between formats.

v0.13.0

Compare Source

Minor Changes
Patch Changes
  • cb36de0: dependencies updates:
  • d0496e6: dependencies updates:
  • a82b851: Exclude getVoice, getScorers from agent trace
  • 41a0a0e: fixed a minor bug where ID generator wasn't being properly bound to instances of MessageList
  • 2871020: update safelyParseJSON to check for value of param when handling parse
  • 94f4812: lazy initialize Run's AbortController
  • e202b82: Add getThreadsByResourceIdPaginated to the Memory Class
  • e00f6a0: Fixed an issue where converting from v2->v1 messages would not properly split text and tool call parts into multiple messages
  • 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
  • b0e43c1: Fixed an issue where branching workflow steps maintained "suspended" status even after they've been successfully resumed and executed.
  • 5d377e5: Fix tracing of runtimeContext values"
  • 1fb812e: Fixed a bug in parallel workflow execution where resuming only one of multiple suspended parallel steps incorrectly completed the entire parallel block. The fix ensures proper execution and state management when resuming from suspension in parallel workflows.
  • 35c5798: Add support for transpilePackages option
  • Updated dependencies [4a406ec]

v0.12.1

Compare Source

Patch Changes

v0.12.0

Compare Source

Minor Changes
  • 2ecf658: Added the option to provide a custom ID generator when creating an instance of Mastra. If the generator is not provided, a fallback of using UUID is used to generate IDs instead.
Patch Changes
  • 510e2c8: dependencies updates:

  • 2f72fb2: dependencies updates:

  • 27cc97a: dependencies updates:

  • 3f89307: improve registerApiRoute validation

  • 9eda7d4: Move createMockModel to test scope. This prevents test dependencies from leaking into production code.

  • 9d49408: Fix conditional branch execution after nested workflow resume. Now conditional branches properly re-evaluate their conditions during resume, ensuring only the correct branches execute.

  • 41daa63: Threads are no longer created until message generation is complete to avoid leaving orphaned empty threads in storage on failure

  • ad0a58b: Enhancements for premade input processors

  • 254a36b: Expose mastra instance on dynamic agent arguments

  • 7a7754f: Fast follow scorers fixing input types, improve llm scorer reliability, fix ui to display scores that are 0

  • fc92d80: fix: GenerateReturn type

  • e0f73c6: Make input optional for scorer run

  • 0b89602: Fix workflow feedback loop crashes by preventing resume data reuse

    Fixes an issue where workflows with loops (dountil/dowhile) containing suspended steps would incorrectly reuse resume data across iterations. This caused human-in-the-loop workflows to crash or skip suspend points after resuming.

    The fix ensures resume data is cleared after a step completes (non-suspended status), allowing subsequent loop iterations to properly suspend for new input.

    Fixes #​6014

  • 4d37822: Fix workflow input property preservation after resume from snapshot

    Ensure that when resuming a workflow from a snapshot, the input property is correctly set from the snapshot's context input rather than from resume data. This prevents the loss of original workflow input data during suspend/resume cycles.

  • 23a6a7c: improve error message for missing memory ids

  • cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate

  • a77c823: include PATCH method in default CORS configuration

  • ff9c125: enhance thread retrieval with sorting options in libsql and pg

  • 09bca64: Log warning when telemetry is enabled but not loaded

  • b8efbb9: feat: add flexible deleteMessages method to memory API

    • Added memory.deleteMessages(input) method that accepts multiple input types:
      • Single message ID as string: deleteMessages('msg-123')
      • Array of message IDs: deleteMessages(['msg-1', 'msg-2'])
      • Message object with id property: deleteMessages({ id: 'msg-123' })
      • Array of message objects: deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])
    • Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
    • Added REST API endpoint: POST /api/memory/messages/delete
    • Updated client SDK: thread.deleteMessages() accepts all input types
    • Updates thread timestamps when messages are deleted
    • Added comprehensive test coverage and documentation
  • 71466e7: Adds traceId and resourceId to telemetry spans for agent invocations

  • 0c99fbe: [Feature] Add ability to include input processors to Agent primitive in order to add guardrails to incoming messages.

v0.11.1

Compare Source

Patch Changes
  • f248d53: Adding getMessagesPaginated to the serve, deployer, and client-js

  • 2affc57: Fix output type of network loop

  • 66e13e3: Add methods to fetch workflow/agent by its true id

  • edd9482: Fix "workflow run was not suspended" error when attempting to resume a workflow with consecutive nested workflows.

  • 18344d7: Code and llm scorers

  • 9d372c2: Fix streamVNext error handling

  • 40c2525: Fix agent.generate error with experimental_output and clientTool

  • e473f27: Implement off the shelf Scorers

  • 032cb66: ClientJS

  • 703ac71: scores schema

  • a723d69: Pass workflowId through

  • 7827943: Handle streaming large data

  • 5889a31: Export storage domain types

  • bf1e7e7: Configure agent memory using runtimeContext

  • 65e3395: Add Scores playground-ui and add scorer hooks

  • 4933192: Update Message List to ensure correct order of message parts

  • d1c77a4: Scorer interface

  • bea9dd1: Refactor Agent class to consolidate LLM generate and stream methods and improve type safety. This includes
    extracting common logic into prepareLLMOptions(), enhancing type definitions, and fixing test annotations.

    This changeset entry follows the established format in your project:

    • Targets the @​mastra/core package with a patch version bump
    • Provides a concise description of the refactoring and type safety improvements
    • Mentions the key changes without being too verbose
  • dcd4802: scores mastra server

  • cbddd18: Remove erroneous reassignment of Mastra.prototype.#vectors

  • 7ba91fa: Add scorer abstract methods for base storage

v0.11.0

Compare Source

Patch Changes
  • f248d53: Adding getMessagesPaginated to the serve, deployer, and client-js

  • 2affc57: Fix output type of network loop

  • 66e13e3: Add methods to fetch workflow/agent by its true id

  • edd9482: Fix "workflow run was not suspended" error when attempting to resume a workflow with consecutive nested workflows.

  • 18344d7: Code and llm scorers

  • 9d372c2: Fix streamVNext error handling

  • 40c2525: Fix agent.generate error with experimental_output and clientTool

  • e473f27: Implement of


Configuration

📅 Schedule: Branch creation - "every weekday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title chore(deps): update dependency @mastra/core to ^0.11.0 chore(deps): update dependency @mastra/core to ^0.12.0 Jul 30, 2025
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch from fd2e4bb to a228a08 Compare July 30, 2025 04:06
@renovate renovate bot changed the title chore(deps): update dependency @mastra/core to ^0.12.0 chore(deps): update dependency @mastra/core to ^0.13.0 Aug 6, 2025
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch 3 times, most recently from d78e16b to 62491ed Compare August 12, 2025 23:07
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch from 62491ed to eed3b6c Compare August 19, 2025 11:25
@renovate renovate bot changed the title chore(deps): update dependency @mastra/core to ^0.13.0 chore(deps): update dependency @mastra/core to ^0.14.0 Aug 21, 2025
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch from eed3b6c to 1d81986 Compare August 21, 2025 19:56
@renovate renovate bot changed the title chore(deps): update dependency @mastra/core to ^0.14.0 chore(deps): update dependency @mastra/core to ^0.15.0 Aug 26, 2025
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch from 1d81986 to c468604 Compare August 26, 2025 23:50
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch 2 times, most recently from 5468a64 to 5664af6 Compare September 5, 2025 03:48
@renovate renovate bot changed the title chore(deps): update dependency @mastra/core to ^0.15.0 chore(deps): update dependency @mastra/core to ^0.16.0 Sep 5, 2025
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch 2 times, most recently from 222e465 to 0b41896 Compare September 11, 2025 21:06
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch from 0b41896 to 84c7f6c Compare September 17, 2025 19:29
@renovate renovate bot changed the title chore(deps): update dependency @mastra/core to ^0.16.0 chore(deps): update dependency @mastra/core to ^0.17.0 Sep 17, 2025
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch 2 times, most recently from 1b85f78 to 39e8418 Compare September 24, 2025 00:38
@renovate renovate bot changed the title chore(deps): update dependency @mastra/core to ^0.17.0 chore(deps): update dependency @mastra/core to ^0.18.0 Sep 24, 2025
@renovate renovate bot force-pushed the renovate/mastra-core-0.x branch from 39e8418 to 855da7f Compare September 25, 2025 17:51
@jirispilka jirispilka self-requested a review September 27, 2025 20:41
@renovate
Copy link
Contributor Author

renovate bot commented Sep 27, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Copy link
Contributor

@jirispilka jirispilka left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've tested that and it works.
If there is no failure in tests we can merge.

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.

2 participants