create-mastra 0.13.4 → 0.14.0-alpha.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 +38 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.14.0-alpha.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
+ - fix codeblock line number color contrast for legacy traces ([#8385](https://github.com/mastra-ai/mastra/pull/8385))
18
+
19
+ - Model router documentation and playground UI improvements ([#8372](https://github.com/mastra-ai/mastra/pull/8372))
20
+
21
+ **Documentation generation (`@mastra/core`):**
22
+ - Fixed inverted dynamic model selection logic in provider examples
23
+ - Improved copy: replaced marketing language with action-oriented descriptions
24
+ - Added generated file comments with timestamps to all MDX outputs so maintainers know not to directly edit generated files
25
+
26
+ **Playground UI model picker (`@mastra/playground-ui`):**
27
+ - Fixed provider field clearing when typing in model input
28
+ - Added responsive layout (stacks on mobile, side-by-side on desktop)
29
+ - Improved general styling of provider/model pickers
30
+
31
+ **Environment variables (`@mastra/deployer`):**
32
+ - Properly handle array of env vars (e.g., NETLIFY_TOKEN, NETLIFY_SITE_ID)
33
+ - Added correct singular/plural handling for "environment variable(s)"
34
+
35
+ - show thread list in desc order ([#8381](https://github.com/mastra-ai/mastra/pull/8381))
36
+
37
+ - Fix an issue preventing showing working memory and semantic recall in the playground ([#8358](https://github.com/mastra-ai/mastra/pull/8358))
38
+
39
+ - Add observe strean to get streans after workflow has been interrupted ([#8318](https://github.com/mastra-ai/mastra/pull/8318))
40
+
3
41
  ## 0.13.4
4
42
 
5
43
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mastra",
3
- "version": "0.13.4",
3
+ "version": "0.14.0-alpha.0",
4
4
  "description": "Create Mastra apps with one command",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -51,8 +51,8 @@
51
51
  "rollup-plugin-esbuild": "^6.2.1",
52
52
  "rollup-plugin-node-externals": "^8.0.1",
53
53
  "typescript": "^5.8.3",
54
- "mastra": "^0.13.4",
55
- "@internal/lint": "0.0.44"
54
+ "@internal/lint": "0.0.44",
55
+ "mastra": "^0.14.0-alpha.0"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=20"