create-mastra 0.13.2-alpha.0 → 0.13.2-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,22 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.13.2-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Add model fallback handlers and apis ([#7378](https://github.com/mastra-ai/mastra/pull/7378))
8
+
9
+ - Fix DateTimePicker style issue ([#8106](https://github.com/mastra-ai/mastra/pull/8106))
10
+
11
+ ## 0.13.2-alpha.2
12
+
13
+ ## 0.13.2-alpha.1
14
+
15
+ ### Patch Changes
16
+
17
+ - dependencies updates: ([#8007](https://github.com/mastra-ai/mastra/pull/8007))
18
+ - Updated dependency [`fs-extra@^11.3.2` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.2) (from `^11.3.1`, in `dependencies`)
19
+
3
20
  ## 0.13.2-alpha.0
4
21
 
5
22
  ## 0.13.1
@@ -3,6 +3,7 @@
3
3
  import { evaluate } from '@mastra/core/eval';
4
4
  import { AvailableHooks, registerHook } from '@mastra/core/hooks';
5
5
  import { TABLE_EVALS } from '@mastra/core/storage';
6
+ import { scoreTracesWorkflow } from '@mastra/core/scores/scoreTraces';
6
7
  import { checkEvalStorageFields } from '@mastra/core/utils';
7
8
  import { mastra } from '#mastra';
8
9
  import { createNodeServer, getToolExports } from '#server';
@@ -26,6 +27,10 @@ registerHook(AvailableHooks.ON_GENERATION, ({ input, output, metric, runId, agen
26
27
  });
27
28
  });
28
29
 
30
+ if (mastra.getStorage()) {
31
+ mastra.__registerInternalWorkflow(scoreTracesWorkflow);
32
+ }
33
+
29
34
  registerHook(AvailableHooks.ON_EVALUATION, async traceObject => {
30
35
  const storage = mastra.getStorage();
31
36
  if (storage) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mastra",
3
- "version": "0.13.2-alpha.0",
3
+ "version": "0.13.2-alpha.3",
4
4
  "description": "Create Mastra apps with one command",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -32,7 +32,7 @@
32
32
  "dependencies": {
33
33
  "commander": "^12.1.0",
34
34
  "execa": "^9.6.0",
35
- "fs-extra": "^11.3.1",
35
+ "fs-extra": "^11.3.2",
36
36
  "pino": "^9.7.0",
37
37
  "pino-pretty": "^13.0.0",
38
38
  "posthog-node": "^4.18.0",
@@ -52,7 +52,7 @@
52
52
  "rollup-plugin-node-externals": "^8.0.1",
53
53
  "typescript": "^5.8.3",
54
54
  "@internal/lint": "0.0.41",
55
- "mastra": "^0.13.2-alpha.0"
55
+ "mastra": "^0.13.2-alpha.3"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=20"