create-mastra 1.0.0-beta.6 → 1.0.0-beta.8

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,27 @@
1
1
  # create-mastra
2
2
 
3
+ ## 1.0.0-beta.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
8
+
9
+ ```typescript
10
+ await workflow.deleteWorkflowRunById(runId);
11
+ ```
12
+
13
+ ## 1.0.0-beta.7
14
+
15
+ ### Patch Changes
16
+
17
+ - Fix default value showing on workflow form after user submits ([#10983](https://github.com/mastra-ai/mastra/pull/10983))
18
+
19
+ - Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
20
+
21
+ - 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))
22
+
23
+ - Fix workflow trigger form overflow ([#10986](https://github.com/mastra-ai/mastra/pull/10986))
24
+
3
25
  ## 1.0.0-beta.6
4
26
 
5
27
  ### 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.6"};
1234
+ version: "1.0.0-beta.8"};
1234
1235
  function getPackageManagerAddCommand(pm) {
1235
1236
  switch (pm) {
1236
1237
  case "npm":