create-mastra 0.14.0 → 0.14.2-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.
- package/CHANGELOG.md +20 -0
- package/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# create-mastra
|
|
2
2
|
|
|
3
|
+
## 0.14.2-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- streamLegacy/generateLegacy clarification in playground ([#8468](https://github.com/mastra-ai/mastra/pull/8468))
|
|
8
|
+
|
|
9
|
+
- Fix useStreamWorkflow unmounting breaking stream call ([#8449](https://github.com/mastra-ai/mastra/pull/8449))
|
|
10
|
+
|
|
11
|
+
## 0.14.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Make init versions latest pkgs ([#8434](https://github.com/mastra-ai/mastra/pull/8434))
|
|
16
|
+
|
|
17
|
+
## 0.14.1-alpha.0
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Make init versions latest pkgs ([#8434](https://github.com/mastra-ai/mastra/pull/8434))
|
|
22
|
+
|
|
3
23
|
## 0.14.0
|
|
4
24
|
|
|
5
25
|
### 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 "
|
|
1671
|
+
return "latest";
|
|
1674
1672
|
}
|
|
1675
1673
|
};
|
|
1676
1674
|
var getAISDKPackage = (llmProvider) => {
|