create-mastra 0.14.2-alpha.0 → 0.15.0-alpha.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.15.0-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed an issue where model router was adding /chat/completions to API urls when it shouldn't. ([#8589](https://github.com/mastra-ai/mastra/pull/8589))
8
+ fixed an issue with provider ID rendering in playground UI
9
+
10
+ ## 0.14.2-alpha.2
11
+
12
+ ### Patch Changes
13
+
14
+ - Added AI SDK provider packages to model router for anthropic/google/openai/openrouter/xai ([#8559](https://github.com/mastra-ai/mastra/pull/8559))
15
+
16
+ ## 0.14.2-alpha.1
17
+
18
+ ### Patch Changes
19
+
20
+ - Mutable shared workflow run state ([#8545](https://github.com/mastra-ai/mastra/pull/8545))
21
+
22
+ - avoid refetching memory threads and messages on window focus ([#8519](https://github.com/mastra-ai/mastra/pull/8519))
23
+
24
+ - add tripwire reason in playground ([#8568](https://github.com/mastra-ai/mastra/pull/8568))
25
+
26
+ - Save waiting step status in snapshot ([#8576](https://github.com/mastra-ai/mastra/pull/8576))
27
+
28
+ - Convert WorkflowWatchResult to WorkflowResult in workflow graph ([#8541](https://github.com/mastra-ai/mastra/pull/8541))
29
+
3
30
  ## 0.14.2-alpha.0
4
31
 
5
32
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2677,7 +2677,7 @@ program.version(`${version}`, "-v, --version").description(`create-mastra ${vers
2677
2677
  program.name("create-mastra").description("Create a new Mastra project").argument("[project-name]", "Directory name of the project").option(
2678
2678
  "-p, --project-name <string>",
2679
2679
  "Project name that will be used in package.json and as the project directory name."
2680
- ).option("--default", "Quick start with defaults(src, OpenAI, examples)").option("-c, --components <components>", "Comma-separated list of components (agents, tools, workflows)").option("-l, --llm <model-provider>", "Default model provider (openai, anthropic, groq, google, or cerebras)").option("-k, --llm-api-key <api-key>", "API key for the model provider").option("-e, --example", "Include example code").option("-n, --no-example", "Do not include example code").option("-t, --timeout [timeout]", "Configurable timeout for package installation, defaults to 60000 ms").option("-d, --dir <directory>", "Target directory for Mastra source code (default: src/)").option("-m, --mcp <mcp>", "MCP Server for code editor (cursor, cursor-global, windsurf, vscode)").option(
2680
+ ).option("--default", "Quick start with defaults (src, OpenAI, examples)").option("-c, --components <components>", "Comma-separated list of components (agents, tools, workflows)").option("-l, --llm <model-provider>", "Default model provider (openai, anthropic, groq, google, or cerebras)").option("-k, --llm-api-key <api-key>", "API key for the model provider").option("-e, --example", "Include example code").option("-n, --no-example", "Do not include example code").option("-t, --timeout [timeout]", "Configurable timeout for package installation, defaults to 60000 ms").option("-d, --dir <directory>", "Target directory for Mastra source code (default: src/)").option("-m, --mcp <mcp>", "MCP Server for code editor (cursor, cursor-global, windsurf, vscode)").option(
2681
2681
  "--template [template-name]",
2682
2682
  "Create project from a template (use template name, public GitHub URL, or leave blank to select from list)"
2683
2683
  ).action(async (projectNameArg, args) => {