@mastra/core 0.16.0-alpha.1 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.16.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a01cf14: Add workflow graph in agent (workflow as tool in agent)
8
+
9
+ ### Patch Changes
10
+
11
+ - 8fbf79e: Fix this to be not set when workflow is a step
12
+ - fd83526: Stream agent events with workflow `.streamVNext()`
13
+ - d0b90ab: Fix output processors to run before saving messages to memory
14
+ - 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
15
+ - a9e50ee: Allow both workflow stream message formats for now
16
+ - 5397eb4: Add public URL support when adding files in Multi Modal
17
+ - c9f4e4a: Pass tracing context to scorer run
18
+ - 0acbc80: Add InferUITools and related type helpers for AI SDK compatibility
19
+
20
+ Adds new type utility functions to help with type inference when using Mastra tools with the AI SDK's UI components:
21
+ - `InferUITools` - Infers input/output types for a collection of tools
22
+ - `InferUITool` - Infers input/output types for a single tool
23
+
24
+ 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.
25
+
3
26
  ## 0.16.0-alpha.1
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/core",
3
- "version": "0.16.0-alpha.1",
3
+ "version": "0.16.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -226,8 +226,8 @@
226
226
  "typescript": "^5.8.3",
227
227
  "vitest": "^3.2.4",
228
228
  "zod": "^3.25.76",
229
- "@internal/types-builder": "0.0.10",
230
- "@internal/lint": "0.0.35"
229
+ "@internal/lint": "0.0.36",
230
+ "@internal/types-builder": "0.0.11"
231
231
  },
232
232
  "engines": {
233
233
  "node": ">=20"