@mastra/core 0.16.3-alpha.1 → 0.16.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 +40 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
+
## 0.16.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dependencies updates: ([#7545](https://github.com/mastra-ai/mastra/pull/7545))
|
|
8
|
+
- Updated dependency [`hono@^4.9.6` ↗︎](https://www.npmjs.com/package/hono/v/4.9.6) (from `^4.8.12`, in `dependencies`)
|
|
9
|
+
|
|
10
|
+
- Delayed deprecation notice for streamVNext() replacing stream() until Sept 23rd ([#7739](https://github.com/mastra-ai/mastra/pull/7739))
|
|
11
|
+
|
|
12
|
+
- Fix onFinish callback in VNext functions to properly resolve the result ([#7733](https://github.com/mastra-ai/mastra/pull/7733))
|
|
13
|
+
|
|
14
|
+
- support JSONSchema7 output option with generateVNext, streamVNext ([#7630](https://github.com/mastra-ai/mastra/pull/7630))
|
|
15
|
+
|
|
16
|
+
- various improvements to input & output data on ai spans ([#7636](https://github.com/mastra-ai/mastra/pull/7636))
|
|
17
|
+
|
|
18
|
+
- cleanup ([#7736](https://github.com/mastra-ai/mastra/pull/7736))
|
|
19
|
+
|
|
20
|
+
- add network method ([#7704](https://github.com/mastra-ai/mastra/pull/7704))
|
|
21
|
+
|
|
22
|
+
- Fix memory not being affected by agent output processors (#7087). Output processors now correctly modify messages before they are saved to memory storage. The fix ensures that any transformations applied by output processors (like redacting sensitive information) are properly propagated to the memory system. ([#7647](https://github.com/mastra-ai/mastra/pull/7647))
|
|
23
|
+
|
|
24
|
+
- Fix agent structuredOutput option types ([#7668](https://github.com/mastra-ai/mastra/pull/7668))
|
|
25
|
+
|
|
26
|
+
- "added output to agent spans in ai-tracing" ([#7717](https://github.com/mastra-ai/mastra/pull/7717))
|
|
27
|
+
|
|
28
|
+
- Ensure system messages are persisted in processedList ([#7715](https://github.com/mastra-ai/mastra/pull/7715))
|
|
29
|
+
|
|
30
|
+
- AN Merge pt 1 ([#7702](https://github.com/mastra-ai/mastra/pull/7702))
|
|
31
|
+
|
|
32
|
+
- Custom metadata for traces can now be set when starting agents or workflows ([#7689](https://github.com/mastra-ai/mastra/pull/7689))
|
|
33
|
+
|
|
34
|
+
- Workflow & Agent executions now return traceId. ([#7663](https://github.com/mastra-ai/mastra/pull/7663))
|
|
35
|
+
|
|
36
|
+
- fixed bugs in observability config parsing ([#7669](https://github.com/mastra-ai/mastra/pull/7669))
|
|
37
|
+
|
|
38
|
+
- fix playground UI issue about dynmic workflow exec in agent thread ([#7665](https://github.com/mastra-ai/mastra/pull/7665))
|
|
39
|
+
|
|
40
|
+
- Updated dependencies [[`779d469`](https://github.com/mastra-ai/mastra/commit/779d469366bb9f7fcb6d1638fdabb9f3acc49218)]:
|
|
41
|
+
- @mastra/schema-compat@0.11.3
|
|
42
|
+
|
|
3
43
|
## 0.16.3-alpha.1
|
|
4
44
|
|
|
5
45
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/core",
|
|
3
|
-
"version": "0.16.3
|
|
3
|
+
"version": "0.16.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
"js-tiktoken": "^1.0.20",
|
|
202
202
|
"xstate": "^5.20.1",
|
|
203
203
|
"zod-to-json-schema": "^3.24.6",
|
|
204
|
-
"@mastra/schema-compat": "0.11.3
|
|
204
|
+
"@mastra/schema-compat": "0.11.3"
|
|
205
205
|
},
|
|
206
206
|
"peerDependencies": {
|
|
207
207
|
"zod": "^3.25.0 || ^4.0.0"
|
|
@@ -227,8 +227,8 @@
|
|
|
227
227
|
"typescript": "^5.8.3",
|
|
228
228
|
"vitest": "^3.2.4",
|
|
229
229
|
"zod": "^3.25.76",
|
|
230
|
-
"@internal/
|
|
231
|
-
"@internal/
|
|
230
|
+
"@internal/lint": "0.0.39",
|
|
231
|
+
"@internal/types-builder": "0.0.14"
|
|
232
232
|
},
|
|
233
233
|
"engines": {
|
|
234
234
|
"node": ">=20"
|