create-mastra 0.15.1-alpha.0 → 0.15.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 +8 -0
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# create-mastra
|
|
2
2
|
|
|
3
|
+
## 0.15.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Improve the overall flow of the `create-mastra` CLI by first asking all questions and then creating the project structure. If you skip entering an API key during the wizard, the `your-api-key` placeholder will now be added to an `.env.example` file instead of `.env`. ([#8603](https://github.com/mastra-ai/mastra/pull/8603))
|
|
8
|
+
|
|
9
|
+
## 0.15.1-alpha.1
|
|
10
|
+
|
|
3
11
|
## 0.15.1-alpha.0
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -2005,13 +2005,21 @@ ${addAgent ? `import { weatherAgent } from './agents/weather-agent';` : ""}
|
|
|
2005
2005
|
export const mastra = new Mastra({
|
|
2006
2006
|
${filteredExports.join("\n ")}
|
|
2007
2007
|
storage: new LibSQLStore({
|
|
2008
|
-
// stores
|
|
2008
|
+
// stores observability, scores, ... into memory storage, if it needs to persist, change to file:../mastra.db
|
|
2009
2009
|
url: ":memory:",
|
|
2010
2010
|
}),
|
|
2011
2011
|
logger: new PinoLogger({
|
|
2012
2012
|
name: 'Mastra',
|
|
2013
2013
|
level: 'info',
|
|
2014
2014
|
}),
|
|
2015
|
+
telemetry: {
|
|
2016
|
+
// Telemetry is deprecated and will be removed in the Nov 4th release
|
|
2017
|
+
enabled: false,
|
|
2018
|
+
},
|
|
2019
|
+
observability: {
|
|
2020
|
+
// Enables DefaultExporter and CloudExporter for AI tracing
|
|
2021
|
+
default: { enabled: true },
|
|
2022
|
+
},
|
|
2015
2023
|
});
|
|
2016
2024
|
`
|
|
2017
2025
|
);
|