@mastra/core 0.15.3-alpha.9 → 0.15.3

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 +55 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,60 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.15.3
4
+
5
+ ### Patch Changes
6
+
7
+ - ab48c97: dependencies updates:
8
+ - Updated dependency [`zod-to-json-schema@^3.24.6` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.6) (from `^3.24.5`, in `dependencies`)
9
+ - 85ef90b: Return nested workflow steps information in getWorkflowRunExecutionResult
10
+ - aedbbfa: Fixed wrapping of models with AI Tracing when used with structured output.
11
+ - ff89505: Add deprecation warnings and add legacy routes
12
+ - 637f323: Fix issue with some compilers and calling zod v4's toJSONSchema function
13
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
14
+ - c19bcf7: stopped recording event spans for llm_chunks in ai-observability
15
+ - 4474d04: fix: do not pass tracing context to score run
16
+ - 183dc95: Added a fix to prevent filtering out injected initial default user messages. Related to issue 7231
17
+ - 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.
18
+ - b42a961: New createMCPTool helper for correct types for MCP Server tools
19
+ - 61debef: Fix - add missing tool options to createTool
20
+ - 9beaeff: Create new `@mastra/ai-sdk` package to better support `useChat()`
21
+ - 29de0e1: MastraEmbeddingModel and ts hack
22
+ - f643c65: Support file download
23
+ - 00c74e7: Added a DefaultExporter for AI Tracing.
24
+ - fef7375: Fix tool validation when schema uses context or inputData reserved keys
25
+ - e3d8fea: Support Inngest flow control features for Mastra Inngest workflows
26
+ - 45e4d39: Try fixing the `Attempted import error: 'z'.'toJSONSchema' is not exported from 'zod'` error by tricking the compiler
27
+ - 9eee594: Fix passing providerOptions through in streamVNext, enabling reasoning-delta chunks to be receiving.
28
+ - 7149d8d: Add tripwire chunk to streamVNext full stream
29
+ - 822c2e8: Fix custom output (tool-output) in ai-sdk stream output
30
+ - 979912c: "Updated langfuse exporter to handle Event spans"
31
+ - 7dcf4c0: Ensure original stacktrace is preserved during workflow runs
32
+ - 4106a58: Fix image handling for Google Gemini and other providers when using streamVNext (fixes #7362)
33
+ - ad78bfc: "pipes tracingContext through all ai items: agents, workflows, tools, processors, scorers, etc.."
34
+ - 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
35
+ - 6ac697e: improveEmbeddingModelStuff
36
+ - 74db265: Adds handling for event-type spans to the default ai observability exporter
37
+ - 0ce418a: upgrade ai v5 versions to latest for core and memory
38
+ - af90672: Add maxSteps
39
+ - 8387952: Register scorers on mastra instance to override per agent generate call
40
+ - 7f3b8da: Automatically pipe writer to workflows as a tool.
41
+ Also changed start, finish, step-output events to be workflow-start, workflow-finish and workflow-step-output
42
+ - 905352b: Support AISDK models for runExperiment
43
+ - 599d04c: follow up fix for scorers
44
+ - 56041d0: Don't set supportsStructuredOutputs for every v2 model
45
+ - 3412597: Pass provider options
46
+ - 5eca5d2: Fixed wrapped mastra class inside workflow steps.
47
+ - f2cda47: Fixed issue where multiple split messages were created with identical content
48
+ instead of properly distributing different parts of the original message.
49
+ - 5de1555: Fixed tracingContext on tool executions in AI tracing
50
+ - cfd377a: fix default stream options onFinish being overridden
51
+ - 1ed5a3e: Support workflows for run experiments
52
+ - Updated dependencies [ab48c97]
53
+ - Updated dependencies [637f323]
54
+ - Updated dependencies [de3cbc6]
55
+ - Updated dependencies [45e4d39]
56
+ - @mastra/schema-compat@0.11.2
57
+
3
58
  ## 0.15.3-alpha.9
4
59
 
5
60
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/core",
3
- "version": "0.15.3-alpha.9",
3
+ "version": "0.15.3",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -201,7 +201,7 @@
201
201
  "js-tiktoken": "^1.0.20",
202
202
  "xstate": "^5.20.1",
203
203
  "zod-to-json-schema": "^3.24.6",
204
- "@mastra/schema-compat": "0.11.2-alpha.3"
204
+ "@mastra/schema-compat": "0.11.2"
205
205
  },
206
206
  "peerDependencies": {
207
207
  "zod": "^3.25.0 || ^4.0.0"
@@ -226,8 +226,8 @@
226
226
  "typescript": "^5.8.3",
227
227
  "vitest": "^3.2.4",
228
228
  "zod": "^3.25.76",
229
- "@internal/lint": "0.0.34",
230
- "@internal/types-builder": "0.0.9"
229
+ "@internal/lint": "0.0.35",
230
+ "@internal/types-builder": "0.0.10"
231
231
  },
232
232
  "engines": {
233
233
  "node": ">=20"