@mastra/core 0.20.1-alpha.4 → 0.20.1
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 +49 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
+
## 0.20.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- workflow run thread more visible ([#8539](https://github.com/mastra-ai/mastra/pull/8539))
|
|
8
|
+
|
|
9
|
+
- Add iterationCount to loop condition params ([#8579](https://github.com/mastra-ai/mastra/pull/8579))
|
|
10
|
+
|
|
11
|
+
- Mutable shared workflow run state ([#8545](https://github.com/mastra-ai/mastra/pull/8545))
|
|
12
|
+
|
|
13
|
+
- avoid refetching memory threads and messages on window focus ([#8519](https://github.com/mastra-ai/mastra/pull/8519))
|
|
14
|
+
|
|
15
|
+
- add tripwire reason in playground ([#8568](https://github.com/mastra-ai/mastra/pull/8568))
|
|
16
|
+
|
|
17
|
+
- Add validation for index creation ([#8552](https://github.com/mastra-ai/mastra/pull/8552))
|
|
18
|
+
|
|
19
|
+
- Save waiting step status in snapshot ([#8576](https://github.com/mastra-ai/mastra/pull/8576))
|
|
20
|
+
|
|
21
|
+
- Added AI SDK provider packages to model router for anthropic/google/openai/openrouter/xai ([#8559](https://github.com/mastra-ai/mastra/pull/8559))
|
|
22
|
+
|
|
23
|
+
- type fixes and missing changeset ([#8545](https://github.com/mastra-ai/mastra/pull/8545))
|
|
24
|
+
|
|
25
|
+
- Convert WorkflowWatchResult to WorkflowResult in workflow graph ([#8541](https://github.com/mastra-ai/mastra/pull/8541))
|
|
26
|
+
|
|
27
|
+
- add new deploy to cloud button ([#8549](https://github.com/mastra-ai/mastra/pull/8549))
|
|
28
|
+
|
|
29
|
+
- remove icons in entity lists ([#8520](https://github.com/mastra-ai/mastra/pull/8520))
|
|
30
|
+
|
|
31
|
+
- add client search to all entities ([#8523](https://github.com/mastra-ai/mastra/pull/8523))
|
|
32
|
+
|
|
33
|
+
- Fixed an issue where model router was adding /chat/completions to API urls when it shouldn't. ([#8589](https://github.com/mastra-ai/mastra/pull/8589))
|
|
34
|
+
fixed an issue with provider ID rendering in playground UI
|
|
35
|
+
|
|
36
|
+
- Improve JSDoc documentation for Agent ([#8389](https://github.com/mastra-ai/mastra/pull/8389))
|
|
37
|
+
|
|
38
|
+
- Properly fix cloudflare randomUUID in global scope issue ([#8450](https://github.com/mastra-ai/mastra/pull/8450))
|
|
39
|
+
|
|
40
|
+
- Marked OTEL based telemetry as deprecated. ([#8586](https://github.com/mastra-ai/mastra/pull/8586))
|
|
41
|
+
|
|
42
|
+
- Add support for streaming nested agent tools ([#8580](https://github.com/mastra-ai/mastra/pull/8580))
|
|
43
|
+
|
|
44
|
+
- Fix TypeScript errors with provider-defined tools by updating ai-v5 and openai-v5 to matching provider-utils versions. This ensures npm deduplicates to a single provider-utils instance, resolving type incompatibility issues when passing provider tools to Agent. ([#8584](https://github.com/mastra-ai/mastra/pull/8584))
|
|
45
|
+
|
|
46
|
+
Also adds deprecation warning to Agent import from root path to encourage using the recommended subpath import.
|
|
47
|
+
|
|
48
|
+
- UX for the agents page ([#8517](https://github.com/mastra-ai/mastra/pull/8517))
|
|
49
|
+
|
|
50
|
+
- add icons into playground titles + a link to the entity doc ([#8518](https://github.com/mastra-ai/mastra/pull/8518))
|
|
51
|
+
|
|
3
52
|
## 0.20.1-alpha.4
|
|
4
53
|
|
|
5
54
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/core",
|
|
3
|
-
"version": "0.20.1
|
|
3
|
+
"version": "0.20.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -244,8 +244,8 @@
|
|
|
244
244
|
"typescript": "^5.8.3",
|
|
245
245
|
"vitest": "^3.2.4",
|
|
246
246
|
"zod": "^3.25.76",
|
|
247
|
-
"@internal/types-builder": "0.0.
|
|
248
|
-
"@internal/lint": "0.0.
|
|
247
|
+
"@internal/types-builder": "0.0.22",
|
|
248
|
+
"@internal/lint": "0.0.47"
|
|
249
249
|
},
|
|
250
250
|
"engines": {
|
|
251
251
|
"node": ">=20"
|