create-mastra 0.0.0-fix-request-context-as-query-key-20251209130646 → 0.0.0-fix-zod4-schema-validation-20251212180638
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 +21 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# create-mastra
|
|
2
2
|
|
|
3
|
-
## 0.0.0-fix-
|
|
3
|
+
## 0.0.0-fix-zod4-schema-validation-20251212180638
|
|
4
4
|
|
|
5
5
|
### Major Changes
|
|
6
6
|
|
|
@@ -30,6 +30,12 @@
|
|
|
30
30
|
|
|
31
31
|
- Add timeTravel APIs and add timeTravel feature to studio ([#10361](https://github.com/mastra-ai/mastra/pull/10361))
|
|
32
32
|
|
|
33
|
+
- Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
|
|
34
|
+
|
|
35
|
+
```typescript
|
|
36
|
+
await workflow.deleteWorkflowRunById(runId);
|
|
37
|
+
```
|
|
38
|
+
|
|
33
39
|
- Fix discriminatedUnion schema information lost when json schema is converted to zod ([#10500](https://github.com/mastra-ai/mastra/pull/10500))
|
|
34
40
|
|
|
35
41
|
- Move useScorers down to trace page to trigger it once for all trace spans ([#10985](https://github.com/mastra-ai/mastra/pull/10985))
|
|
@@ -44,6 +50,20 @@
|
|
|
44
50
|
|
|
45
51
|
- Fix double scroll on agent chat container ([#10253](https://github.com/mastra-ai/mastra/pull/10253))
|
|
46
52
|
|
|
53
|
+
- fix isTopLevelSpan value definition on SpanScoring to properly recognize lack of span?.parentSpanId value (null or empty string) ([#11083](https://github.com/mastra-ai/mastra/pull/11083))
|
|
54
|
+
|
|
55
|
+
## 1.0.0-beta.9
|
|
56
|
+
|
|
57
|
+
## 1.0.0-beta.8
|
|
58
|
+
|
|
59
|
+
### Patch Changes
|
|
60
|
+
|
|
61
|
+
- Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
|
|
62
|
+
|
|
63
|
+
```typescript
|
|
64
|
+
await workflow.deleteWorkflowRunById(runId);
|
|
65
|
+
```
|
|
66
|
+
|
|
47
67
|
## 1.0.0-beta.7
|
|
48
68
|
|
|
49
69
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -1231,7 +1231,7 @@ var PinoLogger = class _PinoLogger extends MastraLogger {
|
|
|
1231
1231
|
};
|
|
1232
1232
|
|
|
1233
1233
|
var package_default = {
|
|
1234
|
-
version: "1.0.0-beta.
|
|
1234
|
+
version: "1.0.0-beta.9"};
|
|
1235
1235
|
function getPackageManagerAddCommand(pm) {
|
|
1236
1236
|
switch (pm) {
|
|
1237
1237
|
case "npm":
|