@mastra/core 0.24.9-alpha.1 → 0.24.9
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 +6 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
+
## 0.24.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix memory leak in telemetry decorators when processing large payloads. The `@withSpan` decorator now uses bounded serialization utilities to prevent unbounded memory growth when tracing agents with large inputs like base64 images. ([#11231](https://github.com/mastra-ai/mastra/pull/11231))
|
|
8
|
+
|
|
3
9
|
## 0.24.9-alpha.1
|
|
4
10
|
|
|
5
11
|
## 0.24.9-alpha.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/core",
|
|
3
|
-
"version": "0.24.9
|
|
3
|
+
"version": "0.24.9",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -247,9 +247,9 @@
|
|
|
247
247
|
"vitest": "^3.2.4",
|
|
248
248
|
"zod": "^3.25.76",
|
|
249
249
|
"zod-v4": "npm:zod@4.1.12",
|
|
250
|
-
"@internal/
|
|
251
|
-
"@internal/
|
|
252
|
-
"@internal/types
|
|
250
|
+
"@internal/lint": "0.0.67",
|
|
251
|
+
"@internal/types-builder": "0.0.42",
|
|
252
|
+
"@internal/external-types": "0.0.17"
|
|
253
253
|
},
|
|
254
254
|
"engines": {
|
|
255
255
|
"node": ">=20"
|