@mastra/core 0.24.0-alpha.0 → 0.24.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.24.0
4
+
5
+ ### Patch Changes
6
+
7
+ - update peerdeps ([`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc))
8
+
9
+ - Fix workflow input property preservation after resume from snapshot ([#9527](https://github.com/mastra-ai/mastra/pull/9527))
10
+
11
+ Ensure that when resuming a workflow from a snapshot, the input property is correctly set from the snapshot's context input rather than from resume data. This prevents the loss of original workflow input data during suspend/resume cycles.
12
+
13
+ - Fix a bug where streaming didn't output the final chunk ([#9726](https://github.com/mastra-ai/mastra/pull/9726))
14
+
15
+ - Fixes issue where clicking the reset button in the model picker would fail to restore the original LanguageModelV2 (or any other types) object that was passed during agent construction. ([#9487](https://github.com/mastra-ai/mastra/pull/9487))
16
+
17
+ - Fix network routing agent smoothstreaming ([#9727](https://github.com/mastra-ai/mastra/pull/9727))
18
+
19
+ - Updated dependencies [[`5ca1cca`](https://github.com/mastra-ai/mastra/commit/5ca1ccac61ffa7141e6d9fa8f22d3ad4d03bf5dc)]:
20
+ - @mastra/schema-compat@0.11.7
21
+
3
22
  ## 0.24.0-alpha.0
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/core",
3
- "version": "0.24.0-alpha.0",
3
+ "version": "0.24.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -219,7 +219,7 @@
219
219
  "sift": "^17.1.3",
220
220
  "xstate": "^5.20.1",
221
221
  "zod-to-json-schema": "^3.24.6",
222
- "@mastra/schema-compat": "0.11.7-alpha.0"
222
+ "@mastra/schema-compat": "0.11.7"
223
223
  },
224
224
  "peerDependencies": {
225
225
  "zod": "^3.25.0 || ^4.0.0"
@@ -246,9 +246,9 @@
246
246
  "vitest": "^3.2.4",
247
247
  "zod": "^3.25.76",
248
248
  "zod-v4": "npm:zod@4.1.12",
249
- "@internal/lint": "0.0.57",
250
- "@internal/external-types": "0.0.7",
251
- "@internal/types-builder": "0.0.32"
249
+ "@internal/external-types": "0.0.8",
250
+ "@internal/types-builder": "0.0.33",
251
+ "@internal/lint": "0.0.58"
252
252
  },
253
253
  "engines": {
254
254
  "node": ">=20"