@mastra/core 0.20.0-alpha.0 → 0.20.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 +50 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,55 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.20.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Breaking change to move the agent.streamVNext/generateVNext implementation to the default stream/generate. The old stream/generate have now been moved to streamLegacy and generateLegacy ([#8097](https://github.com/mastra-ai/mastra/pull/8097))
8
+
9
+ ### Patch Changes
10
+
11
+ - Remove log drains UI from the playground ([#8379](https://github.com/mastra-ai/mastra/pull/8379))
12
+
13
+ - add refetch interval to traces to make it feel "instant" ([#8386](https://github.com/mastra-ai/mastra/pull/8386))
14
+
15
+ - better memory message ([#8382](https://github.com/mastra-ai/mastra/pull/8382))
16
+
17
+ - Add doc url to netlify gateway ([#8356](https://github.com/mastra-ai/mastra/pull/8356))
18
+
19
+ - fix codeblock line number color contrast for legacy traces ([#8385](https://github.com/mastra-ai/mastra/pull/8385))
20
+
21
+ - Fixes two issues, one where finish chunks were passed to output processors after every step, and the other where the processorState would get reset after every step, meaning that the final StructuredOutput process prompt was missing lots of context from the previous steps. ([#8373](https://github.com/mastra-ai/mastra/pull/8373))
22
+
23
+ - Convert structured output to a stream processor ([#8229](https://github.com/mastra-ai/mastra/pull/8229))
24
+
25
+ - Model router documentation and playground UI improvements ([#8372](https://github.com/mastra-ai/mastra/pull/8372))
26
+
27
+ **Documentation generation (`@mastra/core`):**
28
+ - Fixed inverted dynamic model selection logic in provider examples
29
+ - Improved copy: replaced marketing language with action-oriented descriptions
30
+ - Added generated file comments with timestamps to all MDX outputs so maintainers know not to directly edit generated files
31
+
32
+ **Playground UI model picker (`@mastra/playground-ui`):**
33
+ - Fixed provider field clearing when typing in model input
34
+ - Added responsive layout (stacks on mobile, side-by-side on desktop)
35
+ - Improved general styling of provider/model pickers
36
+
37
+ **Environment variables (`@mastra/deployer`):**
38
+ - Properly handle array of env vars (e.g., NETLIFY_TOKEN, NETLIFY_SITE_ID)
39
+ - Added correct singular/plural handling for "environment variable(s)"
40
+
41
+ - Add approve and decline tool calls to mastra server pkg ([#8360](https://github.com/mastra-ai/mastra/pull/8360))
42
+
43
+ - Fix/8219 preserve resourceid on resume ([#8359](https://github.com/mastra-ai/mastra/pull/8359))
44
+
45
+ - Fix ai-sdk custom data output ([#8414](https://github.com/mastra-ai/mastra/pull/8414))
46
+
47
+ - show thread list in desc order ([#8381](https://github.com/mastra-ai/mastra/pull/8381))
48
+
49
+ - Fix an issue preventing showing working memory and semantic recall in the playground ([#8358](https://github.com/mastra-ai/mastra/pull/8358))
50
+
51
+ - Add observe strean to get streans after workflow has been interrupted ([#8318](https://github.com/mastra-ai/mastra/pull/8318))
52
+
3
53
  ## 0.20.0-alpha.0
4
54
 
5
55
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/core",
3
- "version": "0.20.0-alpha.0",
3
+ "version": "0.20.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -239,8 +239,8 @@
239
239
  "typescript": "^5.8.3",
240
240
  "vitest": "^3.2.4",
241
241
  "zod": "^3.25.76",
242
- "@internal/lint": "0.0.44",
243
- "@internal/types-builder": "0.0.19"
242
+ "@internal/lint": "0.0.45",
243
+ "@internal/types-builder": "0.0.20"
244
244
  },
245
245
  "engines": {
246
246
  "node": ">=20"