@mastra/core 0.24.2-alpha.0 → 0.24.2

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 +15 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.24.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Only handle download image asset transformation if needed ([#10245](https://github.com/mastra-ai/mastra/pull/10245))
8
+
9
+ - Fix tool outputSchema validation to allow unsupported Zod types like ZodTuple. The outputSchema is only used for internal validation and never sent to the LLM, so model compatibility checks are not needed. ([#10123](https://github.com/mastra-ai/mastra/pull/10123))
10
+
11
+ - Fix vector definition to fix pinecone ([#10179](https://github.com/mastra-ai/mastra/pull/10179))
12
+
13
+ - Add type bailed to workflowRunStatus ([#10103](https://github.com/mastra-ai/mastra/pull/10103))
14
+
15
+ - Add support for doGenerate in LanguageModelV2. This change fixes issues with OpenAI stream permissions. ([#10268](https://github.com/mastra-ai/mastra/pull/10268))
16
+ - Added new abstraction over LanguageModelV2
17
+
3
18
  ## 0.24.2-alpha.0
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/core",
3
- "version": "0.24.2-alpha.0",
3
+ "version": "0.24.2",
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/external-types": "0.0.9",
251
- "@internal/lint": "0.0.59",
252
- "@internal/types-builder": "0.0.34"
250
+ "@internal/external-types": "0.0.10",
251
+ "@internal/lint": "0.0.60",
252
+ "@internal/types-builder": "0.0.35"
253
253
  },
254
254
  "engines": {
255
255
  "node": ">=20"