Skip to content

Commit 4837644

Browse files
chore: version packages (beta) (#11453)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or [setup this action to publish automatically](https://github.com/changesets/action#with-publishing). If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. ⚠️⚠️⚠️⚠️⚠️⚠️ `main` is currently in **pre mode** so this branch has prereleases rather than normal releases. If you want to exit prereleases, run `changeset pre exit` on `main`. ⚠️⚠️⚠️⚠️⚠️⚠️ # Releases ## @mastra/core@1.0.0-beta.19 ### Minor Changes - Add embedderOptions support to Memory for AI SDK 5+ provider-specific embedding options ([#11462](#11462)) With AI SDK 5+, embedding models no longer accept options in their constructor. Options like `outputDimensionality` for Google embedding models must now be passed when calling `embed()` or `embedMany()`. This change adds `embedderOptions` to Memory configuration to enable passing these provider-specific options. You can now configure embedder options when creating Memory: ```typescript import { Memory } from '@mastra/core'; import { google } from '@ai-sdk/google'; // Before: No way to specify providerOptions const memory = new Memory({ embedder: google.textEmbeddingModel('text-embedding-004'), }); // After: Pass embedderOptions with providerOptions const memory = new Memory({ embedder: google.textEmbeddingModel('text-embedding-004'), embedderOptions: { providerOptions: { google: { outputDimensionality: 768, taskType: 'RETRIEVAL_DOCUMENT', }, }, }, }); ``` This is especially important for: - Google `text-embedding-004`: Control output dimensions (default 768) - Google `gemini-embedding-001`: Reduce from default 3072 dimensions to avoid pgvector's 2000 dimension limit for HNSW indexes Fixes #8248 ### Patch Changes - Fix Anthropic API error when tool calls have empty input objects ([#11474](#11474)) Fixes issue #11376 where Anthropic models would fail with error "messages.17.content.2.tool_use.input: Field required" when a tool call in a previous step had an empty object `{}` as input. The fix adds proper reconstruction of tool call arguments when converting messages to AIV5 model format. Tool-result parts now correctly include the `input` field from the matching tool call, which is required by Anthropic's API validation. Changes: - Added `findToolCallArgs()` helper method to search through messages and retrieve original tool call arguments - Enhanced `aiV5UIMessagesToAIV5ModelMessages()` to populate the `input` field on tool-result parts - Added comprehensive test coverage for empty object inputs, parameterized inputs, and multi-turn conversations - Fixed an issue where deprecated Groq models were shown during template creation. The model selection now filters out models marked as deprecated, displaying only active and supported models. ([#11445](#11445)) - Fix AI SDK v6 (specificationVersion: "v3") model support in sub-agent calls. Previously, when a parent agent invoked a sub-agent with a v3 model through the `agents` property, the version check only matched "v2", causing v3 models to incorrectly fall back to legacy streaming methods and throw "V2 models are not supported for streamLegacy" error. ([#11452](#11452)) The fix updates version checks in `listAgentTools` and `llm-mapping-step.ts` to use the centralized `supportedLanguageModelSpecifications` array which includes both v2 and v3. Also adds missing v3 test coverage to tool-handling.test.ts to prevent regression. - Fixed "Transforms cannot be represented in JSON Schema" error when using Zod v4 with structuredOutput ([#11466](#11466)) When using schemas with `.optional()`, `.nullable()`, `.default()`, or `.nullish().default("")` patterns with `structuredOutput` and Zod v4, users would encounter an error because OpenAI schema compatibility layer adds transforms that Zod v4's native `toJSONSchema()` cannot handle. The fix uses Mastra's transform-safe `zodToJsonSchema` function which gracefully handles transforms by using the `unrepresentable: 'any'` option. Also exported `isZodType` utility from `@mastra/schema-compat` and updated it to detect both Zod v3 (`_def`) and Zod v4 (`_zod`) schemas. - Improved test description in ModelsDevGateway to clearly reflect the behavior being tested ([#11460](#11460)) - Updated dependencies \[[`d07b568`](d07b568), [`70b300e`](70b300e)]: - @mastra/schema-compat@1.0.0-beta.5 ## @mastra/pg@1.0.0-beta.11 ### Minor Changes - Remove pg-promise dependency and use pg.Pool directly ([#11450](#11450)) **BREAKING CHANGE**: This release replaces pg-promise with vanilla node-postgres (`pg`). ### Breaking Changes - **Removed `store.pgp`**: The pg-promise library instance is no longer exposed - **Config change**: `{ client: pgPromiseDb }` is no longer supported. Use `{ pool: pgPool }` instead - **Cloud SQL config**: `max` and `idleTimeoutMillis` must now be passed via `pgPoolOptions` ### New Features - **`store.pool`**: Exposes the underlying `pg.Pool` for direct database access or ORM integration (e.g., Drizzle) - **`store.db`**: Provides a `DbClient` interface with methods like `one()`, `any()`, `tx()`, etc. - **`store.db.connect()`**: Acquire a client for session-level operations ### Migration ```typescript // Before (pg-promise) import pgPromise from 'pg-promise'; const pgp = pgPromise(); const client = pgp(connectionString); const store = new PostgresStore({ id: 'my-store', client }); // After (pg.Pool) import { Pool } from 'pg'; const pool = new Pool({ connectionString }); const store = new PostgresStore({ id: 'my-store', pool }); // Use store.pool with any library that accepts a pg.Pool ``` ### Patch Changes - Added `exportSchemas()` function to generate Mastra database schema as SQL DDL without a database connection. ([#11448](#11448)) **What's New** You can now export your Mastra database schema as SQL DDL statements without connecting to a database. This is useful for: - Generating migration scripts - Reviewing the schema before deployment - Creating database schemas in environments where the application doesn't have CREATE privileges **Example** ```typescript import { exportSchemas } from '@mastra/pg'; // Export schema for default 'public' schema const ddl = exportSchemas(); console.log(ddl); // Export schema for a custom schema const customDdl = exportSchemas('my_schema'); // Creates: CREATE SCHEMA IF NOT EXISTS "my_schema"; and all tables within it ``` - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 ## @mastra/ai-sdk@1.0.0-beta.12 ### Patch Changes - Fix data chunk property filtering to only include type, data, and id properties ([#11477](#11477)) Previously, when `isDataChunkType` checks were performed, the entire chunk object was returned, potentially letting extra properties like `from`, `runId`, `metadata`, etc go through. This could cause issues with `useChat` and other UI components. Now, all locations that handle `DataChunkType` properly destructure and return only the allowed properties: - `type` (required): The chunk type identifier starting with "data-" - `data` (required): The actual data payload - `id` (optional): An optional identifier for the chunk - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 ## @mastra/client-js@1.0.0-beta.19 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`70b300e`](70b300e), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/schema-compat@1.0.0-beta.5 ## @mastra/react@0.1.0-beta.19 ### Patch Changes - Updated dependencies: - @mastra/client-js@1.0.0-beta.19 ## @mastra/deployer-cloud@1.0.0-beta.19 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`d7b7b76`](d7b7b76), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`7cb14cf`](7cb14cf), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/deployer@1.0.0-beta.19 ## @mastra/dane@1.0.0-beta.19 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/memory@1.0.0-beta.10 ## @mastra/longmemeval@1.0.0-beta.19 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/memory@1.0.0-beta.10 ## @mastra/agent-builder@1.0.0-beta.10 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/memory@1.0.0-beta.10 ## @mastra/deployer@1.0.0-beta.19 ### Patch Changes - Fix npm resolving wrong @mastra/server version ([#11467](#11467)) Changed `@mastra/server` dependency from `workspace:^` to `workspace:*` to prevent npm from resolving to incompatible stable versions (e.g., 1.0.3) instead of the required beta versions. - Remove extra console log statements in node-modules-extension-resolver ([#11470](#11470)) - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/server@1.0.0-beta.19 ## @mastra/mcp-docs-server@1.0.0-beta.19 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 ## @mastra/memory@1.0.0-beta.10 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`70b300e`](70b300e), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/schema-compat@1.0.0-beta.5 ## @mastra/playground-ui@7.0.0-beta.19 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`bd18eb0`](bd18eb0), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`70b300e`](70b300e), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/ai-sdk@1.0.0-beta.12 - @mastra/schema-compat@1.0.0-beta.5 - @mastra/client-js@1.0.0-beta.19 - @mastra/react@0.1.0-beta.19 ## @mastra/schema-compat@1.0.0-beta.5 ### Patch Changes - Fixed "Transforms cannot be represented in JSON Schema" error when using Zod v4 with structuredOutput ([#11466](#11466)) When using schemas with `.optional()`, `.nullable()`, `.default()`, or `.nullish().default("")` patterns with `structuredOutput` and Zod v4, users would encounter an error because OpenAI schema compatibility layer adds transforms that Zod v4's native `toJSONSchema()` cannot handle. The fix uses Mastra's transform-safe `zodToJsonSchema` function which gracefully handles transforms by using the `unrepresentable: 'any'` option. Also exported `isZodType` utility from `@mastra/schema-compat` and updated it to detect both Zod v3 (`_def`) and Zod v4 (`_zod`) schemas. - fix(schema-compat): handle undefined values in optional fields for OpenAI compat layers ([#11469](#11469)) When a Zod schema has nested objects with `.partial()`, the optional fields would fail validation with "expected string, received undefined" errors. This occurred because the OpenAI schema compat layer converted `.optional()` to `.nullable()`, which only accepts `null` values, not `undefined`. Changed `.nullable()` to `.nullish()` so that optional fields now accept both `null` (when explicitly provided by the LLM) and `undefined` (when fields are omitted entirely). Fixes #11457 ## @mastra/server@1.0.0-beta.19 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 ## @mastra/express@0.1.0-beta.14 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/server@1.0.0-beta.19 ## @mastra/hono@0.1.0-beta.14 ### Patch Changes - Updated dependencies \[[`e54953e`](e54953e), [`7d56d92`](7d56d92), [`fdac646`](fdac646), [`d07b568`](d07b568), [`68ec97d`](68ec97d), [`4aa55b3`](4aa55b3)]: - @mastra/core@1.0.0-beta.19 - @mastra/server@1.0.0-beta.19 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent fd94418 commit 4837644

File tree

35 files changed

+311
-17
lines changed

35 files changed

+311
-17
lines changed

.changeset/pre.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
"add-langfuse-ttft-support",
138138
"add-markdown-table-support",
139139
"add-mcp-docs-server-log-level",
140+
"add-pg-export-schemas",
140141
"add-pino-logger-redact-option",
141142
"add-posthog-exporter",
142143
"add-posthog-tags-support",
@@ -147,6 +148,7 @@
147148
"all-pugs-carry",
148149
"automated-provider-registry-20251022-181340",
149150
"azure-gateway-deployment-discovery",
151+
"beige-coats-do",
150152
"beige-otters-cheer",
151153
"beige-papayas-divide",
152154
"better-mice-dress",
@@ -176,6 +178,7 @@
176178
"bright-taxis-raise",
177179
"brown-clubs-lick",
178180
"brown-frogs-hope",
181+
"brown-rules-rush",
179182
"bumpy-laws-reply",
180183
"bumpy-owls-occur",
181184
"busy-baths-buy",
@@ -291,6 +294,8 @@
291294
"fix-convex-schema-exports",
292295
"fix-convex-threads-table-missing-title",
293296
"fix-create-runtime-detection",
297+
"fix-deployer-server-version-resolution",
298+
"fix-deprecated-groq-models",
294299
"fix-duplicate-text-ids",
295300
"fix-embedding-model-v3-support",
296301
"fix-empty-override-scorers",
@@ -320,16 +325,19 @@
320325
"fix-toolcallid-propagation",
321326
"fix-toolstream-pipeto-types",
322327
"fix-tsconfig-jsonc-comments",
328+
"fix-v3-model-subagent-routing",
323329
"fix-workflow-input-property",
324330
"fix-workflow-run-status-from-storage",
325331
"fix-working-memory-content-guard",
332+
"fix-zod-v4-transform-json-schema",
326333
"flat-sites-shine",
327334
"flat-walls-cross",
328335
"floppy-boxes-march",
329336
"floppy-ghosts-shine",
330337
"floppy-mammals-sneeze",
331338
"fluffy-coins-design",
332339
"fluffy-deer-tease",
340+
"fluffy-keys-clean",
333341
"fluffy-moles-say",
334342
"fluffy-plums-drive",
335343
"forty-dodos-tan",
@@ -451,6 +459,7 @@
451459
"mighty-numbers-sort",
452460
"modern-cats-grow",
453461
"modern-mails-tan",
462+
"modern-turkeys-itch",
454463
"moody-clubs-pick",
455464
"moody-donkeys-argue",
456465
"moody-lies-lose",
@@ -468,6 +477,7 @@
468477
"nine-pans-guess",
469478
"nine-tables-smoke",
470479
"ninety-rice-share",
480+
"odd-files-divide",
471481
"odd-kids-peel",
472482
"old-beds-roll",
473483
"old-brooms-jump",
@@ -524,6 +534,7 @@
524534
"red-icons-sell",
525535
"red-tables-cheat",
526536
"red-years-wait",
537+
"refactor-pg-remove-pg-promise",
527538
"remembered-messages-output-processor",
528539
"rich-grapes-search",
529540
"rich-taxis-jump",
@@ -629,6 +640,7 @@
629640
"tasty-comics-call",
630641
"tasty-kids-happen",
631642
"ten-rivers-think",
643+
"test-models-dev-description-fix",
632644
"thick-singers-kick",
633645
"thick-stars-win",
634646
"thick-times-carry",

client-sdks/ai-sdk/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @mastra/ai-sdk
22

3+
## 1.0.0-beta.12
4+
5+
### Patch Changes
6+
7+
- Fix data chunk property filtering to only include type, data, and id properties ([#11477](https://github.com/mastra-ai/mastra/pull/11477))
8+
9+
Previously, when `isDataChunkType` checks were performed, the entire chunk object was returned, potentially letting extra properties like `from`, `runId`, `metadata`, etc go through. This could cause issues with `useChat` and other UI components.
10+
11+
Now, all locations that handle `DataChunkType` properly destructure and return only the allowed properties:
12+
- `type` (required): The chunk type identifier starting with "data-"
13+
- `data` (required): The actual data payload
14+
- `id` (optional): An optional identifier for the chunk
15+
16+
- Updated dependencies [[`e54953e`](https://github.com/mastra-ai/mastra/commit/e54953ed8ce1b28c0d62a19950163039af7834b4), [`7d56d92`](https://github.com/mastra-ai/mastra/commit/7d56d9213886e8353956d7d40df10045fd12b299), [`fdac646`](https://github.com/mastra-ai/mastra/commit/fdac646033a0930a1a4e00d13aa64c40bb7f1e02), [`d07b568`](https://github.com/mastra-ai/mastra/commit/d07b5687819ea8cb1dffa776d0c1765faf4aa1ae), [`68ec97d`](https://github.com/mastra-ai/mastra/commit/68ec97d4c07c6393fcf95c2481fc5d73da99f8c8), [`4aa55b3`](https://github.com/mastra-ai/mastra/commit/4aa55b383cf06043943359ea316572fd969861a7)]:
17+
- @mastra/core@1.0.0-beta.19
18+
319
## 1.0.0-beta.11
420

521
### Patch Changes

client-sdks/ai-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mastra/ai-sdk",
3-
"version": "1.0.0-beta.11",
3+
"version": "1.0.0-beta.12",
44
"description": "Adds custom API routes to be compatible with the AI SDK UI parts",
55
"type": "module",
66
"main": "dist/index.js",

client-sdks/client-js/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @mastra/client-js
22

3+
## 1.0.0-beta.19
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e54953e`](https://github.com/mastra-ai/mastra/commit/e54953ed8ce1b28c0d62a19950163039af7834b4), [`7d56d92`](https://github.com/mastra-ai/mastra/commit/7d56d9213886e8353956d7d40df10045fd12b299), [`fdac646`](https://github.com/mastra-ai/mastra/commit/fdac646033a0930a1a4e00d13aa64c40bb7f1e02), [`d07b568`](https://github.com/mastra-ai/mastra/commit/d07b5687819ea8cb1dffa776d0c1765faf4aa1ae), [`70b300e`](https://github.com/mastra-ai/mastra/commit/70b300ebc631dfc0aa14e61547fef7994adb4ea6), [`68ec97d`](https://github.com/mastra-ai/mastra/commit/68ec97d4c07c6393fcf95c2481fc5d73da99f8c8), [`4aa55b3`](https://github.com/mastra-ai/mastra/commit/4aa55b383cf06043943359ea316572fd969861a7)]:
8+
- @mastra/core@1.0.0-beta.19
9+
- @mastra/schema-compat@1.0.0-beta.5
10+
311
## 1.0.0-beta.18
412

513
### Patch Changes

client-sdks/client-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mastra/client-js",
3-
"version": "1.0.0-beta.18",
3+
"version": "1.0.0-beta.19",
44
"description": "The official TypeScript library for the Mastra Client API",
55
"author": "",
66
"type": "module",

client-sdks/react/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @mastra/react-hooks
22

3+
## 0.1.0-beta.19
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- @mastra/client-js@1.0.0-beta.19
9+
310
## 0.1.0-beta.18
411

512
### Patch Changes

client-sdks/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mastra/react",
3-
"version": "0.1.0-beta.18",
3+
"version": "0.1.0-beta.19",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/mastra-ai/mastra.git",

deployers/cloud/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @mastra/deployer-cloud
22

3+
## 1.0.0-beta.19
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e54953e`](https://github.com/mastra-ai/mastra/commit/e54953ed8ce1b28c0d62a19950163039af7834b4), [`d7b7b76`](https://github.com/mastra-ai/mastra/commit/d7b7b769c1a63b7a750bb0bf6fa1ebb6680eff15), [`7d56d92`](https://github.com/mastra-ai/mastra/commit/7d56d9213886e8353956d7d40df10045fd12b299), [`fdac646`](https://github.com/mastra-ai/mastra/commit/fdac646033a0930a1a4e00d13aa64c40bb7f1e02), [`d07b568`](https://github.com/mastra-ai/mastra/commit/d07b5687819ea8cb1dffa776d0c1765faf4aa1ae), [`7cb14cf`](https://github.com/mastra-ai/mastra/commit/7cb14cfe0bc52095ed7f1b447996ba8c5d002e0d), [`68ec97d`](https://github.com/mastra-ai/mastra/commit/68ec97d4c07c6393fcf95c2481fc5d73da99f8c8), [`4aa55b3`](https://github.com/mastra-ai/mastra/commit/4aa55b383cf06043943359ea316572fd969861a7)]:
8+
- @mastra/core@1.0.0-beta.19
9+
- @mastra/deployer@1.0.0-beta.19
10+
311
## 1.0.0-beta.18
412

513
### Patch Changes

deployers/cloud/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mastra/deployer-cloud",
3-
"version": "1.0.0-beta.18",
3+
"version": "1.0.0-beta.19",
44
"description": "",
55
"type": "module",
66
"files": [

examples/dane/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @mastra/dane
22

3+
## 1.0.0-beta.19
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e54953e`](https://github.com/mastra-ai/mastra/commit/e54953ed8ce1b28c0d62a19950163039af7834b4), [`7d56d92`](https://github.com/mastra-ai/mastra/commit/7d56d9213886e8353956d7d40df10045fd12b299), [`fdac646`](https://github.com/mastra-ai/mastra/commit/fdac646033a0930a1a4e00d13aa64c40bb7f1e02), [`d07b568`](https://github.com/mastra-ai/mastra/commit/d07b5687819ea8cb1dffa776d0c1765faf4aa1ae), [`68ec97d`](https://github.com/mastra-ai/mastra/commit/68ec97d4c07c6393fcf95c2481fc5d73da99f8c8), [`4aa55b3`](https://github.com/mastra-ai/mastra/commit/4aa55b383cf06043943359ea316572fd969861a7)]:
8+
- @mastra/core@1.0.0-beta.19
9+
- @mastra/memory@1.0.0-beta.10
10+
311
## 1.0.0-beta.18
412

513
### Patch Changes

0 commit comments

Comments
 (0)