create-mastra 0.14.0-alpha.0 → 0.14.1

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,55 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.14.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Make init versions latest pkgs ([#8434](https://github.com/mastra-ai/mastra/pull/8434))
8
+
9
+ ## 0.14.1-alpha.0
10
+
11
+ ### Patch Changes
12
+
13
+ - Make init versions latest pkgs ([#8434](https://github.com/mastra-ai/mastra/pull/8434))
14
+
15
+ ## 0.14.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 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))
20
+
21
+ ### Patch Changes
22
+
23
+ - Remove log drains UI from the playground ([#8379](https://github.com/mastra-ai/mastra/pull/8379))
24
+
25
+ - add refetch interval to traces to make it feel "instant" ([#8386](https://github.com/mastra-ai/mastra/pull/8386))
26
+
27
+ - better memory message ([#8382](https://github.com/mastra-ai/mastra/pull/8382))
28
+
29
+ - fix codeblock line number color contrast for legacy traces ([#8385](https://github.com/mastra-ai/mastra/pull/8385))
30
+
31
+ - Model router documentation and playground UI improvements ([#8372](https://github.com/mastra-ai/mastra/pull/8372))
32
+
33
+ **Documentation generation (`@mastra/core`):**
34
+ - Fixed inverted dynamic model selection logic in provider examples
35
+ - Improved copy: replaced marketing language with action-oriented descriptions
36
+ - Added generated file comments with timestamps to all MDX outputs so maintainers know not to directly edit generated files
37
+
38
+ **Playground UI model picker (`@mastra/playground-ui`):**
39
+ - Fixed provider field clearing when typing in model input
40
+ - Added responsive layout (stacks on mobile, side-by-side on desktop)
41
+ - Improved general styling of provider/model pickers
42
+
43
+ **Environment variables (`@mastra/deployer`):**
44
+ - Properly handle array of env vars (e.g., NETLIFY_TOKEN, NETLIFY_SITE_ID)
45
+ - Added correct singular/plural handling for "environment variable(s)"
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.14.0-alpha.0
4
54
 
5
55
  ### Minor Changes
package/dist/index.js CHANGED
@@ -1667,10 +1667,8 @@ var FileService = class {
1667
1667
  var exec2 = util.promisify(child_process.exec);
1668
1668
  var getAISDKPackageVersion = (llmProvider) => {
1669
1669
  switch (llmProvider) {
1670
- case "cerebras":
1671
- return "^0.2.14";
1672
1670
  default:
1673
- return "^1.0.0";
1671
+ return "latest";
1674
1672
  }
1675
1673
  };
1676
1674
  var getAISDKPackage = (llmProvider) => {