@mastra/inngest 1.0.0-beta.1 → 1.0.0-beta.11

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 CHANGED
@@ -1,5 +1,558 @@
1
1
  # @mastra/inngest
2
2
 
3
+ ## 1.0.0-beta.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Add support for `retries` and `scorers` parameters across all `createStep` overloads.
8
+ ([#11495](https://github.com/mastra-ai/mastra/pull/11495))
9
+
10
+ The `createStep` function now includes support for the `retries` and `scorers` fields across all step creation patterns, enabling step-level retry configuration and AI evaluation support for regular steps, agent-based steps, and tool-based steps.
11
+
12
+ ```typescript
13
+ import { init } from '@mastra/inngest';
14
+ import { z } from 'zod';
15
+
16
+ const { createStep } = init(inngest);
17
+
18
+ // 1. Regular step with retries
19
+ const regularStep = createStep({
20
+ id: 'api-call',
21
+ inputSchema: z.object({ url: z.string() }),
22
+ outputSchema: z.object({ data: z.any() }),
23
+ retries: 3, // ← Will retry up to 3 times on failure
24
+ execute: async ({ inputData }) => {
25
+ const response = await fetch(inputData.url);
26
+ return { data: await response.json() };
27
+ },
28
+ });
29
+
30
+ // 2. Agent step with retries and scorers
31
+ const agentStep = createStep(myAgent, {
32
+ retries: 3,
33
+ scorers: [{ id: 'accuracy-scorer', scorer: myAccuracyScorer }],
34
+ });
35
+
36
+ // 3. Tool step with retries and scorers
37
+ const toolStep = createStep(myTool, {
38
+ retries: 2,
39
+ scorers: [{ id: 'quality-scorer', scorer: myQualityScorer }],
40
+ });
41
+ ```
42
+
43
+ This change ensures API consistency across all `createStep` overloads. All step types now support retry and evaluation configurations.
44
+
45
+ This is a non-breaking change - steps without these parameters continue to work exactly as before.
46
+
47
+ Fixes #9351
48
+
49
+ - Remove `streamVNext`, `resumeStreamVNext`, and `observeStreamVNext` methods, call `stream`, `resumeStream` and `observeStream` directly ([#11499](https://github.com/mastra-ai/mastra/pull/11499))
50
+
51
+ ```diff
52
+ + const run = await workflow.createRun({ runId: '123' });
53
+ - const stream = await run.streamVNext({ inputData: { ... } });
54
+ + const stream = await run.stream({ inputData: { ... } });
55
+ ```
56
+
57
+ - Unified `getWorkflowRunById` and `getWorkflowRunExecutionResult` into a single API that returns `WorkflowState` with both metadata and execution state. ([#11429](https://github.com/mastra-ai/mastra/pull/11429))
58
+
59
+ **What changed:**
60
+ - `getWorkflowRunById` now returns a unified `WorkflowState` object containing metadata (runId, workflowName, resourceId, createdAt, updatedAt) along with processed execution state (status, result, error, payload, steps)
61
+ - Added optional `fields` parameter to request only specific fields for better performance
62
+ - Added optional `withNestedWorkflows` parameter to control nested workflow step inclusion
63
+ - Removed `getWorkflowRunExecutionResult` - use `getWorkflowRunById` instead (breaking change)
64
+ - Removed `/execution-result` API endpoints from server (breaking change)
65
+ - Removed `runExecutionResult()` method from client SDK (breaking change)
66
+ - Removed `GetWorkflowRunExecutionResultResponse` type from client SDK (breaking change)
67
+
68
+ **Before:**
69
+
70
+ ```typescript
71
+ // Had to call two different methods for different data
72
+ const run = await workflow.getWorkflowRunById(runId); // Returns raw WorkflowRun with snapshot
73
+ const result = await workflow.getWorkflowRunExecutionResult(runId); // Returns processed execution state
74
+ ```
75
+
76
+ **After:**
77
+
78
+ ```typescript
79
+ // Single method returns everything
80
+ const run = await workflow.getWorkflowRunById(runId);
81
+ // Returns: { runId, workflowName, resourceId, createdAt, updatedAt, status, result, error, payload, steps }
82
+
83
+ // Request only specific fields for better performance (avoids expensive step fetching)
84
+ const status = await workflow.getWorkflowRunById(runId, { fields: ['status'] });
85
+
86
+ // Skip nested workflow steps for faster response
87
+ const run = await workflow.getWorkflowRunById(runId, { withNestedWorkflows: false });
88
+ ```
89
+
90
+ **Why:** The previous API required calling two separate methods to get complete workflow run information. This unification simplifies the API surface and gives users control over performance - fetching all steps (especially nested workflows) can be expensive, so the `fields` and `withNestedWorkflows` options let users request only what they need.
91
+
92
+ - Add cron scheduling support to Inngest workflows. Workflows can now be automatically triggered on a schedule by adding a `cron` property along with optional `inputData` and `initialState`: ([#11518](https://github.com/mastra-ai/mastra/pull/11518))
93
+
94
+ ```typescript
95
+ const workflow = createWorkflow({
96
+ id: 'scheduled-workflow',
97
+ inputSchema: z.object({ value: z.string() }),
98
+ outputSchema: z.object({ result: z.string() }),
99
+ steps: [step1],
100
+ cron: '0 0 * * *', // Run daily at midnight
101
+ inputData: { value: 'scheduled-run' }, // Optional inputData for the scheduled workflow run
102
+ initialState: { count: 0 }, // Optional initialState for the scheduled workflow run
103
+ });
104
+ ```
105
+
106
+ - Updated dependencies [[`d2d3e22`](https://github.com/mastra-ai/mastra/commit/d2d3e22a419ee243f8812a84e3453dd44365ecb0), [`bc72b52`](https://github.com/mastra-ai/mastra/commit/bc72b529ee4478fe89ecd85a8be47ce0127b82a0), [`05b8bee`](https://github.com/mastra-ai/mastra/commit/05b8bee9e50e6c2a4a2bf210eca25ee212ca24fa), [`c042bd0`](https://github.com/mastra-ai/mastra/commit/c042bd0b743e0e86199d0cb83344ca7690e34a9c), [`940a2b2`](https://github.com/mastra-ai/mastra/commit/940a2b27480626ed7e74f55806dcd2181c1dd0c2), [`e0941c3`](https://github.com/mastra-ai/mastra/commit/e0941c3d7fc75695d5d258e7008fd5d6e650800c), [`0c0580a`](https://github.com/mastra-ai/mastra/commit/0c0580a42f697cd2a7d5973f25bfe7da9055038a), [`28f5f89`](https://github.com/mastra-ai/mastra/commit/28f5f89705f2409921e3c45178796c0e0d0bbb64), [`e601b27`](https://github.com/mastra-ai/mastra/commit/e601b272c70f3a5ecca610373aa6223012704892), [`3d3366f`](https://github.com/mastra-ai/mastra/commit/3d3366f31683e7137d126a3a57174a222c5801fb), [`5a4953f`](https://github.com/mastra-ai/mastra/commit/5a4953f7d25bb15ca31ed16038092a39cb3f98b3), [`eb9e522`](https://github.com/mastra-ai/mastra/commit/eb9e522ce3070a405e5b949b7bf5609ca51d7fe2), [`20e6f19`](https://github.com/mastra-ai/mastra/commit/20e6f1971d51d3ff6dd7accad8aaaae826d540ed), [`4f0b3c6`](https://github.com/mastra-ai/mastra/commit/4f0b3c66f196c06448487f680ccbb614d281e2f7), [`74c4f22`](https://github.com/mastra-ai/mastra/commit/74c4f22ed4c71e72598eacc346ba95cdbc00294f), [`81b6a8f`](https://github.com/mastra-ai/mastra/commit/81b6a8ff79f49a7549d15d66624ac1a0b8f5f971), [`e4d366a`](https://github.com/mastra-ai/mastra/commit/e4d366aeb500371dd4210d6aa8361a4c21d87034), [`a4f010b`](https://github.com/mastra-ai/mastra/commit/a4f010b22e4355a5fdee70a1fe0f6e4a692cc29e), [`73b0bb3`](https://github.com/mastra-ai/mastra/commit/73b0bb394dba7c9482eb467a97ab283dbc0ef4db), [`5627a8c`](https://github.com/mastra-ai/mastra/commit/5627a8c6dc11fe3711b3fa7a6ffd6eb34100a306), [`3ff45d1`](https://github.com/mastra-ai/mastra/commit/3ff45d10e0c80c5335a957ab563da72feb623520), [`251df45`](https://github.com/mastra-ai/mastra/commit/251df4531407dfa46d805feb40ff3fb49769f455), [`f894d14`](https://github.com/mastra-ai/mastra/commit/f894d148946629af7b1f452d65a9cf864cec3765), [`c2b9547`](https://github.com/mastra-ai/mastra/commit/c2b9547bf435f56339f23625a743b2147ab1c7a6), [`580b592`](https://github.com/mastra-ai/mastra/commit/580b5927afc82fe460dfdf9a38a902511b6b7e7f), [`58e3931`](https://github.com/mastra-ai/mastra/commit/58e3931af9baa5921688566210f00fb0c10479fa), [`08bb631`](https://github.com/mastra-ai/mastra/commit/08bb631ae2b14684b2678e3549d0b399a6f0561e), [`4fba91b`](https://github.com/mastra-ai/mastra/commit/4fba91bec7c95911dc28e369437596b152b04cd0), [`12b0cc4`](https://github.com/mastra-ai/mastra/commit/12b0cc4077d886b1a552637dedb70a7ade93528c)]:
107
+ - @mastra/core@1.0.0-beta.20
108
+
109
+ ## 1.0.0-beta.10
110
+
111
+ ### Minor Changes
112
+
113
+ - Unified observability schema with entity-based span identification ([#11132](https://github.com/mastra-ai/mastra/pull/11132))
114
+
115
+ ## What changed
116
+
117
+ Spans now use a unified identification model with `entityId`, `entityType`, and `entityName` instead of separate `agentId`, `toolId`, `workflowId` fields.
118
+
119
+ **Before:**
120
+
121
+ ```typescript
122
+ // Old span structure
123
+ span.agentId; // 'my-agent'
124
+ span.toolId; // undefined
125
+ span.workflowId; // undefined
126
+ ```
127
+
128
+ **After:**
129
+
130
+ ```typescript
131
+ // New span structure
132
+ span.entityType; // EntityType.AGENT
133
+ span.entityId; // 'my-agent'
134
+ span.entityName; // 'My Agent'
135
+ ```
136
+
137
+ ## New `listTraces()` API
138
+
139
+ Query traces with filtering, pagination, and sorting:
140
+
141
+ ```typescript
142
+ const { spans, pagination } = await storage.listTraces({
143
+ filters: {
144
+ entityType: EntityType.AGENT,
145
+ entityId: 'my-agent',
146
+ userId: 'user-123',
147
+ environment: 'production',
148
+ status: TraceStatus.SUCCESS,
149
+ startedAt: { start: new Date('2024-01-01'), end: new Date('2024-01-31') },
150
+ },
151
+ pagination: { page: 0, perPage: 50 },
152
+ orderBy: { field: 'startedAt', direction: 'DESC' },
153
+ });
154
+ ```
155
+
156
+ **Available filters:** date ranges (`startedAt`, `endedAt`), entity (`entityType`, `entityId`, `entityName`), identity (`userId`, `organizationId`), correlation IDs (`runId`, `sessionId`, `threadId`), deployment (`environment`, `source`, `serviceName`), `tags`, `metadata`, and `status`.
157
+
158
+ ## New retrieval methods
159
+ - `getSpan({ traceId, spanId })` - Get a single span
160
+ - `getRootSpan({ traceId })` - Get the root span of a trace
161
+ - `getTrace({ traceId })` - Get all spans for a trace
162
+
163
+ ## Backward compatibility
164
+
165
+ The legacy `getTraces()` method continues to work. When you pass `name: "agent run: my-agent"`, it automatically transforms to `entityId: "my-agent", entityType: AGENT`.
166
+
167
+ ## Migration
168
+
169
+ **Automatic:** SQL-based stores (PostgreSQL, LibSQL, MSSQL) automatically add new columns to existing `spans` tables on initialization. Existing data is preserved with new columns set to `NULL`.
170
+
171
+ **No action required:** Your existing code continues to work. Adopt the new fields and `listTraces()` API at your convenience.
172
+
173
+ ### Patch Changes
174
+
175
+ - Refactor storage architecture to use domain-specific stores via `getStore()` pattern ([#11361](https://github.com/mastra-ai/mastra/pull/11361))
176
+
177
+ ### Summary
178
+
179
+ This release introduces a new storage architecture that replaces passthrough methods on `MastraStorage` with domain-specific storage interfaces accessed via `getStore()`. This change reduces code duplication across storage adapters and provides a cleaner, more modular API.
180
+
181
+ ### Migration Guide
182
+
183
+ All direct method calls on storage instances should be updated to use `getStore()`:
184
+
185
+ ```typescript
186
+ // Before
187
+ const thread = await storage.getThreadById({ threadId });
188
+ await storage.persistWorkflowSnapshot({ workflowName, runId, snapshot });
189
+ await storage.createSpan(span);
190
+
191
+ // After
192
+ const memory = await storage.getStore('memory');
193
+ const thread = await memory?.getThreadById({ threadId });
194
+
195
+ const workflows = await storage.getStore('workflows');
196
+ await workflows?.persistWorkflowSnapshot({ workflowName, runId, snapshot });
197
+
198
+ const observability = await storage.getStore('observability');
199
+ await observability?.createSpan(span);
200
+ ```
201
+
202
+ ### Available Domains
203
+ - **`memory`**: Thread and message operations (`getThreadById`, `saveThread`, `saveMessages`, etc.)
204
+ - **`workflows`**: Workflow state persistence (`persistWorkflowSnapshot`, `loadWorkflowSnapshot`, `getWorkflowRunById`, etc.)
205
+ - **`scores`**: Evaluation scores (`saveScore`, `listScoresByScorerId`, etc.)
206
+ - **`observability`**: Tracing and spans (`createSpan`, `updateSpan`, `getTrace`, etc.)
207
+ - **`agents`**: Stored agent configurations (`createAgent`, `getAgentById`, `listAgents`, etc.)
208
+
209
+ ### Breaking Changes
210
+ - Passthrough methods have been removed from `MastraStorage` base class
211
+ - All storage adapters now require accessing domains via `getStore()`
212
+ - The `stores` property on storage instances is now the canonical way to access domain storage
213
+
214
+ ### Internal Changes
215
+ - Each storage adapter now initializes domain-specific stores in its constructor
216
+ - Domain stores share database connections and handle their own table initialization
217
+
218
+ - Add debugger-like click-through UI to workflow graph ([#11350](https://github.com/mastra-ai/mastra/pull/11350))
219
+
220
+ - Add `perStep` option to workflow run methods, allowing a workflow to run just a step instead of all the workflow steps ([#11276](https://github.com/mastra-ai/mastra/pull/11276))
221
+
222
+ - Updated dependencies [[`33a4d2e`](https://github.com/mastra-ai/mastra/commit/33a4d2e4ed8af51f69256232f00c34d6b6b51d48), [`4aaa844`](https://github.com/mastra-ai/mastra/commit/4aaa844a4f19d054490f43638a990cc57bda8d2f), [`4a1a6cb`](https://github.com/mastra-ai/mastra/commit/4a1a6cb3facad54b2bb6780b00ce91d6de1edc08), [`31d13d5`](https://github.com/mastra-ai/mastra/commit/31d13d5fdc2e2380e2e3ee3ec9fb29d2a00f265d), [`4c62166`](https://github.com/mastra-ai/mastra/commit/4c621669f4a29b1f443eca3ba70b814afa286266), [`7bcbf10`](https://github.com/mastra-ai/mastra/commit/7bcbf10133516e03df964b941f9a34e9e4ab4177), [`4353600`](https://github.com/mastra-ai/mastra/commit/43536005a65988a8eede236f69122e7f5a284ba2), [`6986fb0`](https://github.com/mastra-ai/mastra/commit/6986fb064f5db6ecc24aa655e1d26529087b43b3), [`053e979`](https://github.com/mastra-ai/mastra/commit/053e9793b28e970086b0507f7f3b76ea32c1e838), [`e26dc9c`](https://github.com/mastra-ai/mastra/commit/e26dc9c3ccfec54ae3dc3e2b2589f741f9ae60a6), [`55edf73`](https://github.com/mastra-ai/mastra/commit/55edf7302149d6c964fbb7908b43babfc2b52145), [`27c0009`](https://github.com/mastra-ai/mastra/commit/27c0009777a6073d7631b0eb7b481d94e165b5ca), [`dee388d`](https://github.com/mastra-ai/mastra/commit/dee388dde02f2e63c53385ae69252a47ab6825cc), [`3f3fc30`](https://github.com/mastra-ai/mastra/commit/3f3fc3096f24c4a26cffeecfe73085928f72aa63), [`d90ea65`](https://github.com/mastra-ai/mastra/commit/d90ea6536f7aa51c6545a4e9215b55858e98e16d), [`d171e55`](https://github.com/mastra-ai/mastra/commit/d171e559ead9f52ec728d424844c8f7b164c4510), [`10c2735`](https://github.com/mastra-ai/mastra/commit/10c27355edfdad1ee2b826b897df74125eb81fb8), [`1924cf0`](https://github.com/mastra-ai/mastra/commit/1924cf06816e5e4d4d5333065ec0f4bb02a97799), [`b339816`](https://github.com/mastra-ai/mastra/commit/b339816df0984d0243d944ac2655d6ba5f809cde)]:
223
+ - @mastra/core@1.0.0-beta.15
224
+
225
+ ## 1.0.0-beta.9
226
+
227
+ ### Patch Changes
228
+
229
+ - feat: Add field filtering and nested workflow control to workflow execution result endpoint ([#11246](https://github.com/mastra-ai/mastra/pull/11246))
230
+
231
+ Adds two optional query parameters to `/api/workflows/:workflowId/runs/:runId/execution-result` endpoint:
232
+ - `fields`: Request only specific fields (e.g., `status`, `result`, `error`)
233
+ - `withNestedWorkflows`: Control whether to fetch nested workflow data
234
+
235
+ This significantly reduces response payload size and improves response times for large workflows.
236
+
237
+ ## Server Endpoint Usage
238
+
239
+ ```http
240
+ # Get only status (minimal payload - fastest)
241
+ GET /api/workflows/:workflowId/runs/:runId/execution-result?fields=status
242
+
243
+ # Get status and result
244
+ GET /api/workflows/:workflowId/runs/:runId/execution-result?fields=status,result
245
+
246
+ # Get all fields but without nested workflow data (faster)
247
+ GET /api/workflows/:workflowId/runs/:runId/execution-result?withNestedWorkflows=false
248
+
249
+ # Get only specific fields without nested workflow data
250
+ GET /api/workflows/:workflowId/runs/:runId/execution-result?fields=status,steps&withNestedWorkflows=false
251
+
252
+ # Get full data (default behavior)
253
+ GET /api/workflows/:workflowId/runs/:runId/execution-result
254
+ ```
255
+
256
+ ## Client SDK Usage
257
+
258
+ ```typescript
259
+ import { MastraClient } from '@mastra/client-js';
260
+
261
+ const client = new MastraClient({ baseUrl: 'http://localhost:4111' });
262
+ const workflow = client.getWorkflow('myWorkflow');
263
+
264
+ // Get only status (minimal payload - fastest)
265
+ const statusOnly = await workflow.runExecutionResult(runId, {
266
+ fields: ['status'],
267
+ });
268
+ console.log(statusOnly.status); // 'success' | 'failed' | 'running' | etc.
269
+
270
+ // Get status and result
271
+ const statusAndResult = await workflow.runExecutionResult(runId, {
272
+ fields: ['status', 'result'],
273
+ });
274
+
275
+ // Get all fields but without nested workflow data (faster)
276
+ const resultWithoutNested = await workflow.runExecutionResult(runId, {
277
+ withNestedWorkflows: false,
278
+ });
279
+
280
+ // Get specific fields without nested workflow data
281
+ const optimized = await workflow.runExecutionResult(runId, {
282
+ fields: ['status', 'steps'],
283
+ withNestedWorkflows: false,
284
+ });
285
+
286
+ // Get full execution result (default behavior)
287
+ const fullResult = await workflow.runExecutionResult(runId);
288
+ ```
289
+
290
+ ## Core API Changes
291
+
292
+ The `Workflow.getWorkflowRunExecutionResult` method now accepts an options object:
293
+
294
+ ```typescript
295
+ await workflow.getWorkflowRunExecutionResult(runId, {
296
+ withNestedWorkflows: false, // default: true, set to false to skip nested workflow data
297
+ fields: ['status', 'result'], // optional field filtering
298
+ });
299
+ ```
300
+
301
+ ## Inngest Compatibility
302
+
303
+ The `@mastra/inngest` package has been updated to use the new options object API. This is a non-breaking internal change - no action required from inngest workflow users.
304
+
305
+ ## Performance Impact
306
+
307
+ For workflows with large step outputs:
308
+ - Requesting only `status`: ~99% reduction in payload size
309
+ - Requesting `status,result,error`: ~95% reduction in payload size
310
+ - Using `withNestedWorkflows=false`: Avoids expensive nested workflow data fetching
311
+ - Combining both: Maximum performance optimization
312
+
313
+ - Updated dependencies [[`4f94ed8`](https://github.com/mastra-ai/mastra/commit/4f94ed8177abfde3ec536e3574883e075423350c), [`ac3cc23`](https://github.com/mastra-ai/mastra/commit/ac3cc2397d1966bc0fc2736a223abc449d3c7719), [`a86f4df`](https://github.com/mastra-ai/mastra/commit/a86f4df0407311e0d2ea49b9a541f0938810d6a9), [`029540c`](https://github.com/mastra-ai/mastra/commit/029540ca1e582fc2dd8d288ecd4a9b0f31a954ef), [`66741d1`](https://github.com/mastra-ai/mastra/commit/66741d1a99c4f42cf23a16109939e8348ac6852e), [`01b20fe`](https://github.com/mastra-ai/mastra/commit/01b20fefb7c67c2b7d79417598ef4e60256d1225), [`0dbf199`](https://github.com/mastra-ai/mastra/commit/0dbf199110f22192ce5c95b1c8148d4872b4d119), [`a7ce182`](https://github.com/mastra-ai/mastra/commit/a7ce1822a8785ce45d62dd5c911af465e144f7d7)]:
314
+ - @mastra/core@1.0.0-beta.14
315
+
316
+ ## 1.0.0-beta.8
317
+
318
+ ### Patch Changes
319
+
320
+ - Add `onFinish` and `onError` lifecycle callbacks to workflow options ([#11200](https://github.com/mastra-ai/mastra/pull/11200))
321
+
322
+ Workflows now support lifecycle callbacks for server-side handling of workflow completion and errors:
323
+ - `onFinish`: Called when workflow completes with any status (success, failed, suspended, tripwire)
324
+ - `onError`: Called only when workflow fails (failed or tripwire status)
325
+
326
+ ```typescript
327
+ const workflow = createWorkflow({
328
+ id: 'my-workflow',
329
+ inputSchema: z.object({ ... }),
330
+ outputSchema: z.object({ ... }),
331
+ options: {
332
+ onFinish: async (result) => {
333
+ // Handle any workflow completion
334
+ await updateJobStatus(result.status);
335
+ },
336
+ onError: async (errorInfo) => {
337
+ // Handle workflow failures
338
+ await logError(errorInfo.error);
339
+ },
340
+ },
341
+ });
342
+ ```
343
+
344
+ Both callbacks support sync and async functions. Callback errors are caught and logged, not propagated to the workflow result.
345
+
346
+ - Updated dependencies [[`919a22b`](https://github.com/mastra-ai/mastra/commit/919a22b25876f9ed5891efe5facbe682c30ff497)]:
347
+ - @mastra/core@1.0.0-beta.13
348
+
349
+ ## 1.0.0-beta.7
350
+
351
+ ### Patch Changes
352
+
353
+ - Preserve error details when thrown from workflow steps ([#10992](https://github.com/mastra-ai/mastra/pull/10992))
354
+ - Errors thrown in workflow steps now preserve full error details including `cause` chain and custom properties
355
+ - Added `SerializedError` type with proper cause chain support
356
+ - Added `SerializedStepResult` and `SerializedStepFailure` types for handling errors loaded from storage
357
+ - Enhanced `addErrorToJSON` to recursively serialize error cause chains with max depth protection
358
+ - Added `hydrateSerializedStepErrors` to convert serialized errors back to Error instances
359
+ - Fixed Inngest workflow error handling to extract original error from `NonRetriableError.cause`
360
+
361
+ - Refactor internal event system from Emitter to PubSub abstraction for workflow event handling. This change replaces the EventEmitter-based event system with a pluggable PubSub interface, enabling support for distributed workflow execution backends like Inngest. Adds `close()` method to PubSub implementations for proper cleanup. ([#11052](https://github.com/mastra-ai/mastra/pull/11052))
362
+
363
+ - Add `startAsync()` method and fix Inngest duplicate workflow execution bug ([#11093](https://github.com/mastra-ai/mastra/pull/11093))
364
+
365
+ **New Feature: `startAsync()` for fire-and-forget workflow execution**
366
+ - Add `Run.startAsync()` to base workflow class - starts workflow in background and returns `{ runId }` immediately
367
+ - Add `EventedRun.startAsync()` - publishes workflow start event without subscribing for completion
368
+ - Add `InngestRun.startAsync()` - sends Inngest event without polling for result
369
+
370
+ **Bug Fix: Prevent duplicate Inngest workflow executions**
371
+ - Fix `getRuns()` to properly handle rate limits (429), empty responses, and JSON parse errors with retry logic and exponential backoff
372
+ - Fix `getRunOutput()` to throw `NonRetriableError` when polling fails, preventing Inngest from retrying the parent function and re-triggering the workflow
373
+ - Add timeout to `getRunOutput()` polling (default 5 minutes) with `NonRetriableError` on timeout
374
+
375
+ This fixes a production issue where polling failures after successful workflow completion caused Inngest to retry the parent function, which fired a new workflow event and resulted in duplicate executions (e.g., duplicate Slack messages).
376
+
377
+ - Preserve error details when thrown from workflow steps ([#10992](https://github.com/mastra-ai/mastra/pull/10992))
378
+
379
+ Workflow errors now retain custom properties like `statusCode`, `responseHeaders`, and `cause` chains. This enables error-specific recovery logic in your applications.
380
+
381
+ **Before:**
382
+
383
+ ```typescript
384
+ const result = await workflow.execute({ input });
385
+ if (result.status === 'failed') {
386
+ // Custom error properties were lost
387
+ console.log(result.error); // "Step execution failed" (just a string)
388
+ }
389
+ ```
390
+
391
+ **After:**
392
+
393
+ ```typescript
394
+ const result = await workflow.execute({ input });
395
+ if (result.status === 'failed') {
396
+ // Custom properties are preserved
397
+ console.log(result.error.message); // "Step execution failed"
398
+ console.log(result.error.statusCode); // 429
399
+ console.log(result.error.cause?.name); // "RateLimitError"
400
+ }
401
+ ```
402
+
403
+ **Type change:** `WorkflowState.error` and `WorkflowRunState.error` types changed from `string | Error` to `SerializedError`.
404
+
405
+ Other changes:
406
+ - Added `UpdateWorkflowStateOptions` type for workflow state updates
407
+
408
+ - Updated dependencies [[`d5ed981`](https://github.com/mastra-ai/mastra/commit/d5ed981c8701c1b8a27a5f35a9a2f7d9244e695f), [`9650cce`](https://github.com/mastra-ai/mastra/commit/9650cce52a1d917ff9114653398e2a0f5c3ba808), [`932d63d`](https://github.com/mastra-ai/mastra/commit/932d63dd51be9c8bf1e00e3671fe65606c6fb9cd), [`b760b73`](https://github.com/mastra-ai/mastra/commit/b760b731aca7c8a3f041f61d57a7f125ae9cb215), [`695a621`](https://github.com/mastra-ai/mastra/commit/695a621528bdabeb87f83c2277cf2bb084c7f2b4), [`2b459f4`](https://github.com/mastra-ai/mastra/commit/2b459f466fd91688eeb2a44801dc23f7f8a887ab), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`09e4bae`](https://github.com/mastra-ai/mastra/commit/09e4bae18dd5357d2ae078a4a95a2af32168ab08), [`24b76d8`](https://github.com/mastra-ai/mastra/commit/24b76d8e17656269c8ed09a0c038adb9cc2ae95a), [`243a823`](https://github.com/mastra-ai/mastra/commit/243a8239c5906f5c94e4f78b54676793f7510ae3), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`c61fac3`](https://github.com/mastra-ai/mastra/commit/c61fac3add96f0dcce0208c07415279e2537eb62), [`6f14f70`](https://github.com/mastra-ai/mastra/commit/6f14f706ccaaf81b69544b6c1b75ab66a41e5317), [`09e4bae`](https://github.com/mastra-ai/mastra/commit/09e4bae18dd5357d2ae078a4a95a2af32168ab08), [`4524734`](https://github.com/mastra-ai/mastra/commit/45247343e384717a7c8404296275c56201d6470f), [`2a53598`](https://github.com/mastra-ai/mastra/commit/2a53598c6d8cfeb904a7fc74e57e526d751c8fa6), [`c7cd3c7`](https://github.com/mastra-ai/mastra/commit/c7cd3c7a187d7aaf79e2ca139de328bf609a14b4), [`847c212`](https://github.com/mastra-ai/mastra/commit/847c212caba7df0d6f2fc756b494ac3c75c3720d), [`6f941c4`](https://github.com/mastra-ai/mastra/commit/6f941c438ca5f578619788acc7608fc2e23bd176)]:
409
+ - @mastra/core@1.0.0-beta.12
410
+
411
+ ## 1.0.0-beta.6
412
+
413
+ ### Patch Changes
414
+
415
+ - Support new Workflow tripwire run status. Tripwires that are thrown from within a workflow will now bubble up and return a graceful state with information about tripwires. ([#10947](https://github.com/mastra-ai/mastra/pull/10947))
416
+
417
+ When a workflow contains an agent step that triggers a tripwire, the workflow returns with `status: 'tripwire'` and includes tripwire details:
418
+
419
+ ```typescript showLineNumbers copy
420
+ const run = await workflow.createRun();
421
+ const result = await run.start({ inputData: { message: 'Hello' } });
422
+
423
+ if (result.status === 'tripwire') {
424
+ console.log('Workflow terminated by tripwire:', result.tripwire?.reason);
425
+ console.log('Processor ID:', result.tripwire?.processorId);
426
+ console.log('Retry requested:', result.tripwire?.retry);
427
+ }
428
+ ```
429
+
430
+ Adds new UI state for tripwire in agent chat and workflow UI.
431
+
432
+ This is distinct from `status: 'failed'` which indicates an unexpected error. A tripwire status means a processor intentionally stopped execution (e.g., for content moderation).
433
+
434
+ - Updated dependencies [[`38380b6`](https://github.com/mastra-ai/mastra/commit/38380b60fca905824bdf6b43df307a58efb1aa15), [`798d0c7`](https://github.com/mastra-ai/mastra/commit/798d0c740232653b1d754870e6b43a55c364ffe2), [`ffe84d5`](https://github.com/mastra-ai/mastra/commit/ffe84d54f3b0f85167fe977efd027dba027eb998), [`2c212e7`](https://github.com/mastra-ai/mastra/commit/2c212e704c90e2db83d4109e62c03f0f6ebd2667), [`4ca4306`](https://github.com/mastra-ai/mastra/commit/4ca430614daa5fa04730205a302a43bf4accfe9f), [`3bf6c5f`](https://github.com/mastra-ai/mastra/commit/3bf6c5f104c25226cd84e0c77f9dec15f2cac2db)]:
435
+ - @mastra/core@1.0.0-beta.11
436
+
437
+ ## 1.0.0-beta.5
438
+
439
+ ### Patch Changes
440
+
441
+ - Internal code refactoring ([#10830](https://github.com/mastra-ai/mastra/pull/10830))
442
+
443
+ - Add support for typed structured output in agent workflow steps ([#11014](https://github.com/mastra-ai/mastra/pull/11014))
444
+
445
+ When wrapping an agent with `createStep()` and providing a `structuredOutput.schema`, the step's `outputSchema` is now correctly inferred from the provided schema instead of defaulting to `{ text: string }`.
446
+
447
+ This enables type-safe chaining of agent steps with structured output to subsequent steps:
448
+
449
+ ```typescript
450
+ const articleSchema = z.object({
451
+ title: z.string(),
452
+ summary: z.string(),
453
+ tags: z.array(z.string()),
454
+ });
455
+
456
+ // Agent step with structured output - outputSchema is now articleSchema
457
+ const agentStep = createStep(agent, {
458
+ structuredOutput: { schema: articleSchema },
459
+ });
460
+
461
+ // Next step can receive the structured output directly
462
+ const processStep = createStep({
463
+ id: 'process',
464
+ inputSchema: articleSchema, // Matches agent's outputSchema
465
+ outputSchema: z.object({ tagCount: z.number() }),
466
+ execute: async ({ inputData }) => ({
467
+ tagCount: inputData.tags.length, // Fully typed!
468
+ }),
469
+ });
470
+
471
+ workflow.then(agentStep).then(processStep).commit();
472
+ ```
473
+
474
+ When `structuredOutput` is not provided, the agent step continues to use the default `{ text: string }` output schema.
475
+
476
+ - Updated dependencies [[`edb07e4`](https://github.com/mastra-ai/mastra/commit/edb07e49283e0c28bd094a60e03439bf6ecf0221), [`b7e17d3`](https://github.com/mastra-ai/mastra/commit/b7e17d3f5390bb5a71efc112204413656fcdc18d), [`261473a`](https://github.com/mastra-ai/mastra/commit/261473ac637e633064a22076671e2e02b002214d), [`5d7000f`](https://github.com/mastra-ai/mastra/commit/5d7000f757cd65ea9dc5b05e662fd83dfd44e932), [`4f0331a`](https://github.com/mastra-ai/mastra/commit/4f0331a79bf6eb5ee598a5086e55de4b5a0ada03), [`8a000da`](https://github.com/mastra-ai/mastra/commit/8a000da0c09c679a2312f6b3aa05b2ca78ca7393)]:
477
+ - @mastra/core@1.0.0-beta.10
478
+
479
+ ## 1.0.0-beta.4
480
+
481
+ ### Patch Changes
482
+
483
+ - Include `.input` in workflow results for both engines and remove the option to omit them from Inngest workflows. ([#10688](https://github.com/mastra-ai/mastra/pull/10688))
484
+
485
+ - Using `createStep` with a nested Inngest workflow now returns the workflow itself, maintaining the correct `.invoke()` execution flow Inngest workflows need to operate. ([#10689](https://github.com/mastra-ai/mastra/pull/10689))
486
+
487
+ - Refactored default engine to fit durable execution better, and the inngest engine to match. ([#10627](https://github.com/mastra-ai/mastra/pull/10627))
488
+ Also fixes requestContext persistence by relying on inngest step memoization.
489
+
490
+ Unifies some of the stepResults and error formats in both engines.
491
+
492
+ - Miscellanous bug fixes and test fixes: ([#10515](https://github.com/mastra-ai/mastra/pull/10515))
493
+ - cloneWorkflow passing options correctly
494
+ - start event in streamLegacy
495
+ - Many test cases with outdated or incorrect expected values
496
+
497
+ - Emit workflow-step-result and workflow-step-finish when step fails in inngest workflow ([#10555](https://github.com/mastra-ai/mastra/pull/10555))
498
+
499
+ - Updated dependencies [[`ac0d2f4`](https://github.com/mastra-ai/mastra/commit/ac0d2f4ff8831f72c1c66c2be809706d17f65789), [`1a0d3fc`](https://github.com/mastra-ai/mastra/commit/1a0d3fc811482c9c376cdf79ee615c23bae9b2d6), [`85a628b`](https://github.com/mastra-ai/mastra/commit/85a628b1224a8f64cd82ea7f033774bf22df7a7e), [`c237233`](https://github.com/mastra-ai/mastra/commit/c23723399ccedf7f5744b3f40997b79246bfbe64), [`15f9e21`](https://github.com/mastra-ai/mastra/commit/15f9e216177201ea6e3f6d0bfb063fcc0953444f), [`ff94dea`](https://github.com/mastra-ai/mastra/commit/ff94dea935f4e34545c63bcb6c29804732698809), [`5b2ff46`](https://github.com/mastra-ai/mastra/commit/5b2ff4651df70c146523a7fca773f8eb0a2272f8), [`db41688`](https://github.com/mastra-ai/mastra/commit/db4168806d007417e2e60b4f68656dca4e5f40c9), [`5ca599d`](https://github.com/mastra-ai/mastra/commit/5ca599d0bb59a1595f19f58473fcd67cc71cef58), [`bff1145`](https://github.com/mastra-ai/mastra/commit/bff114556b3cbadad9b2768488708f8ad0e91475), [`5c8ca24`](https://github.com/mastra-ai/mastra/commit/5c8ca247094e0cc2cdbd7137822fb47241f86e77), [`e191844`](https://github.com/mastra-ai/mastra/commit/e1918444ca3f80e82feef1dad506cd4ec6e2875f), [`22553f1`](https://github.com/mastra-ai/mastra/commit/22553f11c63ee5e966a9c034a349822249584691), [`7237163`](https://github.com/mastra-ai/mastra/commit/72371635dbf96a87df4b073cc48fc655afbdce3d), [`2500740`](https://github.com/mastra-ai/mastra/commit/2500740ea23da067d6e50ec71c625ab3ce275e64), [`873ecbb`](https://github.com/mastra-ai/mastra/commit/873ecbb517586aa17d2f1e99283755b3ebb2863f), [`4f9bbe5`](https://github.com/mastra-ai/mastra/commit/4f9bbe5968f42c86f4930b8193de3c3c17e5bd36), [`02e51fe`](https://github.com/mastra-ai/mastra/commit/02e51feddb3d4155cfbcc42624fd0d0970d032c0), [`8f3fa3a`](https://github.com/mastra-ai/mastra/commit/8f3fa3a652bb77da092f913ec51ae46e3a7e27dc), [`cd29ad2`](https://github.com/mastra-ai/mastra/commit/cd29ad23a255534e8191f249593849ed29160886), [`bdf4d8c`](https://github.com/mastra-ai/mastra/commit/bdf4d8cdc656d8a2c21d81834bfa3bfa70f56c16), [`854e3da`](https://github.com/mastra-ai/mastra/commit/854e3dad5daac17a91a20986399d3a51f54bf68b), [`ce18d38`](https://github.com/mastra-ai/mastra/commit/ce18d38678c65870350d123955014a8432075fd9), [`cccf9c8`](https://github.com/mastra-ai/mastra/commit/cccf9c8b2d2dfc1a5e63919395b83d78c89682a0), [`61a5705`](https://github.com/mastra-ai/mastra/commit/61a570551278b6743e64243b3ce7d73de915ca8a), [`db70a48`](https://github.com/mastra-ai/mastra/commit/db70a48aeeeeb8e5f92007e8ede52c364ce15287), [`f0fdc14`](https://github.com/mastra-ai/mastra/commit/f0fdc14ee233d619266b3d2bbdeea7d25cfc6d13), [`db18bc9`](https://github.com/mastra-ai/mastra/commit/db18bc9c3825e2c1a0ad9a183cc9935f6691bfa1), [`9b37b56`](https://github.com/mastra-ai/mastra/commit/9b37b565e1f2a76c24f728945cc740c2b09be9da), [`41a23c3`](https://github.com/mastra-ai/mastra/commit/41a23c32f9877d71810f37e24930515df2ff7a0f), [`5d171ad`](https://github.com/mastra-ai/mastra/commit/5d171ad9ef340387276b77c2bb3e83e83332d729), [`f03ae60`](https://github.com/mastra-ai/mastra/commit/f03ae60500fe350c9d828621006cdafe1975fdd8), [`d1e74a0`](https://github.com/mastra-ai/mastra/commit/d1e74a0a293866dece31022047f5dbab65a304d0), [`39e7869`](https://github.com/mastra-ai/mastra/commit/39e7869bc7d0ee391077ce291474d8a84eedccff), [`5761926`](https://github.com/mastra-ai/mastra/commit/57619260c4a2cdd598763abbacd90de594c6bc76), [`c900fdd`](https://github.com/mastra-ai/mastra/commit/c900fdd504c41348efdffb205cfe80d48c38fa33), [`604a79f`](https://github.com/mastra-ai/mastra/commit/604a79fecf276e26a54a3fe01bb94e65315d2e0e), [`887f0b4`](https://github.com/mastra-ai/mastra/commit/887f0b4746cdbd7cb7d6b17ac9f82aeb58037ea5), [`2562143`](https://github.com/mastra-ai/mastra/commit/256214336b4faa78646c9c1776612393790d8784), [`ef11a61`](https://github.com/mastra-ai/mastra/commit/ef11a61920fa0ed08a5b7ceedd192875af119749)]:
500
+ - @mastra/core@1.0.0-beta.6
501
+
502
+ ## 1.0.0-beta.3
503
+
504
+ ### Patch Changes
505
+
506
+ - - Fix tool suspension throwing error when `outputSchema` is passed to tool during creation ([#10444](https://github.com/mastra-ai/mastra/pull/10444))
507
+ - Pass `suspendSchema` and `resumeSchema` from tool into step created when creating step from tool
508
+ - Updated dependencies [[`21a15de`](https://github.com/mastra-ai/mastra/commit/21a15de369fe82aac26bb642ed7be73505475e8b), [`feb7ee4`](https://github.com/mastra-ai/mastra/commit/feb7ee4d09a75edb46c6669a3beaceec78811747), [`b0e2ea5`](https://github.com/mastra-ai/mastra/commit/b0e2ea5b52c40fae438b9e2f7baee6f0f89c5442), [`c456e01`](https://github.com/mastra-ai/mastra/commit/c456e0149e3c176afcefdbd9bb1d2c5917723725), [`ab035c2`](https://github.com/mastra-ai/mastra/commit/ab035c2ef6d8cc7bb25f06f1a38508bd9e6f126b), [`1a46a56`](https://github.com/mastra-ai/mastra/commit/1a46a566f45a3fcbadc1cf36bf86d351f264bfa3), [`3cf540b`](https://github.com/mastra-ai/mastra/commit/3cf540b9fbfea8f4fc8d3a2319a4e6c0b0cbfd52), [`1c6ce51`](https://github.com/mastra-ai/mastra/commit/1c6ce51f875915ab57fd36873623013699a2a65d), [`898a972`](https://github.com/mastra-ai/mastra/commit/898a9727d286c2510d6b702dfd367e6aaf5c6b0f), [`a97003a`](https://github.com/mastra-ai/mastra/commit/a97003aa1cf2f4022a41912324a1e77263b326b8), [`ccc141e`](https://github.com/mastra-ai/mastra/commit/ccc141ed27da0abc3a3fc28e9e5128152e8e37f4), [`fe3b897`](https://github.com/mastra-ai/mastra/commit/fe3b897c2ccbcd2b10e81b099438c7337feddf89), [`00123ba`](https://github.com/mastra-ai/mastra/commit/00123ba96dc9e5cd0b110420ebdba56d8f237b25), [`29c4309`](https://github.com/mastra-ai/mastra/commit/29c4309f818b24304c041bcb4a8f19b5f13f6b62), [`16785ce`](https://github.com/mastra-ai/mastra/commit/16785ced928f6f22638f4488cf8a125d99211799), [`de8239b`](https://github.com/mastra-ai/mastra/commit/de8239bdcb1d8c0cfa06da21f1569912a66bbc8a), [`b5e6cd7`](https://github.com/mastra-ai/mastra/commit/b5e6cd77fc8c8e64e0494c1d06cee3d84e795d1e), [`3759cb0`](https://github.com/mastra-ai/mastra/commit/3759cb064935b5f74c65ac2f52a1145f7352899d), [`651e772`](https://github.com/mastra-ai/mastra/commit/651e772eb1475fb13e126d3fcc01751297a88214), [`b61b93f`](https://github.com/mastra-ai/mastra/commit/b61b93f9e058b11dd2eec169853175d31dbdd567), [`bae33d9`](https://github.com/mastra-ai/mastra/commit/bae33d91a63fbb64d1e80519e1fc1acaed1e9013), [`c0b731f`](https://github.com/mastra-ai/mastra/commit/c0b731fb27d712dc8582e846df5c0332a6a0c5ba), [`43ca8f2`](https://github.com/mastra-ai/mastra/commit/43ca8f2c7334851cc7b4d3d2f037d8784bfbdd5f), [`2ca67cc`](https://github.com/mastra-ai/mastra/commit/2ca67cc3bb1f6a617353fdcab197d9efebe60d6f), [`9e67002`](https://github.com/mastra-ai/mastra/commit/9e67002b52c9be19936c420a489dbee9c5fd6a78), [`35edc49`](https://github.com/mastra-ai/mastra/commit/35edc49ac0556db609189641d6341e76771b81fc)]:
509
+ - @mastra/core@1.0.0-beta.5
510
+
511
+ ## 1.0.0-beta.2
512
+
513
+ ### Patch Changes
514
+
515
+ - dependencies updates: ([#10120](https://github.com/mastra-ai/mastra/pull/10120))
516
+ - Updated dependency [`@inngest/realtime@^0.4.5` ↗︎](https://www.npmjs.com/package/@inngest/realtime/v/0.4.5) (from `^0.4.4`, in `dependencies`)
517
+
518
+ - fix resumeStream type to use resumeSchema ([#10202](https://github.com/mastra-ai/mastra/pull/10202))
519
+
520
+ - Add restart method to workflow run that allows restarting an active workflow run ([#9750](https://github.com/mastra-ai/mastra/pull/9750))
521
+ Add status filter to `listWorkflowRuns`
522
+ Add automatic restart to restart active workflow runs when server starts
523
+
524
+ - Validate schemas by default in workflow. Previously, if you want schemas in the workflow to be validated, you'd have to add `validateInputs` option, now, this will be done by default but can be disabled. ([#10186](https://github.com/mastra-ai/mastra/pull/10186))
525
+
526
+ For workflows whose schemas and step schemas you don't want validated, do this
527
+
528
+ ```diff
529
+ createWorkflow({
530
+ + options: {
531
+ + validateInputs: false
532
+ + }
533
+ })
534
+ ```
535
+
536
+ - Fix inngest parallel workflow ([#10169](https://github.com/mastra-ai/mastra/pull/10169))
537
+ Fix tool as step in inngest
538
+ Fix inngest nested workflow
539
+
540
+ - Add timeTravel to workflows. This makes it possible to start a workflow run from a particular step in the workflow ([#9994](https://github.com/mastra-ai/mastra/pull/9994))
541
+
542
+ Example code:
543
+
544
+ ```ts
545
+ const result = await run.timeTravel({
546
+ step: 'step2',
547
+ inputData: {
548
+ value: 'input',
549
+ },
550
+ });
551
+ ```
552
+
553
+ - Updated dependencies [[`2319326`](https://github.com/mastra-ai/mastra/commit/2319326f8c64e503a09bbcf14be2dd65405445e0), [`d629361`](https://github.com/mastra-ai/mastra/commit/d629361a60f6565b5bfb11976fdaf7308af858e2), [`08c31c1`](https://github.com/mastra-ai/mastra/commit/08c31c188ebccd598acaf55e888b6397d01f7eae), [`fd3d338`](https://github.com/mastra-ai/mastra/commit/fd3d338a2c362174ed5b383f1f011ad9fb0302aa), [`c30400a`](https://github.com/mastra-ai/mastra/commit/c30400a49b994b1b97256fe785eb6c906fc2b232), [`69e0a87`](https://github.com/mastra-ai/mastra/commit/69e0a878896a2da9494945d86e056a5f8f05b851), [`01f8878`](https://github.com/mastra-ai/mastra/commit/01f88783de25e4de048c1c8aace43e26373c6ea5), [`4c77209`](https://github.com/mastra-ai/mastra/commit/4c77209e6c11678808b365d545845918c40045c8), [`d827d08`](https://github.com/mastra-ai/mastra/commit/d827d0808ffe1f3553a84e975806cc989b9735dd), [`23c10a1`](https://github.com/mastra-ai/mastra/commit/23c10a1efdd9a693c405511ab2dc8a1236603162), [`676ccc7`](https://github.com/mastra-ai/mastra/commit/676ccc7fe92468d2d45d39c31a87825c89fd1ea0), [`c10398d`](https://github.com/mastra-ai/mastra/commit/c10398d5b88f1d4af556f4267ff06f1d11e89179), [`00c2387`](https://github.com/mastra-ai/mastra/commit/00c2387f5f04a365316f851e58666ac43f8c4edf), [`ad6250d`](https://github.com/mastra-ai/mastra/commit/ad6250dbdaad927e29f74a27b83f6c468b50a705), [`3a73998`](https://github.com/mastra-ai/mastra/commit/3a73998fa4ebeb7f3dc9301afe78095fc63e7999), [`e16d553`](https://github.com/mastra-ai/mastra/commit/e16d55338403c7553531cc568125c63d53653dff), [`4d59f58`](https://github.com/mastra-ai/mastra/commit/4d59f58de2d90d6e2810a19d4518e38ddddb9038), [`e1bb9c9`](https://github.com/mastra-ai/mastra/commit/e1bb9c94b4eb68b019ae275981be3feb769b5365), [`351a11f`](https://github.com/mastra-ai/mastra/commit/351a11fcaf2ed1008977fa9b9a489fc422e51cd4)]:
554
+ - @mastra/core@1.0.0-beta.3
555
+
3
556
  ## 1.0.0-beta.1
4
557
 
5
558
  ### Patch Changes