@mastra/mcp-docs-server 1.0.2-alpha.2 → 1.0.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.
- package/.docs/organized/changelogs/%40internal%2Fchangeset-cli.md +3 -1
- package/.docs/organized/changelogs/%40internal%2Fexternal-types.md +3 -1
- package/.docs/organized/changelogs/%40internal%2Fplayground.md +14 -0
- package/.docs/organized/changelogs/%40internal%2Fstorage-test-utils.md +8 -8
- package/.docs/organized/changelogs/%40internal%2Ftypes-builder.md +3 -1
- package/.docs/organized/changelogs/%40mastra%2Fagent-builder.md +13 -13
- package/.docs/organized/changelogs/%40mastra%2Fai-sdk.md +14 -14
- package/.docs/organized/changelogs/%40mastra%2Fclickhouse.md +78 -78
- package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +148 -148
- package/.docs/organized/changelogs/%40mastra%2Fcloudflare.md +76 -76
- package/.docs/organized/changelogs/%40mastra%2Fcodemod.md +41 -0
- package/.docs/organized/changelogs/%40mastra%2Fconvex.md +10 -10
- package/.docs/organized/changelogs/%40mastra%2Fcore.md +103 -103
- package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloud.md +10 -10
- package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +17 -17
- package/.docs/organized/changelogs/%40mastra%2Fdeployer-netlify.md +9 -9
- package/.docs/organized/changelogs/%40mastra%2Fdeployer-vercel.md +9 -9
- package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +98 -98
- package/.docs/organized/changelogs/%40mastra%2Fevals.md +11 -11
- package/.docs/organized/changelogs/%40mastra%2Flibsql.md +98 -98
- package/.docs/organized/changelogs/%40mastra%2Floggers.md +10 -10
- package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +8 -8
- package/.docs/organized/changelogs/%40mastra%2Fmemory.md +25 -25
- package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +94 -94
- package/.docs/organized/changelogs/%40mastra%2Fmssql.md +12 -12
- package/.docs/organized/changelogs/%40mastra%2Fpg.md +98 -98
- package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +184 -184
- package/.docs/organized/changelogs/%40mastra%2Frag.md +70 -70
- package/.docs/organized/changelogs/%40mastra%2Freact.md +34 -34
- package/.docs/organized/changelogs/%40mastra%2Fserver.md +186 -186
- package/.docs/organized/changelogs/%40mastra%2Fvoice-google-gemini-live.md +9 -0
- package/.docs/organized/changelogs/%40mastra%2Fvoice-openai-realtime.md +10 -10
- package/.docs/organized/changelogs/create-mastra.md +7 -7
- package/.docs/organized/changelogs/mastra.md +101 -101
- package/CHANGELOG.md +7 -0
- package/package.json +5 -5
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
-
## 1.1.0
|
|
4
|
-
|
|
5
|
-
## 1.1.0-alpha.1
|
|
3
|
+
## 1.1.0
|
|
6
4
|
|
|
7
5
|
### Minor Changes
|
|
8
6
|
|
|
@@ -22,16 +20,6 @@
|
|
|
22
20
|
- List endpoints return resolved agents (thin record + active version config)
|
|
23
21
|
- Auto-versioning on update with retention limits and race condition handling
|
|
24
22
|
|
|
25
|
-
### Patch Changes
|
|
26
|
-
|
|
27
|
-
- Fixed skill loading error caused by Zod version conflicts between v3 and v4. Replaced Zod schemas with plain TypeScript validation functions in skill metadata validation. ([#12485](https://github.com/mastra-ai/mastra/pull/12485))
|
|
28
|
-
|
|
29
|
-
- Fixed agent network crashing with 'Invalid task input' error when routing agent returns malformed JSON for tool/workflow prompts. The error is now fed back to the routing agent, allowing it to retry with valid JSON on the next iteration. ([#12486](https://github.com/mastra-ai/mastra/pull/12486))
|
|
30
|
-
|
|
31
|
-
## 1.1.0-alpha.0
|
|
32
|
-
|
|
33
|
-
### Minor Changes
|
|
34
|
-
|
|
35
23
|
- Added dynamic agent management with CRUD operations and version tracking ([#12038](https://github.com/mastra-ai/mastra/pull/12038))
|
|
36
24
|
|
|
37
25
|
**New Features:**
|
|
@@ -245,6 +233,8 @@
|
|
|
245
233
|
|
|
246
234
|
- Update provider registry and model documentation with latest models and providers ([`1cf5d2e`](https://github.com/mastra-ai/mastra/commit/1cf5d2ea1b085be23e34fb506c80c80a4e6d9c2b))
|
|
247
235
|
|
|
236
|
+
- Fixed skill loading error caused by Zod version conflicts between v3 and v4. Replaced Zod schemas with plain TypeScript validation functions in skill metadata validation. ([#12485](https://github.com/mastra-ai/mastra/pull/12485))
|
|
237
|
+
|
|
248
238
|
- Fix model router routing providers that use non-default AI SDK packages (e.g. `@ai-sdk/anthropic`, `@ai-sdk/openai`) to their correct SDK instead of falling back to `openai-compatible`. Add `cerebras`, `togetherai`, and `deepinfra` as native SDK providers. ([#12450](https://github.com/mastra-ai/mastra/pull/12450))
|
|
249
239
|
|
|
250
240
|
- Make suspendedToolRunId nullable to fix the null issue in tool input validation ([#12303](https://github.com/mastra-ai/mastra/pull/12303))
|
|
@@ -292,6 +282,8 @@
|
|
|
292
282
|
|
|
293
283
|
- Added activeTools parameter support to model loop stream. The activeTools parameter can now be passed through the ModelLoopStreamArgs to control which tools are available during LLM execution. ([#12082](https://github.com/mastra-ai/mastra/pull/12082))
|
|
294
284
|
|
|
285
|
+
- Fixed agent network crashing with 'Invalid task input' error when routing agent returns malformed JSON for tool/workflow prompts. The error is now fed back to the routing agent, allowing it to retry with valid JSON on the next iteration. ([#12486](https://github.com/mastra-ai/mastra/pull/12486))
|
|
286
|
+
|
|
295
287
|
- Fixed type error when passing MastraVoice implementations (like OpenAIVoice) directly to Agent's voice config. Previously, the voice property only accepted CompositeVoice, requiring users to wrap their voice provider. Now you can pass any MastraVoice implementation directly. ([#12329](https://github.com/mastra-ai/mastra/pull/12329))
|
|
296
288
|
|
|
297
289
|
**Before (required wrapper):**
|
|
@@ -370,133 +362,141 @@
|
|
|
370
362
|
|
|
371
363
|
Related issue: `#12282`
|
|
372
364
|
|
|
373
|
-
## 1.0.
|
|
365
|
+
## 1.1.0-alpha.2
|
|
366
|
+
|
|
367
|
+
## 1.1.0-alpha.1
|
|
374
368
|
|
|
375
|
-
|
|
369
|
+
### Minor Changes
|
|
376
370
|
|
|
377
|
-
|
|
371
|
+
- Restructured stored agents to use a thin metadata record with versioned configuration snapshots. ([#12488](https://github.com/mastra-ai/mastra/pull/12488))
|
|
378
372
|
|
|
379
|
-
|
|
373
|
+
The agent record now only stores metadata fields (id, status, activeVersionId, authorId, metadata, timestamps). All configuration fields (name, instructions, model, tools, etc.) live exclusively in version snapshot rows, enabling full version history and rollback.
|
|
374
|
+
|
|
375
|
+
**Key changes:**
|
|
376
|
+
- Stored Agent records are now thin metadata-only (StorageAgentType)
|
|
377
|
+
- All config lives in version snapshots (StorageAgentSnapshotType)
|
|
378
|
+
- New resolved type (StorageResolvedAgentType) merges agent record + active version config
|
|
379
|
+
- Renamed `ownerId` to `authorId` for multi-tenant filtering
|
|
380
|
+
- Changed `memory` field type from `string` to `Record<string, unknown>`
|
|
381
|
+
- Added `status` field ('draft' | 'published') to agent records
|
|
382
|
+
- Flattened CreateAgent/UpdateAgent input types (config fields at top level, no nested snapshot)
|
|
383
|
+
- Version config columns are top-level in the agent_versions table (no single snapshot jsonb column)
|
|
384
|
+
- List endpoints return resolved agents (thin record + active version config)
|
|
385
|
+
- Auto-versioning on update with retention limits and race condition handling
|
|
380
386
|
|
|
381
|
-
|
|
387
|
+
### Patch Changes
|
|
382
388
|
|
|
383
|
-
-
|
|
384
|
-
- Scorer input/output types now use `MastraDBMessage[]` with nested `content` object structure
|
|
385
|
-
- Added `getTextContentFromMastraDBMessage()` helper function to extract text content from `MastraDBMessage` objects
|
|
386
|
-
- Added `createTestMessage()` helper function for creating `MastraDBMessage` objects in tests with optional tool invocations support
|
|
387
|
-
- Updated `extractToolCalls()` to access tool invocations from nested `content` structure
|
|
388
|
-
- Updated `getUserMessageFromRunInput()` and `getAssistantMessageFromRunOutput()` to use new message structure
|
|
389
|
-
- Removed `createUIMessage()`
|
|
389
|
+
- Fixed skill loading error caused by Zod version conflicts between v3 and v4. Replaced Zod schemas with plain TypeScript validation functions in skill metadata validation. ([#12485](https://github.com/mastra-ai/mastra/pull/12485))
|
|
390
390
|
|
|
391
|
-
-
|
|
391
|
+
- Fixed agent network crashing with 'Invalid task input' error when routing agent returns malformed JSON for tool/workflow prompts. The error is now fed back to the routing agent, allowing it to retry with valid JSON on the next iteration. ([#12486](https://github.com/mastra-ai/mastra/pull/12486))
|
|
392
392
|
|
|
393
|
-
|
|
393
|
+
## 1.1.0-alpha.0
|
|
394
394
|
|
|
395
|
-
|
|
395
|
+
### Minor Changes
|
|
396
396
|
|
|
397
|
-
-
|
|
397
|
+
- Added dynamic agent management with CRUD operations and version tracking ([#12038](https://github.com/mastra-ai/mastra/pull/12038))
|
|
398
398
|
|
|
399
|
-
|
|
399
|
+
**New Features:**
|
|
400
|
+
- Create, edit, and delete agents directly from the Mastra Studio UI
|
|
401
|
+
- Full version history for agents with compare and restore capabilities
|
|
402
|
+
- Visual diff viewer to compare agent configurations across versions
|
|
403
|
+
- Agent creation modal with comprehensive configuration options (model selection, instructions, tools, workflows, sub-agents, memory)
|
|
404
|
+
- AI-powered instruction enhancement
|
|
400
405
|
|
|
401
|
-
**
|
|
402
|
-
-
|
|
403
|
-
-
|
|
404
|
-
-
|
|
405
|
-
- Fixed `TSteps` generic to properly use `TEngineType` instead of `any`
|
|
406
|
+
**Storage:**
|
|
407
|
+
- New storage interfaces for stored agents and agent versions
|
|
408
|
+
- PostgreSQL, LibSQL, and MongoDB implementations included
|
|
409
|
+
- In-memory storage for development and testing
|
|
406
410
|
|
|
407
|
-
**
|
|
408
|
-
-
|
|
409
|
-
-
|
|
410
|
-
-
|
|
411
|
+
**API:**
|
|
412
|
+
- RESTful endpoints for agent CRUD operations
|
|
413
|
+
- Version management endpoints (create, list, activate, restore, delete, compare)
|
|
414
|
+
- Automatic versioning on agent updates when enabled
|
|
411
415
|
|
|
412
|
-
**
|
|
413
|
-
-
|
|
414
|
-
-
|
|
416
|
+
**Client SDK:**
|
|
417
|
+
- JavaScript client with full support for stored agents and versions
|
|
418
|
+
- Type-safe methods for all CRUD and version operations
|
|
415
419
|
|
|
416
|
-
|
|
420
|
+
**Usage Example:**
|
|
417
421
|
|
|
418
|
-
|
|
422
|
+
```typescript
|
|
423
|
+
// Server-side: Configure storage
|
|
424
|
+
import { Mastra } from '@mastra/core';
|
|
425
|
+
import { PgAgentsStorage } from '@mastra/pg';
|
|
419
426
|
|
|
420
|
-
|
|
427
|
+
const mastra = new Mastra({
|
|
428
|
+
agents: { agentOne },
|
|
429
|
+
storage: {
|
|
430
|
+
agents: new PgAgentsStorage({
|
|
431
|
+
connectionString: process.env.DATABASE_URL,
|
|
432
|
+
}),
|
|
433
|
+
},
|
|
434
|
+
});
|
|
421
435
|
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
- All storage implementations support `perPage: false`:
|
|
425
|
-
- Memory: `listMessages()`
|
|
426
|
-
- Scores: `listScoresBySpan()`, `listScoresByRunId()`, `listScoresByExecutionId()`
|
|
427
|
-
- HTTP query parser accepts `"false"` string (e.g., `?perPage=false`)
|
|
436
|
+
// Client-side: Use the SDK
|
|
437
|
+
import { MastraClient } from '@mastra/client-js';
|
|
428
438
|
|
|
429
|
-
|
|
430
|
-
- `memory.query()` parameter type changed from `StorageGetMessagesArg` to `StorageListMessagesInput`
|
|
431
|
-
- Uses flat parameters (`page`, `perPage`, `include`, `filter`, `vectorSearchString`) instead of `selectBy` object
|
|
439
|
+
const client = new MastraClient({ baseUrl: 'http://localhost:3000' });
|
|
432
440
|
|
|
433
|
-
|
|
434
|
-
|
|
441
|
+
// Create a stored agent
|
|
442
|
+
const agent = await client.createStoredAgent({
|
|
443
|
+
name: 'Customer Support Agent',
|
|
444
|
+
description: 'Handles customer inquiries',
|
|
445
|
+
model: { provider: 'ANTHROPIC', name: 'claude-sonnet-4-5' },
|
|
446
|
+
instructions: 'You are a helpful customer support agent...',
|
|
447
|
+
tools: ['search', 'email'],
|
|
448
|
+
});
|
|
435
449
|
|
|
436
|
-
|
|
450
|
+
// Create a version snapshot
|
|
451
|
+
await client.storedAgent(agent.id).createVersion({
|
|
452
|
+
name: 'v1.0 - Initial release',
|
|
453
|
+
changeMessage: 'First production version',
|
|
454
|
+
});
|
|
437
455
|
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
- storage.getMessagesPaginated({ threadId, selectBy: { pagination: { page: 0, perPage: 20 } } })
|
|
441
|
-
+ storage.listMessages({ threadId, page: 0, perPage: 20 })
|
|
442
|
-
+ storage.listMessages({ threadId, page: 0, perPage: false }) // Fetch all
|
|
443
|
-
|
|
444
|
-
// Memory: Replace selectBy with flat parameters
|
|
445
|
-
- memory.query({ threadId, selectBy: { last: 20, include: [...] } })
|
|
446
|
-
+ memory.query({ threadId, perPage: 20, include: [...] })
|
|
447
|
-
|
|
448
|
-
// Client SDK
|
|
449
|
-
- thread.getMessagesPaginated({ selectBy: { pagination: { page: 0 } } })
|
|
450
|
-
+ thread.listMessages({ page: 0, perPage: 20 })
|
|
456
|
+
// Compare versions
|
|
457
|
+
const diff = await client.storedAgent(agent.id).compareVersions('version-1', 'version-2');
|
|
451
458
|
```
|
|
452
459
|
|
|
453
|
-
|
|
460
|
+
**Why:**
|
|
461
|
+
This feature enables teams to manage agents dynamically without code changes, making it easier to iterate on agent configurations and maintain a complete audit trail of changes.
|
|
454
462
|
|
|
455
|
-
|
|
463
|
+
- Added unified Workspace API for agent filesystem access, code execution, and search capabilities. ([#11986](https://github.com/mastra-ai/mastra/pull/11986))
|
|
456
464
|
|
|
457
|
-
**
|
|
465
|
+
**New Workspace class** combines filesystem, sandbox, and search into a single interface that agents can use for file operations, command execution, and content search.
|
|
458
466
|
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
threadId: 'thread-1',
|
|
466
|
-
page: 0,
|
|
467
|
-
perPage: 50,
|
|
468
|
-
});
|
|
469
|
-
const messages = result.messages; // Access messages array
|
|
470
|
-
console.log(result.total); // Total count
|
|
471
|
-
console.log(result.hasMore); // Whether more pages exist
|
|
472
|
-
```
|
|
467
|
+
**Key features:**
|
|
468
|
+
- Filesystem operations (read, write, copy, move, delete) through pluggable providers
|
|
469
|
+
- Code and command execution in secure sandboxed environments with optional OS-level isolation
|
|
470
|
+
- Keyword search, semantic search, and hybrid search modes
|
|
471
|
+
- Skills system for discovering and using SKILL.md instruction files
|
|
472
|
+
- Safety controls including read-before-write guards, approval flows, and read-only mode
|
|
473
473
|
|
|
474
|
-
**
|
|
474
|
+
**Usage:**
|
|
475
475
|
|
|
476
|
-
|
|
476
|
+
```typescript
|
|
477
|
+
import { Workspace, LocalFilesystem, LocalSandbox } from '@mastra/core/workspace';
|
|
477
478
|
|
|
478
|
-
|
|
479
|
+
const workspace = new Workspace({
|
|
480
|
+
filesystem: new LocalFilesystem({ basePath: './workspace' }),
|
|
481
|
+
sandbox: new LocalSandbox({ workingDirectory: './workspace' }),
|
|
482
|
+
bm25: true,
|
|
483
|
+
});
|
|
479
484
|
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
orderBy: { field: 'createdAt', direction: 'DESC' },
|
|
485
|
+
const agent = new Agent({
|
|
486
|
+
workspace,
|
|
487
|
+
// Agent automatically receives workspace tools
|
|
484
488
|
});
|
|
485
489
|
```
|
|
486
490
|
|
|
487
|
-
|
|
491
|
+
- Added `status` field to `listTraces` response. The status field indicates the trace state: `success` (completed without error), `error` (has error), or `running` (still in progress). This makes it easier to filter and display traces by their current state without having to derive it from the `error` and `endedAt` fields. ([#12213](https://github.com/mastra-ai/mastra/pull/12213))
|
|
488
492
|
|
|
489
|
-
|
|
493
|
+
- Added `RequestContext.all` to access the entire `RequestContext` object values. ([#12259](https://github.com/mastra-ai/mastra/pull/12259))
|
|
490
494
|
|
|
491
495
|
```typescript
|
|
492
|
-
|
|
493
|
-
const response = await client.getThreadMessages(threadId, { agentId });
|
|
494
|
-
|
|
495
|
-
// After
|
|
496
|
-
const response = await client.listThreadMessages(threadId, { agentId });
|
|
496
|
+
const { userId, featureFlags } = requestContext.all;
|
|
497
497
|
```
|
|
498
498
|
|
|
499
|
-
|
|
499
|
+
Added `requestContextSchema` support to tools, agents, workflows, and steps. Define a Zod schema to validate and type requestContext values at runtime.
|
|
500
500
|
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 12436 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @mastra/deployer-cloud
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`906a097`](https://github.com/mastra-ai/mastra/commit/906a0973027f496ebb6a8031721a9d2b6c0802ea), [`c818902`](https://github.com/mastra-ai/mastra/commit/c81890204437500e0c3cbd8d505d56177e850a1f), [`1cf5d2e`](https://github.com/mastra-ai/mastra/commit/1cf5d2ea1b085be23e34fb506c80c80a4e6d9c2b), [`b99ceac`](https://github.com/mastra-ai/mastra/commit/b99ceace2c830dbdef47c8692d56a91954aefea2), [`deea43e`](https://github.com/mastra-ai/mastra/commit/deea43eb1366d03a864c5e597d16a48592b9893f), [`833ae96`](https://github.com/mastra-ai/mastra/commit/833ae96c3e34370e58a1e979571c41f39a720592), [`943772b`](https://github.com/mastra-ai/mastra/commit/943772b4378f625f0f4e19ea2b7c392bd8e71786), [`b5c711b`](https://github.com/mastra-ai/mastra/commit/b5c711b281dd1fb81a399a766bc9f86c55efc13e), [`3efbe5a`](https://github.com/mastra-ai/mastra/commit/3efbe5ae20864c4f3143457f4f3ee7dc2fa5ca76), [`9517e02`](https://github.com/mastra-ai/mastra/commit/9517e023192d1ad862679a4edd6b66396c48bdeb), [`1e49e7a`](https://github.com/mastra-ai/mastra/commit/1e49e7ab5f173582154cb26b29d424de67d09aef), [`751eaab`](https://github.com/mastra-ai/mastra/commit/751eaab4e0d3820a94e4c3d39a2ff2663ded3d91), [`b11b8e4`](https://github.com/mastra-ai/mastra/commit/b11b8e4c34b5595fffb2b6cae004e83262e61a2e), [`69d8156`](https://github.com/mastra-ai/mastra/commit/69d81568bcf062557c24471ce26812446bec465d), [`fcc4157`](https://github.com/mastra-ai/mastra/commit/fcc41572830b5cf245058b2a424f46b33e7b25a5), [`60d9d89`](https://github.com/mastra-ai/mastra/commit/60d9d899e44b35bc43f1bcd967a74e0ce010b1af), [`5c544c8`](https://github.com/mastra-ai/mastra/commit/5c544c8d12b08ab40d64d8f37b3c4215bee95b87), [`771ad96`](https://github.com/mastra-ai/mastra/commit/771ad962441996b5c43549391a3e6a02c6ddedc2), [`2b0936b`](https://github.com/mastra-ai/mastra/commit/2b0936b0c9a43eeed9bef63e614d7e02ee803f7e), [`3b04f30`](https://github.com/mastra-ai/mastra/commit/3b04f3010604f3cdfc8a0674731700ad66471cee), [`97e26de`](https://github.com/mastra-ai/mastra/commit/97e26deaebd9836647a67b96423281d66421ca07), [`ac9ec66`](https://github.com/mastra-ai/mastra/commit/ac9ec6672779b2e6d4344e415481d1a6a7d4911a), [`10523f4`](https://github.com/mastra-ai/mastra/commit/10523f4882d9b874b40ce6e3715f66dbcd4947d2), [`cb72d20`](https://github.com/mastra-ai/mastra/commit/cb72d2069d7339bda8a0e76d4f35615debb07b84), [`42856b1`](https://github.com/mastra-ai/mastra/commit/42856b1c8aeea6371c9ee77ae2f5f5fe34400933), [`66f33ff`](https://github.com/mastra-ai/mastra/commit/66f33ff68620018513e499c394411d1d39b3aa5c), [`ab3c190`](https://github.com/mastra-ai/mastra/commit/ab3c1901980a99910ca9b96a7090c22e24060113), [`d4f06c8`](https://github.com/mastra-ai/mastra/commit/d4f06c85ffa5bb0da38fb82ebf3b040cc6b4ec4e), [`7e00234`](https://github.com/mastra-ai/mastra/commit/7e002343589efc095f854bde70c72538a4bf8868), [`0350626`](https://github.com/mastra-ai/mastra/commit/03506267ec41b67add80d994c0c0fcce93bbc75f), [`bc9fa00`](https://github.com/mastra-ai/mastra/commit/bc9fa00859c5c4a796d53a0a5cae46ab4a3072e4), [`f46a478`](https://github.com/mastra-ai/mastra/commit/f46a4782f595949c696569e891f81c8d26338508), [`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`f05a3a5`](https://github.com/mastra-ai/mastra/commit/f05a3a5cf2b9a9c2d40c09cb8c762a4b6cd5d565), [`a291da9`](https://github.com/mastra-ai/mastra/commit/a291da9363efd92dafd8775dccb4f2d0511ece7a), [`c5d71da`](https://github.com/mastra-ai/mastra/commit/c5d71da1c680ce5640b1a7f8ca0e024a4ab1cfed), [`07042f9`](https://github.com/mastra-ai/mastra/commit/07042f9f89080f38b8f72713ba1c972d5b1905b8), [`0423442`](https://github.com/mastra-ai/mastra/commit/0423442b7be2dfacba95890bea8f4a810db4d603)]:
|
|
8
|
+
- @mastra/core@1.1.0
|
|
9
|
+
- @mastra/deployer@1.1.0
|
|
10
|
+
- @mastra/loggers@1.0.1
|
|
11
|
+
|
|
3
12
|
## 1.1.0-alpha.2
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -489,14 +498,5 @@
|
|
|
489
498
|
|
|
490
499
|
- Moving scorers under the eval domain, api method consistency, prebuilt evals, scorers require ids. ([#9589](https://github.com/mastra-ai/mastra/pull/9589))
|
|
491
500
|
|
|
492
|
-
- Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
|
|
493
|
-
|
|
494
|
-
- Experimental auth -> auth ([#9660](https://github.com/mastra-ai/mastra/pull/9660))
|
|
495
|
-
|
|
496
|
-
- Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
|
|
497
|
-
|
|
498
|
-
- Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
|
|
499
|
-
|
|
500
|
-
- Renamed `MastraMessageV2` to `MastraDBMessage` ([#9255](https://github.com/mastra-ai/mastra/pull/9255))
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 886 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/deployer-cloudflare
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dependencies updates: ([#12191](https://github.com/mastra-ai/mastra/pull/12191))
|
|
8
|
+
- Updated dependency [`@babel/core@^7.28.6` ↗︎](https://www.npmjs.com/package/@babel/core/v/7.28.6) (from `^7.28.5`, in `dependencies`)
|
|
9
|
+
|
|
10
|
+
- dependencies updates: ([#9737](https://github.com/mastra-ai/mastra/pull/9737))
|
|
11
|
+
- Updated dependency [`rollup@~4.55.1` ↗︎](https://www.npmjs.com/package/rollup/v/4.55.1) (from `~4.50.2`, in `dependencies`)
|
|
12
|
+
|
|
13
|
+
- Fixed Cloudflare Workers exceeding the 3MB size limit due to TypeScript being bundled. The deployer now stubs out TypeScript (~10MB) since the agent-builder gracefully falls back to basic validation when it's unavailable. ([#12420](https://github.com/mastra-ai/mastra/pull/12420))
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`906a097`](https://github.com/mastra-ai/mastra/commit/906a0973027f496ebb6a8031721a9d2b6c0802ea), [`c818902`](https://github.com/mastra-ai/mastra/commit/c81890204437500e0c3cbd8d505d56177e850a1f), [`1cf5d2e`](https://github.com/mastra-ai/mastra/commit/1cf5d2ea1b085be23e34fb506c80c80a4e6d9c2b), [`b99ceac`](https://github.com/mastra-ai/mastra/commit/b99ceace2c830dbdef47c8692d56a91954aefea2), [`deea43e`](https://github.com/mastra-ai/mastra/commit/deea43eb1366d03a864c5e597d16a48592b9893f), [`833ae96`](https://github.com/mastra-ai/mastra/commit/833ae96c3e34370e58a1e979571c41f39a720592), [`943772b`](https://github.com/mastra-ai/mastra/commit/943772b4378f625f0f4e19ea2b7c392bd8e71786), [`b5c711b`](https://github.com/mastra-ai/mastra/commit/b5c711b281dd1fb81a399a766bc9f86c55efc13e), [`3efbe5a`](https://github.com/mastra-ai/mastra/commit/3efbe5ae20864c4f3143457f4f3ee7dc2fa5ca76), [`1e49e7a`](https://github.com/mastra-ai/mastra/commit/1e49e7ab5f173582154cb26b29d424de67d09aef), [`751eaab`](https://github.com/mastra-ai/mastra/commit/751eaab4e0d3820a94e4c3d39a2ff2663ded3d91), [`b11b8e4`](https://github.com/mastra-ai/mastra/commit/b11b8e4c34b5595fffb2b6cae004e83262e61a2e), [`69d8156`](https://github.com/mastra-ai/mastra/commit/69d81568bcf062557c24471ce26812446bec465d), [`fcc4157`](https://github.com/mastra-ai/mastra/commit/fcc41572830b5cf245058b2a424f46b33e7b25a5), [`60d9d89`](https://github.com/mastra-ai/mastra/commit/60d9d899e44b35bc43f1bcd967a74e0ce010b1af), [`5c544c8`](https://github.com/mastra-ai/mastra/commit/5c544c8d12b08ab40d64d8f37b3c4215bee95b87), [`771ad96`](https://github.com/mastra-ai/mastra/commit/771ad962441996b5c43549391a3e6a02c6ddedc2), [`2b0936b`](https://github.com/mastra-ai/mastra/commit/2b0936b0c9a43eeed9bef63e614d7e02ee803f7e), [`3b04f30`](https://github.com/mastra-ai/mastra/commit/3b04f3010604f3cdfc8a0674731700ad66471cee), [`97e26de`](https://github.com/mastra-ai/mastra/commit/97e26deaebd9836647a67b96423281d66421ca07), [`ac9ec66`](https://github.com/mastra-ai/mastra/commit/ac9ec6672779b2e6d4344e415481d1a6a7d4911a), [`10523f4`](https://github.com/mastra-ai/mastra/commit/10523f4882d9b874b40ce6e3715f66dbcd4947d2), [`cb72d20`](https://github.com/mastra-ai/mastra/commit/cb72d2069d7339bda8a0e76d4f35615debb07b84), [`42856b1`](https://github.com/mastra-ai/mastra/commit/42856b1c8aeea6371c9ee77ae2f5f5fe34400933), [`66f33ff`](https://github.com/mastra-ai/mastra/commit/66f33ff68620018513e499c394411d1d39b3aa5c), [`ab3c190`](https://github.com/mastra-ai/mastra/commit/ab3c1901980a99910ca9b96a7090c22e24060113), [`d4f06c8`](https://github.com/mastra-ai/mastra/commit/d4f06c85ffa5bb0da38fb82ebf3b040cc6b4ec4e), [`7e00234`](https://github.com/mastra-ai/mastra/commit/7e002343589efc095f854bde70c72538a4bf8868), [`0350626`](https://github.com/mastra-ai/mastra/commit/03506267ec41b67add80d994c0c0fcce93bbc75f), [`bc9fa00`](https://github.com/mastra-ai/mastra/commit/bc9fa00859c5c4a796d53a0a5cae46ab4a3072e4), [`f46a478`](https://github.com/mastra-ai/mastra/commit/f46a4782f595949c696569e891f81c8d26338508), [`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`f05a3a5`](https://github.com/mastra-ai/mastra/commit/f05a3a5cf2b9a9c2d40c09cb8c762a4b6cd5d565), [`a291da9`](https://github.com/mastra-ai/mastra/commit/a291da9363efd92dafd8775dccb4f2d0511ece7a), [`c5d71da`](https://github.com/mastra-ai/mastra/commit/c5d71da1c680ce5640b1a7f8ca0e024a4ab1cfed), [`07042f9`](https://github.com/mastra-ai/mastra/commit/07042f9f89080f38b8f72713ba1c972d5b1905b8), [`0423442`](https://github.com/mastra-ai/mastra/commit/0423442b7be2dfacba95890bea8f4a810db4d603)]:
|
|
16
|
+
- @mastra/core@1.1.0
|
|
17
|
+
- @mastra/deployer@1.1.0
|
|
18
|
+
|
|
3
19
|
## 1.0.2-alpha.0
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -483,20 +499,4 @@
|
|
|
483
499
|
- dependencies updates: ([#7803](https://github.com/mastra-ai/mastra/pull/7803))
|
|
484
500
|
- Updated dependency [`rollup@~4.50.1` ↗︎](https://www.npmjs.com/package/rollup/v/4.50.1) (from `~4.50.0`, in `dependencies`)
|
|
485
501
|
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
- Updated dependencies [[`b1c155b`](https://github.com/mastra-ai/mastra/commit/b1c155b57ce702674f207f1d4c6a4ebf94225f44), [`790f7d1`](https://github.com/mastra-ai/mastra/commit/790f7d17895d7a5f75b6b5d2d794c2e820b99d4c), [`3cd6538`](https://github.com/mastra-ai/mastra/commit/3cd6538811fc94f84a19dbd1064f46cb42e38c1d), [`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`7e82fbf`](https://github.com/mastra-ai/mastra/commit/7e82fbf3715175e274d2015eb59fb7f57dc9b09d), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
|
|
489
|
-
- @mastra/deployer@0.17.0-alpha.3
|
|
490
|
-
- @mastra/core@0.17.0-alpha.3
|
|
491
|
-
|
|
492
|
-
## 0.13.8-alpha.0
|
|
493
|
-
|
|
494
|
-
### Patch Changes
|
|
495
|
-
|
|
496
|
-
- Updated dependencies [[`5802bf5`](https://github.com/mastra-ai/mastra/commit/5802bf57f6182e4b67c28d7d91abed349a8d14f3), [`5bda53a`](https://github.com/mastra-ai/mastra/commit/5bda53a9747bfa7d876d754fc92c83a06e503f62), [`f26a8fd`](https://github.com/mastra-ai/mastra/commit/f26a8fd99fcb0497a5d86c28324430d7f6a5fb83), [`f0ab020`](https://github.com/mastra-ai/mastra/commit/f0ab02034532a4afb71a1ef4fe243f9a8dffde84), [`1a1fbe6`](https://github.com/mastra-ai/mastra/commit/1a1fbe66efb7d94abc373ed0dd9676adb8122454), [`36f39c0`](https://github.com/mastra-ai/mastra/commit/36f39c00dc794952dc3c11aab91c2fa8bca74b11)]:
|
|
497
|
-
- @mastra/core@0.16.4-alpha.0
|
|
498
|
-
- @mastra/deployer@0.16.4-alpha.0
|
|
499
|
-
|
|
500
|
-
## 0.13.7
|
|
501
|
-
|
|
502
|
-
... 3863 more lines hidden. See full changelog in package directory.
|
|
502
|
+
... 3879 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @mastra/deployer-netlify
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`906a097`](https://github.com/mastra-ai/mastra/commit/906a0973027f496ebb6a8031721a9d2b6c0802ea), [`c818902`](https://github.com/mastra-ai/mastra/commit/c81890204437500e0c3cbd8d505d56177e850a1f), [`1cf5d2e`](https://github.com/mastra-ai/mastra/commit/1cf5d2ea1b085be23e34fb506c80c80a4e6d9c2b), [`b99ceac`](https://github.com/mastra-ai/mastra/commit/b99ceace2c830dbdef47c8692d56a91954aefea2), [`deea43e`](https://github.com/mastra-ai/mastra/commit/deea43eb1366d03a864c5e597d16a48592b9893f), [`833ae96`](https://github.com/mastra-ai/mastra/commit/833ae96c3e34370e58a1e979571c41f39a720592), [`943772b`](https://github.com/mastra-ai/mastra/commit/943772b4378f625f0f4e19ea2b7c392bd8e71786), [`b5c711b`](https://github.com/mastra-ai/mastra/commit/b5c711b281dd1fb81a399a766bc9f86c55efc13e), [`3efbe5a`](https://github.com/mastra-ai/mastra/commit/3efbe5ae20864c4f3143457f4f3ee7dc2fa5ca76), [`1e49e7a`](https://github.com/mastra-ai/mastra/commit/1e49e7ab5f173582154cb26b29d424de67d09aef), [`751eaab`](https://github.com/mastra-ai/mastra/commit/751eaab4e0d3820a94e4c3d39a2ff2663ded3d91), [`b11b8e4`](https://github.com/mastra-ai/mastra/commit/b11b8e4c34b5595fffb2b6cae004e83262e61a2e), [`69d8156`](https://github.com/mastra-ai/mastra/commit/69d81568bcf062557c24471ce26812446bec465d), [`fcc4157`](https://github.com/mastra-ai/mastra/commit/fcc41572830b5cf245058b2a424f46b33e7b25a5), [`60d9d89`](https://github.com/mastra-ai/mastra/commit/60d9d899e44b35bc43f1bcd967a74e0ce010b1af), [`5c544c8`](https://github.com/mastra-ai/mastra/commit/5c544c8d12b08ab40d64d8f37b3c4215bee95b87), [`771ad96`](https://github.com/mastra-ai/mastra/commit/771ad962441996b5c43549391a3e6a02c6ddedc2), [`2b0936b`](https://github.com/mastra-ai/mastra/commit/2b0936b0c9a43eeed9bef63e614d7e02ee803f7e), [`3b04f30`](https://github.com/mastra-ai/mastra/commit/3b04f3010604f3cdfc8a0674731700ad66471cee), [`97e26de`](https://github.com/mastra-ai/mastra/commit/97e26deaebd9836647a67b96423281d66421ca07), [`ac9ec66`](https://github.com/mastra-ai/mastra/commit/ac9ec6672779b2e6d4344e415481d1a6a7d4911a), [`10523f4`](https://github.com/mastra-ai/mastra/commit/10523f4882d9b874b40ce6e3715f66dbcd4947d2), [`cb72d20`](https://github.com/mastra-ai/mastra/commit/cb72d2069d7339bda8a0e76d4f35615debb07b84), [`42856b1`](https://github.com/mastra-ai/mastra/commit/42856b1c8aeea6371c9ee77ae2f5f5fe34400933), [`66f33ff`](https://github.com/mastra-ai/mastra/commit/66f33ff68620018513e499c394411d1d39b3aa5c), [`ab3c190`](https://github.com/mastra-ai/mastra/commit/ab3c1901980a99910ca9b96a7090c22e24060113), [`d4f06c8`](https://github.com/mastra-ai/mastra/commit/d4f06c85ffa5bb0da38fb82ebf3b040cc6b4ec4e), [`7e00234`](https://github.com/mastra-ai/mastra/commit/7e002343589efc095f854bde70c72538a4bf8868), [`0350626`](https://github.com/mastra-ai/mastra/commit/03506267ec41b67add80d994c0c0fcce93bbc75f), [`bc9fa00`](https://github.com/mastra-ai/mastra/commit/bc9fa00859c5c4a796d53a0a5cae46ab4a3072e4), [`f46a478`](https://github.com/mastra-ai/mastra/commit/f46a4782f595949c696569e891f81c8d26338508), [`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`f05a3a5`](https://github.com/mastra-ai/mastra/commit/f05a3a5cf2b9a9c2d40c09cb8c762a4b6cd5d565), [`a291da9`](https://github.com/mastra-ai/mastra/commit/a291da9363efd92dafd8775dccb4f2d0511ece7a), [`c5d71da`](https://github.com/mastra-ai/mastra/commit/c5d71da1c680ce5640b1a7f8ca0e024a4ab1cfed), [`07042f9`](https://github.com/mastra-ai/mastra/commit/07042f9f89080f38b8f72713ba1c972d5b1905b8), [`0423442`](https://github.com/mastra-ai/mastra/commit/0423442b7be2dfacba95890bea8f4a810db4d603)]:
|
|
8
|
+
- @mastra/core@1.1.0
|
|
9
|
+
- @mastra/deployer@1.1.0
|
|
10
|
+
|
|
3
11
|
## 1.0.2-alpha.0
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -490,13 +498,5 @@
|
|
|
490
498
|
|
|
491
499
|
### Patch Changes
|
|
492
500
|
|
|
493
|
-
- Updated dependencies [[`b4379f7`](https://github.com/mastra-ai/mastra/commit/b4379f703fd74474f253420e8c3a684f2c4b2f8e), [`b4379f7`](https://github.com/mastra-ai/mastra/commit/b4379f703fd74474f253420e8c3a684f2c4b2f8e), [`2a6585f`](https://github.com/mastra-ai/mastra/commit/2a6585f7cb71f023f805d521d1c3c95fb9a3aa59), [`3d26e83`](https://github.com/mastra-ai/mastra/commit/3d26e8353a945719028f087cc6ac4b06f0ce27d2), [`dd9119b`](https://github.com/mastra-ai/mastra/commit/dd9119b175a8f389082f75c12750e51f96d65dca), [`d34aaa1`](https://github.com/mastra-ai/mastra/commit/d34aaa1da5d3c5f991740f59e2fe6d28d3e2dd91), [`56e55d1`](https://github.com/mastra-ai/mastra/commit/56e55d1e9eb63e7d9e41aa46e012aae471256812), [`ce1e580`](https://github.com/mastra-ai/mastra/commit/ce1e580f6391e94a0c6816a9c5db0a21566a262f), [`b2babfa`](https://github.com/mastra-ai/mastra/commit/b2babfa9e75b22f2759179e71d8473f6dc5421ed), [`d8c3ba5`](https://github.com/mastra-ai/mastra/commit/d8c3ba516f4173282d293f7e64769cfc8738d360), [`a566c4e`](https://github.com/mastra-ai/mastra/commit/a566c4e92d86c1671707c54359b1d33934f7cc13), [`0666082`](https://github.com/mastra-ai/mastra/commit/06660820230dcb1fa7c1d51c8254107afd68cd67), [`af333aa`](https://github.com/mastra-ai/mastra/commit/af333aa30fe6d1b127024b03a64736c46eddeca2), [`4c81b65`](https://github.com/mastra-ai/mastra/commit/4c81b65a28d128560bdf63bc9b8a1bddd4884812), [`3863c52`](https://github.com/mastra-ai/mastra/commit/3863c52d44b4e5779968b802d977e87adf939d8e), [`6424c7e`](https://github.com/mastra-ai/mastra/commit/6424c7ec38b6921d66212431db1e0958f441b2a7), [`db94750`](https://github.com/mastra-ai/mastra/commit/db94750a41fd29b43eb1f7ce8e97ba8b9978c91b), [`a66a371`](https://github.com/mastra-ai/mastra/commit/a66a3716b00553d7f01842be9deb34f720b10fab), [`69fc3cd`](https://github.com/mastra-ai/mastra/commit/69fc3cd0fd814901785bdcf49bf536ab1e7fd975)]:
|
|
494
|
-
- @mastra/core@0.16.3
|
|
495
|
-
- @mastra/deployer@0.16.3
|
|
496
|
-
|
|
497
|
-
## 0.12.7-alpha.0
|
|
498
|
-
|
|
499
|
-
### Patch Changes
|
|
500
|
-
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 3604 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @mastra/deployer-vercel
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`906a097`](https://github.com/mastra-ai/mastra/commit/906a0973027f496ebb6a8031721a9d2b6c0802ea), [`c818902`](https://github.com/mastra-ai/mastra/commit/c81890204437500e0c3cbd8d505d56177e850a1f), [`1cf5d2e`](https://github.com/mastra-ai/mastra/commit/1cf5d2ea1b085be23e34fb506c80c80a4e6d9c2b), [`b99ceac`](https://github.com/mastra-ai/mastra/commit/b99ceace2c830dbdef47c8692d56a91954aefea2), [`deea43e`](https://github.com/mastra-ai/mastra/commit/deea43eb1366d03a864c5e597d16a48592b9893f), [`833ae96`](https://github.com/mastra-ai/mastra/commit/833ae96c3e34370e58a1e979571c41f39a720592), [`943772b`](https://github.com/mastra-ai/mastra/commit/943772b4378f625f0f4e19ea2b7c392bd8e71786), [`b5c711b`](https://github.com/mastra-ai/mastra/commit/b5c711b281dd1fb81a399a766bc9f86c55efc13e), [`3efbe5a`](https://github.com/mastra-ai/mastra/commit/3efbe5ae20864c4f3143457f4f3ee7dc2fa5ca76), [`1e49e7a`](https://github.com/mastra-ai/mastra/commit/1e49e7ab5f173582154cb26b29d424de67d09aef), [`751eaab`](https://github.com/mastra-ai/mastra/commit/751eaab4e0d3820a94e4c3d39a2ff2663ded3d91), [`b11b8e4`](https://github.com/mastra-ai/mastra/commit/b11b8e4c34b5595fffb2b6cae004e83262e61a2e), [`69d8156`](https://github.com/mastra-ai/mastra/commit/69d81568bcf062557c24471ce26812446bec465d), [`fcc4157`](https://github.com/mastra-ai/mastra/commit/fcc41572830b5cf245058b2a424f46b33e7b25a5), [`60d9d89`](https://github.com/mastra-ai/mastra/commit/60d9d899e44b35bc43f1bcd967a74e0ce010b1af), [`5c544c8`](https://github.com/mastra-ai/mastra/commit/5c544c8d12b08ab40d64d8f37b3c4215bee95b87), [`771ad96`](https://github.com/mastra-ai/mastra/commit/771ad962441996b5c43549391a3e6a02c6ddedc2), [`2b0936b`](https://github.com/mastra-ai/mastra/commit/2b0936b0c9a43eeed9bef63e614d7e02ee803f7e), [`3b04f30`](https://github.com/mastra-ai/mastra/commit/3b04f3010604f3cdfc8a0674731700ad66471cee), [`97e26de`](https://github.com/mastra-ai/mastra/commit/97e26deaebd9836647a67b96423281d66421ca07), [`ac9ec66`](https://github.com/mastra-ai/mastra/commit/ac9ec6672779b2e6d4344e415481d1a6a7d4911a), [`10523f4`](https://github.com/mastra-ai/mastra/commit/10523f4882d9b874b40ce6e3715f66dbcd4947d2), [`cb72d20`](https://github.com/mastra-ai/mastra/commit/cb72d2069d7339bda8a0e76d4f35615debb07b84), [`42856b1`](https://github.com/mastra-ai/mastra/commit/42856b1c8aeea6371c9ee77ae2f5f5fe34400933), [`66f33ff`](https://github.com/mastra-ai/mastra/commit/66f33ff68620018513e499c394411d1d39b3aa5c), [`ab3c190`](https://github.com/mastra-ai/mastra/commit/ab3c1901980a99910ca9b96a7090c22e24060113), [`d4f06c8`](https://github.com/mastra-ai/mastra/commit/d4f06c85ffa5bb0da38fb82ebf3b040cc6b4ec4e), [`7e00234`](https://github.com/mastra-ai/mastra/commit/7e002343589efc095f854bde70c72538a4bf8868), [`0350626`](https://github.com/mastra-ai/mastra/commit/03506267ec41b67add80d994c0c0fcce93bbc75f), [`bc9fa00`](https://github.com/mastra-ai/mastra/commit/bc9fa00859c5c4a796d53a0a5cae46ab4a3072e4), [`f46a478`](https://github.com/mastra-ai/mastra/commit/f46a4782f595949c696569e891f81c8d26338508), [`90fc0e5`](https://github.com/mastra-ai/mastra/commit/90fc0e5717cb280c2d4acf4f0410b510bb4c0a72), [`f05a3a5`](https://github.com/mastra-ai/mastra/commit/f05a3a5cf2b9a9c2d40c09cb8c762a4b6cd5d565), [`a291da9`](https://github.com/mastra-ai/mastra/commit/a291da9363efd92dafd8775dccb4f2d0511ece7a), [`c5d71da`](https://github.com/mastra-ai/mastra/commit/c5d71da1c680ce5640b1a7f8ca0e024a4ab1cfed), [`07042f9`](https://github.com/mastra-ai/mastra/commit/07042f9f89080f38b8f72713ba1c972d5b1905b8), [`0423442`](https://github.com/mastra-ai/mastra/commit/0423442b7be2dfacba95890bea8f4a810db4d603)]:
|
|
8
|
+
- @mastra/core@1.1.0
|
|
9
|
+
- @mastra/deployer@1.1.0
|
|
10
|
+
|
|
3
11
|
## 1.0.2-alpha.0
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -490,13 +498,5 @@
|
|
|
490
498
|
- @mastra/core@0.16.3-alpha.0
|
|
491
499
|
- @mastra/deployer@0.16.3-alpha.0
|
|
492
500
|
|
|
493
|
-
## 0.11.22
|
|
494
|
-
|
|
495
|
-
### Patch Changes
|
|
496
|
-
|
|
497
|
-
- Updated dependencies [[`61926ef`](https://github.com/mastra-ai/mastra/commit/61926ef40d415b805a63527cffe27a50542e15e5)]:
|
|
498
|
-
- @mastra/core@0.16.2
|
|
499
|
-
- @mastra/deployer@0.16.2
|
|
500
|
-
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 3546 more lines hidden. See full changelog in package directory.
|