create-mastra 1.0.0-beta.6 → 1.0.0-beta.7
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 +12 -0
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# create-mastra
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
|
|
8
|
+
|
|
9
|
+
- Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
|
|
10
|
+
|
|
11
|
+
- Update Observability Trace Spans list UI, so a user can expand/collapse span children/descendants and can filter the list by span type or name ([#10378](https://github.com/mastra-ai/mastra/pull/10378))
|
|
12
|
+
|
|
13
|
+
- Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
|
|
14
|
+
|
|
3
15
|
## 1.0.0-beta.6
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -1169,7 +1169,8 @@ var PinoLogger = class _PinoLogger extends MastraLogger {
|
|
|
1169
1169
|
{
|
|
1170
1170
|
name: options.name || "app",
|
|
1171
1171
|
level: options.level || LogLevel.INFO,
|
|
1172
|
-
formatters: options.formatters
|
|
1172
|
+
formatters: options.formatters,
|
|
1173
|
+
redact: options.redact
|
|
1173
1174
|
},
|
|
1174
1175
|
options.overrideDefaultTransports ? options?.transports?.default : transportsAry.length === 0 ? prettyStream : pino.multistream([
|
|
1175
1176
|
...transportsAry.map(([, transport]) => ({
|
|
@@ -1230,7 +1231,7 @@ var PinoLogger = class _PinoLogger extends MastraLogger {
|
|
|
1230
1231
|
};
|
|
1231
1232
|
|
|
1232
1233
|
var package_default = {
|
|
1233
|
-
version: "1.0.0-beta.
|
|
1234
|
+
version: "1.0.0-beta.7"};
|
|
1234
1235
|
function getPackageManagerAddCommand(pm) {
|
|
1235
1236
|
switch (pm) {
|
|
1236
1237
|
case "npm":
|