@mastra/voice-google 0.14.1 → 0.14.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +6 -4
- package/dist/_types/@internal_voice/dist/_types/@internal_core/dist/base/index.d.ts +1 -1
- package/dist/_types/@internal_voice/dist/_types/@internal_core/dist/index-Biaf3BmX.d.ts +319 -0
- package/dist/_types/@internal_voice/dist/_types/@internal_core/dist/request-context/index.d.ts +46 -1
- package/dist/_types/@internal_voice/dist/voice/composite-voice.d.ts +1 -1
- package/dist/docs/SKILL.md +5 -5
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/integrations-voice-google.md +2 -0
- package/dist/docs/references/{guides-voice-overview.md → reference-voice-overview.md} +7 -5
- package/dist/index.cjs +89 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +89 -5
- package/dist/index.js.map +1 -1
- package/package.json +6 -7
- package/CHANGELOG.md +0 -1943
- package/dist/_types/@internal_voice/dist/_types/@internal_core/dist/index-S1lgaKO7.d.ts +0 -218
package/CHANGELOG.md
DELETED
|
@@ -1,1943 +0,0 @@
|
|
|
1
|
-
# @mastra/voice-google
|
|
2
|
-
|
|
3
|
-
## 0.14.1
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Fixed `GoogleVoice.listen()` failing with `ERR_STREAM_PREMATURE_CLOSE` on Node 22 and newer. Speech-to-text with Application Default Credentials now transcribes again. Fixes [#19206](https://github.com/mastra-ai/mastra/issues/19206). ([#20976](https://github.com/mastra-ai/mastra/pull/20976))
|
|
8
|
-
|
|
9
|
-
## 0.14.1-alpha.0
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- Fixed `GoogleVoice.listen()` failing with `ERR_STREAM_PREMATURE_CLOSE` on Node 22 and newer. Speech-to-text with Application Default Credentials now transcribes again. Fixes [#19206](https://github.com/mastra-ai/mastra/issues/19206). ([#20976](https://github.com/mastra-ai/mastra/pull/20976))
|
|
14
|
-
|
|
15
|
-
## 0.14.0
|
|
16
|
-
|
|
17
|
-
### Minor Changes
|
|
18
|
-
|
|
19
|
-
- Added support for SSML, custom pronunciations, multi-speaker markup, and Gemini-TTS model selection in `GoogleVoice.speak()`. Existing text-only usage is unchanged. ([#19425](https://github.com/mastra-ai/mastra/pull/19425))
|
|
20
|
-
|
|
21
|
-
**New `options.input` fields:** pass `ssml`, `markup`, `customPronunciations`, `multiSpeakerMarkup`, or `prompt` (for Gemini-TTS style steering) directly to the Google Cloud TTS API.
|
|
22
|
-
|
|
23
|
-
**New `options.voice` fields:** set `modelName` (e.g. `gemini-2.5-flash-preview-tts`) or `multiSpeakerVoiceConfig` alongside the default `name` and `languageCode`.
|
|
24
|
-
|
|
25
|
-
```ts
|
|
26
|
-
// SSML with custom pronunciations
|
|
27
|
-
await voice.speak('Give Metacam to the patient.', {
|
|
28
|
-
input: {
|
|
29
|
-
ssml: '<speak>Give <phoneme alphabet="ipa" ph="mɛtəˈkæm">Metacam</phoneme>.</speak>',
|
|
30
|
-
},
|
|
31
|
-
});
|
|
32
|
-
|
|
33
|
-
// Gemini-TTS with prompt-driven styling
|
|
34
|
-
await voice.speak('Hello!', {
|
|
35
|
-
voice: { name: 'Kore', modelName: 'gemini-2.5-flash-preview-tts' },
|
|
36
|
-
input: { prompt: 'Warm, calm tone.' },
|
|
37
|
-
});
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
- Added Cloud Speech-to-Text v2 support to `GoogleVoice.listen()`. Pass `{ v2: true }` in options to use the v2 API, which supports additional audio formats like AAC-in-MP4 (iOS Safari) via `autoDecodingConfig` or `explicitDecodingConfig`. The v1 path remains the default — no breaking changes. ([#19422](https://github.com/mastra-ai/mastra/pull/19422))
|
|
41
|
-
|
|
42
|
-
## 0.14.0-alpha.0
|
|
43
|
-
|
|
44
|
-
### Minor Changes
|
|
45
|
-
|
|
46
|
-
- Added support for SSML, custom pronunciations, multi-speaker markup, and Gemini-TTS model selection in `GoogleVoice.speak()`. Existing text-only usage is unchanged. ([#19425](https://github.com/mastra-ai/mastra/pull/19425))
|
|
47
|
-
|
|
48
|
-
**New `options.input` fields:** pass `ssml`, `markup`, `customPronunciations`, `multiSpeakerMarkup`, or `prompt` (for Gemini-TTS style steering) directly to the Google Cloud TTS API.
|
|
49
|
-
|
|
50
|
-
**New `options.voice` fields:** set `modelName` (e.g. `gemini-2.5-flash-preview-tts`) or `multiSpeakerVoiceConfig` alongside the default `name` and `languageCode`.
|
|
51
|
-
|
|
52
|
-
```ts
|
|
53
|
-
// SSML with custom pronunciations
|
|
54
|
-
await voice.speak('Give Metacam to the patient.', {
|
|
55
|
-
input: {
|
|
56
|
-
ssml: '<speak>Give <phoneme alphabet="ipa" ph="mɛtəˈkæm">Metacam</phoneme>.</speak>',
|
|
57
|
-
},
|
|
58
|
-
});
|
|
59
|
-
|
|
60
|
-
// Gemini-TTS with prompt-driven styling
|
|
61
|
-
await voice.speak('Hello!', {
|
|
62
|
-
voice: { name: 'Kore', modelName: 'gemini-2.5-flash-preview-tts' },
|
|
63
|
-
input: { prompt: 'Warm, calm tone.' },
|
|
64
|
-
});
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
- Added Cloud Speech-to-Text v2 support to `GoogleVoice.listen()`. Pass `{ v2: true }` in options to use the v2 API, which supports additional audio formats like AAC-in-MP4 (iOS Safari) via `autoDecodingConfig` or `explicitDecodingConfig`. The v1 path remains the default — no breaking changes. ([#19422](https://github.com/mastra-ai/mastra/pull/19422))
|
|
68
|
-
|
|
69
|
-
## 0.13.0
|
|
70
|
-
|
|
71
|
-
### Minor Changes
|
|
72
|
-
|
|
73
|
-
- Random bump ([#18178](https://github.com/mastra-ai/mastra/pull/18178))
|
|
74
|
-
|
|
75
|
-
## 0.13.0-alpha.0
|
|
76
|
-
|
|
77
|
-
### Minor Changes
|
|
78
|
-
|
|
79
|
-
- Random bump ([#18178](https://github.com/mastra-ai/mastra/pull/18178))
|
|
80
|
-
|
|
81
|
-
## 0.12.3
|
|
82
|
-
|
|
83
|
-
### Patch Changes
|
|
84
|
-
|
|
85
|
-
- Security remediation for the 2026-06-17 "easy-day-js" supply-chain incident. Patch bump to publish clean versions and move the `latest` dist-tag forward, superseding the compromised versions that declared the malicious `easy-day-js` dependency. ([#18056](https://github.com/mastra-ai/mastra/pull/18056))
|
|
86
|
-
|
|
87
|
-
## 0.12.3-alpha.0
|
|
88
|
-
|
|
89
|
-
### Patch Changes
|
|
90
|
-
|
|
91
|
-
- Security remediation for the 2026-06-17 "easy-day-js" supply-chain incident. Patch bump to publish clean versions and move the `latest` dist-tag forward, superseding the compromised versions that declared the malicious `easy-day-js` dependency. ([#18056](https://github.com/mastra-ai/mastra/pull/18056))
|
|
92
|
-
|
|
93
|
-
## 0.12.2
|
|
94
|
-
|
|
95
|
-
### Patch Changes
|
|
96
|
-
|
|
97
|
-
- dependencies updates: ([#17518](https://github.com/mastra-ai/mastra/pull/17518))
|
|
98
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.4.1` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.4.1) (from `^6.4.0`, in `dependencies`)
|
|
99
|
-
|
|
100
|
-
## 0.12.2-alpha.0
|
|
101
|
-
|
|
102
|
-
### Patch Changes
|
|
103
|
-
|
|
104
|
-
- dependencies updates: ([#17518](https://github.com/mastra-ai/mastra/pull/17518))
|
|
105
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.4.1` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.4.1) (from `^6.4.0`, in `dependencies`)
|
|
106
|
-
|
|
107
|
-
## 0.12.1
|
|
108
|
-
|
|
109
|
-
### Patch Changes
|
|
110
|
-
|
|
111
|
-
- Moved shared voice primitives and route metadata into the new `@internal/voice` package so voice providers no longer depend on `@mastra/core` and server voice routes share the same route definitions. ([#16725](https://github.com/mastra-ai/mastra/pull/16725))
|
|
112
|
-
|
|
113
|
-
`@mastra/core/voice` continues to re-export the voice APIs for backwards compatibility.
|
|
114
|
-
|
|
115
|
-
## 0.12.1-alpha.0
|
|
116
|
-
|
|
117
|
-
### Patch Changes
|
|
118
|
-
|
|
119
|
-
- Moved shared voice primitives and route metadata into the new `@internal/voice` package so voice providers no longer depend on `@mastra/core` and server voice routes share the same route definitions. ([#16725](https://github.com/mastra-ai/mastra/pull/16725))
|
|
120
|
-
|
|
121
|
-
`@mastra/core/voice` continues to re-export the voice APIs for backwards compatibility.
|
|
122
|
-
|
|
123
|
-
## 0.12.0
|
|
124
|
-
|
|
125
|
-
### Minor Changes
|
|
126
|
-
|
|
127
|
-
- Add Vertex AI support to GoogleVoice provider ([#10661](https://github.com/mastra-ai/mastra/pull/10661))
|
|
128
|
-
- Add `vertexAI`, `project`, and `location` configuration options
|
|
129
|
-
- Support Vertex AI authentication via project ID and service accounts
|
|
130
|
-
- Add helper methods: `isUsingVertexAI()`, `getProject()`, `getLocation()`
|
|
131
|
-
- Support `GOOGLE_CLOUD_PROJECT` and `GOOGLE_CLOUD_LOCATION` environment variables
|
|
132
|
-
- Update README with Vertex AI usage examples
|
|
133
|
-
|
|
134
|
-
This makes `@mastra/voice-google` consistent with `@mastra/voice-google-gemini-live` and enables enterprise deployments using Google Cloud project-based authentication instead of API keys.
|
|
135
|
-
|
|
136
|
-
- Update peer dependencies to match core package version bump (1.0.0) ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
|
|
137
|
-
|
|
138
|
-
- Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
|
|
139
|
-
|
|
140
|
-
- Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
|
|
141
|
-
|
|
142
|
-
### Patch Changes
|
|
143
|
-
|
|
144
|
-
- Add embedded documentation support for Mastra packages ([#11472](https://github.com/mastra-ai/mastra/pull/11472))
|
|
145
|
-
|
|
146
|
-
Mastra packages now include embedded documentation in the published npm package under `dist/docs/`. This enables coding agents and AI assistants to understand and use the framework by reading documentation directly from `node_modules`.
|
|
147
|
-
|
|
148
|
-
Each package includes:
|
|
149
|
-
- **SKILL.md** - Entry point explaining the package's purpose and capabilities
|
|
150
|
-
- **SOURCE_MAP.json** - Machine-readable index mapping exports to types and implementation files
|
|
151
|
-
- **Topic folders** - Conceptual documentation organized by feature area
|
|
152
|
-
|
|
153
|
-
Documentation is driven by the `packages` frontmatter field in MDX files, which maps docs to their corresponding packages. CI validation ensures all docs include this field.
|
|
154
|
-
|
|
155
|
-
- Updated dependencies [[`ac0d2f4`](https://github.com/mastra-ai/mastra/commit/ac0d2f4ff8831f72c1c66c2be809706d17f65789), [`2319326`](https://github.com/mastra-ai/mastra/commit/2319326f8c64e503a09bbcf14be2dd65405445e0), [`d2d3e22`](https://github.com/mastra-ai/mastra/commit/d2d3e22a419ee243f8812a84e3453dd44365ecb0), [`08766f1`](https://github.com/mastra-ai/mastra/commit/08766f15e13ac0692fde2a8bd366c2e16e4321df), [`72df8ae`](https://github.com/mastra-ai/mastra/commit/72df8ae595584cdd7747d5c39ffaca45e4507227), [`ebae12a`](https://github.com/mastra-ai/mastra/commit/ebae12a2dd0212e75478981053b148a2c246962d), [`c8417b4`](https://github.com/mastra-ai/mastra/commit/c8417b41d9f3486854dc7842d977fbe5e2166264), [`bc72b52`](https://github.com/mastra-ai/mastra/commit/bc72b529ee4478fe89ecd85a8be47ce0127b82a0), [`39c9743`](https://github.com/mastra-ai/mastra/commit/39c97432d084294f8ba85fbf3ef28098ff21459e), [`1dbd8c7`](https://github.com/mastra-ai/mastra/commit/1dbd8c729fb6536ec52f00064d76b80253d346e9), [`c61a0a5`](https://github.com/mastra-ai/mastra/commit/c61a0a5de4904c88fd8b3718bc26d1be1c2ec6e7), [`05b8bee`](https://github.com/mastra-ai/mastra/commit/05b8bee9e50e6c2a4a2bf210eca25ee212ca24fa), [`3076c67`](https://github.com/mastra-ai/mastra/commit/3076c6778b18988ae7d5c4c5c466366974b2d63f), [`3d93a15`](https://github.com/mastra-ai/mastra/commit/3d93a15796b158c617461c8b98bede476ebb43e2), [`9198899`](https://github.com/mastra-ai/mastra/commit/91988995c427b185c33714b7f3be955367911324), [`ed3e3dd`](https://github.com/mastra-ai/mastra/commit/ed3e3ddec69d564fe2b125e083437f76331f1283), [`c59e13c`](https://github.com/mastra-ai/mastra/commit/c59e13c7688284bd96b2baee3e314335003548de), [`c042bd0`](https://github.com/mastra-ai/mastra/commit/c042bd0b743e0e86199d0cb83344ca7690e34a9c), [`f743dbb`](https://github.com/mastra-ai/mastra/commit/f743dbb8b40d1627b5c10c0e6fc154f4ebb6e394), [`21a15de`](https://github.com/mastra-ai/mastra/commit/21a15de369fe82aac26bb642ed7be73505475e8b), [`e54953e`](https://github.com/mastra-ai/mastra/commit/e54953ed8ce1b28c0d62a19950163039af7834b4), [`ae8baf7`](https://github.com/mastra-ai/mastra/commit/ae8baf7d8adcb0ff9dac11880400452bc49b33ff), [`fec5129`](https://github.com/mastra-ai/mastra/commit/fec5129de7fc64423ea03661a56cef31dc747a0d), [`940a2b2`](https://github.com/mastra-ai/mastra/commit/940a2b27480626ed7e74f55806dcd2181c1dd0c2), [`1a0d3fc`](https://github.com/mastra-ai/mastra/commit/1a0d3fc811482c9c376cdf79ee615c23bae9b2d6), [`85d7ee1`](https://github.com/mastra-ai/mastra/commit/85d7ee18ff4e14d625a8a30ec6656bb49804989b), [`c6c1092`](https://github.com/mastra-ai/mastra/commit/c6c1092f8fbf76109303f69e000e96fd1960c4ce), [`0491e7c`](https://github.com/mastra-ai/mastra/commit/0491e7c9b714cb0ba22187ee062147ec2dd7c712), [`f6f4903`](https://github.com/mastra-ai/mastra/commit/f6f4903397314f73362061dc5a3e8e7c61ea34aa), [`d5ed981`](https://github.com/mastra-ai/mastra/commit/d5ed981c8701c1b8a27a5f35a9a2f7d9244e695f), [`85a628b`](https://github.com/mastra-ai/mastra/commit/85a628b1224a8f64cd82ea7f033774bf22df7a7e), [`0e8ed46`](https://github.com/mastra-ai/mastra/commit/0e8ed467c54d6901a6a365f270ec15d6faadb36c), [`33a4d2e`](https://github.com/mastra-ai/mastra/commit/33a4d2e4ed8af51f69256232f00c34d6b6b51d48), [`9650cce`](https://github.com/mastra-ai/mastra/commit/9650cce52a1d917ff9114653398e2a0f5c3ba808), [`6c049d9`](https://github.com/mastra-ai/mastra/commit/6c049d94063fdcbd5b81c4912a2bf82a92c9cc0b), [`910db9e`](https://github.com/mastra-ai/mastra/commit/910db9e0312888495eb5617b567f247d03303814), [`2f897df`](https://github.com/mastra-ai/mastra/commit/2f897df208508f46f51b7625e5dd20c37f93e0e3), [`d629361`](https://github.com/mastra-ai/mastra/commit/d629361a60f6565b5bfb11976fdaf7308af858e2), [`4f94ed8`](https://github.com/mastra-ai/mastra/commit/4f94ed8177abfde3ec536e3574883e075423350c), [`feb7ee4`](https://github.com/mastra-ai/mastra/commit/feb7ee4d09a75edb46c6669a3beaceec78811747), [`4aaa844`](https://github.com/mastra-ai/mastra/commit/4aaa844a4f19d054490f43638a990cc57bda8d2f), [`c237233`](https://github.com/mastra-ai/mastra/commit/c23723399ccedf7f5744b3f40997b79246bfbe64), [`38380b6`](https://github.com/mastra-ai/mastra/commit/38380b60fca905824bdf6b43df307a58efb1aa15), [`6833c69`](https://github.com/mastra-ai/mastra/commit/6833c69607418d257750bbcdd84638993d343539), [`932d63d`](https://github.com/mastra-ai/mastra/commit/932d63dd51be9c8bf1e00e3671fe65606c6fb9cd), [`4a1a6cb`](https://github.com/mastra-ai/mastra/commit/4a1a6cb3facad54b2bb6780b00ce91d6de1edc08), [`08c31c1`](https://github.com/mastra-ai/mastra/commit/08c31c188ebccd598acaf55e888b6397d01f7eae), [`919a22b`](https://github.com/mastra-ai/mastra/commit/919a22b25876f9ed5891efe5facbe682c30ff497), [`15f9e21`](https://github.com/mastra-ai/mastra/commit/15f9e216177201ea6e3f6d0bfb063fcc0953444f), [`3443770`](https://github.com/mastra-ai/mastra/commit/3443770662df8eb24c9df3589b2792d78cfcb811), [`69136e7`](https://github.com/mastra-ai/mastra/commit/69136e748e32f57297728a4e0f9a75988462f1a7), [`b0e2ea5`](https://github.com/mastra-ai/mastra/commit/b0e2ea5b52c40fae438b9e2f7baee6f0f89c5442), [`f0a07e0`](https://github.com/mastra-ai/mastra/commit/f0a07e0111b3307c5fabfa4094c5c2cfb734fbe6), [`ff94dea`](https://github.com/mastra-ai/mastra/commit/ff94dea935f4e34545c63bcb6c29804732698809), [`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`b760b73`](https://github.com/mastra-ai/mastra/commit/b760b731aca7c8a3f041f61d57a7f125ae9cb215), [`aaa40e7`](https://github.com/mastra-ai/mastra/commit/aaa40e788628b319baa8e889407d11ad626547fa), [`1521d71`](https://github.com/mastra-ai/mastra/commit/1521d716e5daedc74690c983fbd961123c56756b), [`449aed2`](https://github.com/mastra-ai/mastra/commit/449aed2ba9d507b75bf93d427646ea94f734dfd1), [`eb648a2`](https://github.com/mastra-ai/mastra/commit/eb648a2cc1728f7678768dd70cd77619b448dab9), [`695a621`](https://github.com/mastra-ai/mastra/commit/695a621528bdabeb87f83c2277cf2bb084c7f2b4), [`9e1911d`](https://github.com/mastra-ai/mastra/commit/9e1911db2b4db85e0e768c3f15e0d61e319869f6), [`ac3cc23`](https://github.com/mastra-ai/mastra/commit/ac3cc2397d1966bc0fc2736a223abc449d3c7719), [`c456e01`](https://github.com/mastra-ai/mastra/commit/c456e0149e3c176afcefdbd9bb1d2c5917723725), [`ebac155`](https://github.com/mastra-ai/mastra/commit/ebac15564a590117db7078233f927a7e28a85106), [`a86f4df`](https://github.com/mastra-ai/mastra/commit/a86f4df0407311e0d2ea49b9a541f0938810d6a9), [`dd1c38d`](https://github.com/mastra-ai/mastra/commit/dd1c38d1b75f1b695c27b40d8d9d6ed00d5e0f6f), [`5948e6a`](https://github.com/mastra-ai/mastra/commit/5948e6a5146c83666ba3f294b2be576c82a513fb), [`5b2ff46`](https://github.com/mastra-ai/mastra/commit/5b2ff4651df70c146523a7fca773f8eb0a2272f8), [`edb07e4`](https://github.com/mastra-ai/mastra/commit/edb07e49283e0c28bd094a60e03439bf6ecf0221), [`e0941c3`](https://github.com/mastra-ai/mastra/commit/e0941c3d7fc75695d5d258e7008fd5d6e650800c), [`db41688`](https://github.com/mastra-ai/mastra/commit/db4168806d007417e2e60b4f68656dca4e5f40c9), [`2b459f4`](https://github.com/mastra-ai/mastra/commit/2b459f466fd91688eeb2a44801dc23f7f8a887ab), [`798d0c7`](https://github.com/mastra-ai/mastra/commit/798d0c740232653b1d754870e6b43a55c364ffe2), [`0c0580a`](https://github.com/mastra-ai/mastra/commit/0c0580a42f697cd2a7d5973f25bfe7da9055038a), [`8940859`](https://github.com/mastra-ai/mastra/commit/89408593658199b4ad67f7b65e888f344e64a442), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`ab035c2`](https://github.com/mastra-ai/mastra/commit/ab035c2ef6d8cc7bb25f06f1a38508bd9e6f126b), [`e629310`](https://github.com/mastra-ai/mastra/commit/e629310f1a73fa236d49ec7a1d1cceb6229dc7cc), [`0131105`](https://github.com/mastra-ai/mastra/commit/0131105532e83bdcbb73352fc7d0879eebf140dc), [`5ca599d`](https://github.com/mastra-ai/mastra/commit/5ca599d0bb59a1595f19f58473fcd67cc71cef58), [`09e4bae`](https://github.com/mastra-ai/mastra/commit/09e4bae18dd5357d2ae078a4a95a2af32168ab08), [`47b1c16`](https://github.com/mastra-ai/mastra/commit/47b1c16a01c7ffb6765fe1e499b49092f8b7eba3), [`4c6b492`](https://github.com/mastra-ai/mastra/commit/4c6b492c4dd591c6a592520c1f6855d6e936d71f), [`bff1145`](https://github.com/mastra-ai/mastra/commit/bff114556b3cbadad9b2768488708f8ad0e91475), [`dff01d8`](https://github.com/mastra-ai/mastra/commit/dff01d81ce1f4e4087cfac20fa868e6db138dd14), [`9d5059e`](https://github.com/mastra-ai/mastra/commit/9d5059eae810829935fb08e81a9bb7ecd5b144a7), [`ffe84d5`](https://github.com/mastra-ai/mastra/commit/ffe84d54f3b0f85167fe977efd027dba027eb998), [`5c8ca24`](https://github.com/mastra-ai/mastra/commit/5c8ca247094e0cc2cdbd7137822fb47241f86e77), [`9d819d5`](https://github.com/mastra-ai/mastra/commit/9d819d54b61481639f4008e4694791bddf187edd), [`24b76d8`](https://github.com/mastra-ai/mastra/commit/24b76d8e17656269c8ed09a0c038adb9cc2ae95a), [`31d13d5`](https://github.com/mastra-ai/mastra/commit/31d13d5fdc2e2380e2e3ee3ec9fb29d2a00f265d), [`ef756c6`](https://github.com/mastra-ai/mastra/commit/ef756c65f82d16531c43f49a27290a416611e526), [`e191844`](https://github.com/mastra-ai/mastra/commit/e1918444ca3f80e82feef1dad506cd4ec6e2875f), [`243a823`](https://github.com/mastra-ai/mastra/commit/243a8239c5906f5c94e4f78b54676793f7510ae3), [`b00ccd3`](https://github.com/mastra-ai/mastra/commit/b00ccd325ebd5d9e37e34dd0a105caae67eb568f), [`28f5f89`](https://github.com/mastra-ai/mastra/commit/28f5f89705f2409921e3c45178796c0e0d0bbb64), [`22553f1`](https://github.com/mastra-ai/mastra/commit/22553f11c63ee5e966a9c034a349822249584691), [`4c62166`](https://github.com/mastra-ai/mastra/commit/4c621669f4a29b1f443eca3ba70b814afa286266), [`e601b27`](https://github.com/mastra-ai/mastra/commit/e601b272c70f3a5ecca610373aa6223012704892), [`7d56d92`](https://github.com/mastra-ai/mastra/commit/7d56d9213886e8353956d7d40df10045fd12b299), [`81dc110`](https://github.com/mastra-ai/mastra/commit/81dc11008d147cf5bdc8996ead1aa61dbdebb6fc), [`7bcbf10`](https://github.com/mastra-ai/mastra/commit/7bcbf10133516e03df964b941f9a34e9e4ab4177), [`029540c`](https://github.com/mastra-ai/mastra/commit/029540ca1e582fc2dd8d288ecd4a9b0f31a954ef), [`7237163`](https://github.com/mastra-ai/mastra/commit/72371635dbf96a87df4b073cc48fc655afbdce3d), [`2500740`](https://github.com/mastra-ai/mastra/commit/2500740ea23da067d6e50ec71c625ab3ce275e64), [`4353600`](https://github.com/mastra-ai/mastra/commit/43536005a65988a8eede236f69122e7f5a284ba2), [`653e65a`](https://github.com/mastra-ai/mastra/commit/653e65ae1f9502c2958a32f47a5a2df11e612a92), [`873ecbb`](https://github.com/mastra-ai/mastra/commit/873ecbb517586aa17d2f1e99283755b3ebb2863f), [`6986fb0`](https://github.com/mastra-ai/mastra/commit/6986fb064f5db6ecc24aa655e1d26529087b43b3), [`3d3366f`](https://github.com/mastra-ai/mastra/commit/3d3366f31683e7137d126a3a57174a222c5801fb), [`5a4953f`](https://github.com/mastra-ai/mastra/commit/5a4953f7d25bb15ca31ed16038092a39cb3f98b3), [`4f9bbe5`](https://github.com/mastra-ai/mastra/commit/4f9bbe5968f42c86f4930b8193de3c3c17e5bd36), [`efe406a`](https://github.com/mastra-ai/mastra/commit/efe406a1353c24993280ebc2ed61dd9f65b84b26), [`eb9e522`](https://github.com/mastra-ai/mastra/commit/eb9e522ce3070a405e5b949b7bf5609ca51d7fe2), [`fd3d338`](https://github.com/mastra-ai/mastra/commit/fd3d338a2c362174ed5b383f1f011ad9fb0302aa), [`20e6f19`](https://github.com/mastra-ai/mastra/commit/20e6f1971d51d3ff6dd7accad8aaaae826d540ed), [`053e979`](https://github.com/mastra-ai/mastra/commit/053e9793b28e970086b0507f7f3b76ea32c1e838), [`02e51fe`](https://github.com/mastra-ai/mastra/commit/02e51feddb3d4155cfbcc42624fd0d0970d032c0), [`71c8d6c`](https://github.com/mastra-ai/mastra/commit/71c8d6c161253207b2b9588bdadb7eed604f7253), [`7aedb74`](https://github.com/mastra-ai/mastra/commit/7aedb74883adf66af38e270e4068fd42e7a37036), [`3bdfa75`](https://github.com/mastra-ai/mastra/commit/3bdfa7507a91db66f176ba8221aa28dd546e464a), [`119e5c6`](https://github.com/mastra-ai/mastra/commit/119e5c65008f3e5cfca954eefc2eb85e3bf40da4), [`c6fd6fe`](https://github.com/mastra-ai/mastra/commit/c6fd6fedd09e9cf8004b03a80925f5e94826ad7e), [`8f02d80`](https://github.com/mastra-ai/mastra/commit/8f02d800777397e4b45d7f1ad041988a8b0c6630), [`fdac646`](https://github.com/mastra-ai/mastra/commit/fdac646033a0930a1a4e00d13aa64c40bb7f1e02), [`6179a9b`](https://github.com/mastra-ai/mastra/commit/6179a9ba36ffac326de3cc3c43cdc8028d37c251), [`8f3fa3a`](https://github.com/mastra-ai/mastra/commit/8f3fa3a652bb77da092f913ec51ae46e3a7e27dc), [`d07b568`](https://github.com/mastra-ai/mastra/commit/d07b5687819ea8cb1dffa776d0c1765faf4aa1ae), [`e770de9`](https://github.com/mastra-ai/mastra/commit/e770de941a287a49b1964d44db5a5763d19890a6), [`e26dc9c`](https://github.com/mastra-ai/mastra/commit/e26dc9c3ccfec54ae3dc3e2b2589f741f9ae60a6), [`55edf73`](https://github.com/mastra-ai/mastra/commit/55edf7302149d6c964fbb7908b43babfc2b52145), [`c30400a`](https://github.com/mastra-ai/mastra/commit/c30400a49b994b1b97256fe785eb6c906fc2b232), [`486352b`](https://github.com/mastra-ai/mastra/commit/486352b66c746602b68a95839f830de14c7fb8c0), [`00f4921`](https://github.com/mastra-ai/mastra/commit/00f4921dd2c91a1e5446799599ef7116a8214a1a), [`1a46a56`](https://github.com/mastra-ai/mastra/commit/1a46a566f45a3fcbadc1cf36bf86d351f264bfa3), [`ca8041c`](https://github.com/mastra-ai/mastra/commit/ca8041cce0379fda22ed293a565bcb5b6ddca68a), [`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318), [`7051bf3`](https://github.com/mastra-ai/mastra/commit/7051bf38b3b122a069008f861f7bfc004a6d9f6e), [`a8f1494`](https://github.com/mastra-ai/mastra/commit/a8f1494f4bbdc2770bcf327d4c7d869e332183f1), [`52e2716`](https://github.com/mastra-ai/mastra/commit/52e2716b42df6eff443de72360ae83e86ec23993), [`d7aad50`](https://github.com/mastra-ai/mastra/commit/d7aad501ce61646b76b4b511e558ac4eea9884d0), [`4f0b3c6`](https://github.com/mastra-ai/mastra/commit/4f0b3c66f196c06448487f680ccbb614d281e2f7), [`27b4040`](https://github.com/mastra-ai/mastra/commit/27b4040bfa1a95d92546f420a02a626b1419a1d6), [`c61fac3`](https://github.com/mastra-ai/mastra/commit/c61fac3add96f0dcce0208c07415279e2537eb62), [`6f14f70`](https://github.com/mastra-ai/mastra/commit/6f14f706ccaaf81b69544b6c1b75ab66a41e5317), [`69e0a87`](https://github.com/mastra-ai/mastra/commit/69e0a878896a2da9494945d86e056a5f8f05b851), [`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), [`3cf540b`](https://github.com/mastra-ai/mastra/commit/3cf540b9fbfea8f4fc8d3a2319a4e6c0b0cbfd52), [`352a5d6`](https://github.com/mastra-ai/mastra/commit/352a5d625cfe09849b21e8f52a24c9f0366759d5), [`1c6ce51`](https://github.com/mastra-ai/mastra/commit/1c6ce51f875915ab57fd36873623013699a2a65d), [`74c4f22`](https://github.com/mastra-ai/mastra/commit/74c4f22ed4c71e72598eacc346ba95cdbc00294f), [`3a76a80`](https://github.com/mastra-ai/mastra/commit/3a76a80284cb71a0faa975abb3d4b2a9631e60cd), [`898a972`](https://github.com/mastra-ai/mastra/commit/898a9727d286c2510d6b702dfd367e6aaf5c6b0f), [`0793497`](https://github.com/mastra-ai/mastra/commit/079349753620c40246ffd673e3f9d7d9820beff3), [`09e4bae`](https://github.com/mastra-ai/mastra/commit/09e4bae18dd5357d2ae078a4a95a2af32168ab08), [`026b848`](https://github.com/mastra-ai/mastra/commit/026b8483fbf5b6d977be8f7e6aac8d15c75558ac), [`2c212e7`](https://github.com/mastra-ai/mastra/commit/2c212e704c90e2db83d4109e62c03f0f6ebd2667), [`a97003a`](https://github.com/mastra-ai/mastra/commit/a97003aa1cf2f4022a41912324a1e77263b326b8), [`f9a2509`](https://github.com/mastra-ai/mastra/commit/f9a25093ea72d210a5e52cfcb3bcc8b5e02dc25c), [`66741d1`](https://github.com/mastra-ai/mastra/commit/66741d1a99c4f42cf23a16109939e8348ac6852e), [`ccc141e`](https://github.com/mastra-ai/mastra/commit/ccc141ed27da0abc3a3fc28e9e5128152e8e37f4), [`27c0009`](https://github.com/mastra-ai/mastra/commit/27c0009777a6073d7631b0eb7b481d94e165b5ca), [`01f8878`](https://github.com/mastra-ai/mastra/commit/01f88783de25e4de048c1c8aace43e26373c6ea5), [`dee388d`](https://github.com/mastra-ai/mastra/commit/dee388dde02f2e63c53385ae69252a47ab6825cc), [`610a70b`](https://github.com/mastra-ai/mastra/commit/610a70bdad282079f0c630e0d7bb284578f20151), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`b7e17d3`](https://github.com/mastra-ai/mastra/commit/b7e17d3f5390bb5a71efc112204413656fcdc18d), [`4c77209`](https://github.com/mastra-ai/mastra/commit/4c77209e6c11678808b365d545845918c40045c8), [`a854ede`](https://github.com/mastra-ai/mastra/commit/a854ede62bf5ac0945a624ac48913dd69c73aabf), [`fe3b897`](https://github.com/mastra-ai/mastra/commit/fe3b897c2ccbcd2b10e81b099438c7337feddf89), [`c576fc0`](https://github.com/mastra-ai/mastra/commit/c576fc0b100b2085afded91a37c97a0ea0ec09c7), [`3defc80`](https://github.com/mastra-ai/mastra/commit/3defc80cf2b88a1b7fc1cc4ddcb91e982a614609), [`00123ba`](https://github.com/mastra-ai/mastra/commit/00123ba96dc9e5cd0b110420ebdba56d8f237b25), [`16153fe`](https://github.com/mastra-ai/mastra/commit/16153fe7eb13c99401f48e6ca32707c965ee28b9), [`9f4a683`](https://github.com/mastra-ai/mastra/commit/9f4a6833e88b52574665c028fd5508ad5c2f6004), [`bc94344`](https://github.com/mastra-ai/mastra/commit/bc943444a1342d8a662151b7bce1df7dae32f59c), [`4ca4306`](https://github.com/mastra-ai/mastra/commit/4ca430614daa5fa04730205a302a43bf4accfe9f), [`cccf9c8`](https://github.com/mastra-ai/mastra/commit/cccf9c8b2d2dfc1a5e63919395b83d78c89682a0), [`74e504a`](https://github.com/mastra-ai/mastra/commit/74e504a3b584eafd2f198001c6a113bbec589fd3), [`29c4309`](https://github.com/mastra-ai/mastra/commit/29c4309f818b24304c041bcb4a8f19b5f13f6b62), [`16785ce`](https://github.com/mastra-ai/mastra/commit/16785ced928f6f22638f4488cf8a125d99211799), [`57d157f`](https://github.com/mastra-ai/mastra/commit/57d157f0b163a95c3e6c9eae31bdb11d1bfc64f9), [`61a5705`](https://github.com/mastra-ai/mastra/commit/61a570551278b6743e64243b3ce7d73de915ca8a), [`903f67d`](https://github.com/mastra-ai/mastra/commit/903f67d184504a273893818c02b961f5423a79ad), [`3f3fc30`](https://github.com/mastra-ai/mastra/commit/3f3fc3096f24c4a26cffeecfe73085928f72aa63), [`d827d08`](https://github.com/mastra-ai/mastra/commit/d827d0808ffe1f3553a84e975806cc989b9735dd), [`e33fdbd`](https://github.com/mastra-ai/mastra/commit/e33fdbd07b33920d81e823122331b0c0bee0bb59), [`4524734`](https://github.com/mastra-ai/mastra/commit/45247343e384717a7c8404296275c56201d6470f), [`7a010c5`](https://github.com/mastra-ai/mastra/commit/7a010c56b846a313a49ae42fccd3d8de2b9f292d), [`2a90c55`](https://github.com/mastra-ai/mastra/commit/2a90c55a86a9210697d5adaab5ee94584b079adc), [`2a53598`](https://github.com/mastra-ai/mastra/commit/2a53598c6d8cfeb904a7fc74e57e526d751c8fa6), [`81b6a8f`](https://github.com/mastra-ai/mastra/commit/81b6a8ff79f49a7549d15d66624ac1a0b8f5f971), [`8538a0d`](https://github.com/mastra-ai/mastra/commit/8538a0d232619bf55dad7ddc2a8b0ca77c679a87), [`d90ea65`](https://github.com/mastra-ai/mastra/commit/d90ea6536f7aa51c6545a4e9215b55858e98e16d), [`db70a48`](https://github.com/mastra-ai/mastra/commit/db70a48aeeeeb8e5f92007e8ede52c364ce15287), [`261473a`](https://github.com/mastra-ai/mastra/commit/261473ac637e633064a22076671e2e02b002214d), [`eb09742`](https://github.com/mastra-ai/mastra/commit/eb09742197f66c4c38154c3beec78313e69760b2), [`de8239b`](https://github.com/mastra-ai/mastra/commit/de8239bdcb1d8c0cfa06da21f1569912a66bbc8a), [`e4d366a`](https://github.com/mastra-ai/mastra/commit/e4d366aeb500371dd4210d6aa8361a4c21d87034), [`23c10a1`](https://github.com/mastra-ai/mastra/commit/23c10a1efdd9a693c405511ab2dc8a1236603162), [`b5e6cd7`](https://github.com/mastra-ai/mastra/commit/b5e6cd77fc8c8e64e0494c1d06cee3d84e795d1e), [`d171e55`](https://github.com/mastra-ai/mastra/commit/d171e559ead9f52ec728d424844c8f7b164c4510), [`f0fdc14`](https://github.com/mastra-ai/mastra/commit/f0fdc14ee233d619266b3d2bbdeea7d25cfc6d13), [`a4f010b`](https://github.com/mastra-ai/mastra/commit/a4f010b22e4355a5fdee70a1fe0f6e4a692cc29e), [`c7cd3c7`](https://github.com/mastra-ai/mastra/commit/c7cd3c7a187d7aaf79e2ca139de328bf609a14b4), [`db18bc9`](https://github.com/mastra-ai/mastra/commit/db18bc9c3825e2c1a0ad9a183cc9935f6691bfa1), [`96d35f6`](https://github.com/mastra-ai/mastra/commit/96d35f61376bc2b1bf148648a2c1985bd51bef55), [`68ec97d`](https://github.com/mastra-ai/mastra/commit/68ec97d4c07c6393fcf95c2481fc5d73da99f8c8), [`8dc7f55`](https://github.com/mastra-ai/mastra/commit/8dc7f55900395771da851dc7d78d53ae84fe34ec), [`cfabdd4`](https://github.com/mastra-ai/mastra/commit/cfabdd4aae7a726b706942d6836eeca110fb6267), [`9b37b56`](https://github.com/mastra-ai/mastra/commit/9b37b565e1f2a76c24f728945cc740c2b09be9da), [`01b20fe`](https://github.com/mastra-ai/mastra/commit/01b20fefb7c67c2b7d79417598ef4e60256d1225), [`dd4f34c`](https://github.com/mastra-ai/mastra/commit/dd4f34c78cbae24063463475b0619575c415f9b8), [`8379099`](https://github.com/mastra-ai/mastra/commit/8379099fc467af6bef54dd7f80c9bd75bf8bbddf), [`0dbf199`](https://github.com/mastra-ai/mastra/commit/0dbf199110f22192ce5c95b1c8148d4872b4d119), [`5cbe88a`](https://github.com/mastra-ai/mastra/commit/5cbe88aefbd9f933bca669fd371ea36bf939ac6d), [`41a23c3`](https://github.com/mastra-ai/mastra/commit/41a23c32f9877d71810f37e24930515df2ff7a0f), [`a1bd7b8`](https://github.com/mastra-ai/mastra/commit/a1bd7b8571db16b94eb01588f451a74758c96d65), [`d78b38d`](https://github.com/mastra-ai/mastra/commit/d78b38d898fce285260d3bbb4befade54331617f), [`a0a5b4b`](https://github.com/mastra-ai/mastra/commit/a0a5b4bbebe6c701ebbadf744873aa0d5ca01371), [`ce0a73a`](https://github.com/mastra-ai/mastra/commit/ce0a73abeaa75b10ca38f9e40a255a645d50ebfb), [`5d171ad`](https://github.com/mastra-ai/mastra/commit/5d171ad9ef340387276b77c2bb3e83e83332d729), [`0633100`](https://github.com/mastra-ai/mastra/commit/0633100a911ad22f5256471bdf753da21c104742), [`3759cb0`](https://github.com/mastra-ai/mastra/commit/3759cb064935b5f74c65ac2f52a1145f7352899d), [`929f69c`](https://github.com/mastra-ai/mastra/commit/929f69c3436fa20dd0f0e2f7ebe8270bd82a1529), [`c710c16`](https://github.com/mastra-ai/mastra/commit/c710c1652dccfdc4111c8412bca7a6bb1d48b441), [`10c2735`](https://github.com/mastra-ai/mastra/commit/10c27355edfdad1ee2b826b897df74125eb81fb8), [`354ad0b`](https://github.com/mastra-ai/mastra/commit/354ad0b7b1b8183ac567f236a884fc7ede6d7138), [`cfae733`](https://github.com/mastra-ai/mastra/commit/cfae73394f4920635e6c919c8e95ff9a0788e2e5), [`8c0ec25`](https://github.com/mastra-ai/mastra/commit/8c0ec25646c8a7df253ed1e5ff4863a0d3f1316c), [`e3dfda7`](https://github.com/mastra-ai/mastra/commit/e3dfda7b11bf3b8c4bb55637028befb5f387fc74), [`69ea758`](https://github.com/mastra-ai/mastra/commit/69ea758358edd7117f191c2e69c8bb5fc79e7a1a), [`73b0bb3`](https://github.com/mastra-ai/mastra/commit/73b0bb394dba7c9482eb467a97ab283dbc0ef4db), [`651e772`](https://github.com/mastra-ai/mastra/commit/651e772eb1475fb13e126d3fcc01751297a88214), [`a02e542`](https://github.com/mastra-ai/mastra/commit/a02e542d23179bad250b044b17ff023caa61739f), [`f03ae60`](https://github.com/mastra-ai/mastra/commit/f03ae60500fe350c9d828621006cdafe1975fdd8), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`a372c64`](https://github.com/mastra-ai/mastra/commit/a372c640ad1fd12e8f0613cebdc682fc156b4d95), [`993ad98`](https://github.com/mastra-ai/mastra/commit/993ad98d7ad3bebda9ecef5fec5c94349a0d04bc), [`676ccc7`](https://github.com/mastra-ai/mastra/commit/676ccc7fe92468d2d45d39c31a87825c89fd1ea0), [`3ff2c17`](https://github.com/mastra-ai/mastra/commit/3ff2c17a58e312fad5ea37377262c12d92ca0908), [`a0e437f`](https://github.com/mastra-ai/mastra/commit/a0e437fac561b28ee719e0302d72b2f9b4c138f0), [`d1e74a0`](https://github.com/mastra-ai/mastra/commit/d1e74a0a293866dece31022047f5dbab65a304d0), [`844ea5d`](https://github.com/mastra-ai/mastra/commit/844ea5dc0c248961e7bf73629ae7dcff503e853c), [`5627a8c`](https://github.com/mastra-ai/mastra/commit/5627a8c6dc11fe3711b3fa7a6ffd6eb34100a306), [`398fde3`](https://github.com/mastra-ai/mastra/commit/398fde3f39e707cda79372cdae8f9870e3b57c8d), [`c10398d`](https://github.com/mastra-ai/mastra/commit/c10398d5b88f1d4af556f4267ff06f1d11e89179), [`3ff45d1`](https://github.com/mastra-ai/mastra/commit/3ff45d10e0c80c5335a957ab563da72feb623520), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`b61b93f`](https://github.com/mastra-ai/mastra/commit/b61b93f9e058b11dd2eec169853175d31dbdd567), [`bae33d9`](https://github.com/mastra-ai/mastra/commit/bae33d91a63fbb64d1e80519e1fc1acaed1e9013), [`39e7869`](https://github.com/mastra-ai/mastra/commit/39e7869bc7d0ee391077ce291474d8a84eedccff), [`0d7618b`](https://github.com/mastra-ai/mastra/commit/0d7618bc650bf2800934b243eca5648f4aeed9c2), [`7b763e5`](https://github.com/mastra-ai/mastra/commit/7b763e52fc3eaf699c2a99f2adf418dd46e4e9a5), [`251df45`](https://github.com/mastra-ai/mastra/commit/251df4531407dfa46d805feb40ff3fb49769f455), [`d36cfbb`](https://github.com/mastra-ai/mastra/commit/d36cfbbb6565ba5f827883cc9bb648eb14befdc1), [`f894d14`](https://github.com/mastra-ai/mastra/commit/f894d148946629af7b1f452d65a9cf864cec3765), [`8846867`](https://github.com/mastra-ai/mastra/commit/8846867ffa9a3746767618e314bebac08eb77d87), [`1924cf0`](https://github.com/mastra-ai/mastra/commit/1924cf06816e5e4d4d5333065ec0f4bb02a97799), [`c0b731f`](https://github.com/mastra-ai/mastra/commit/c0b731fb27d712dc8582e846df5c0332a6a0c5ba), [`5761926`](https://github.com/mastra-ai/mastra/commit/57619260c4a2cdd598763abbacd90de594c6bc76), [`c2b9547`](https://github.com/mastra-ai/mastra/commit/c2b9547bf435f56339f23625a743b2147ab1c7a6), [`3697853`](https://github.com/mastra-ai/mastra/commit/3697853deeb72017d90e0f38a93c1e29221aeca0), [`c900fdd`](https://github.com/mastra-ai/mastra/commit/c900fdd504c41348efdffb205cfe80d48c38fa33), [`9312dcd`](https://github.com/mastra-ai/mastra/commit/9312dcd1c6f5b321929e7d382e763d95fdc030f5), [`b2e45ec`](https://github.com/mastra-ai/mastra/commit/b2e45eca727a8db01a81ba93f1a5219c7183c839), [`5d7000f`](https://github.com/mastra-ai/mastra/commit/5d7000f757cd65ea9dc5b05e662fd83dfd44e932), [`43ca8f2`](https://github.com/mastra-ai/mastra/commit/43ca8f2c7334851cc7b4d3d2f037d8784bfbdd5f), [`d6d49f7`](https://github.com/mastra-ai/mastra/commit/d6d49f7b8714fa19a52ff9c7cf7fb7e73751901e), [`00c2387`](https://github.com/mastra-ai/mastra/commit/00c2387f5f04a365316f851e58666ac43f8c4edf), [`a534e95`](https://github.com/mastra-ai/mastra/commit/a534e9591f83b3cc1ebff99c67edf4cda7bf81d3), [`9d0e7fe`](https://github.com/mastra-ai/mastra/commit/9d0e7feca8ed98de959f53476ee1456073673348), [`53d927c`](https://github.com/mastra-ai/mastra/commit/53d927cc6f03bff33655b7e2b788da445a08731d), [`ad6250d`](https://github.com/mastra-ai/mastra/commit/ad6250dbdaad927e29f74a27b83f6c468b50a705), [`580b592`](https://github.com/mastra-ai/mastra/commit/580b5927afc82fe460dfdf9a38a902511b6b7e7f), [`604a79f`](https://github.com/mastra-ai/mastra/commit/604a79fecf276e26a54a3fe01bb94e65315d2e0e), [`42a42cf`](https://github.com/mastra-ai/mastra/commit/42a42cf3132b9786feecbb8c13c583dce5b0e198), [`3f2faf2`](https://github.com/mastra-ai/mastra/commit/3f2faf2e2d685d6c053cc5af1bf9fedf267b2ce5), [`22f64bc`](https://github.com/mastra-ai/mastra/commit/22f64bc1d37149480b58bf2fefe35b79a1e3e7d5), [`ff4d9a6`](https://github.com/mastra-ai/mastra/commit/ff4d9a6704fc87b31a380a76ed22736fdedbba5a), [`50fd320`](https://github.com/mastra-ai/mastra/commit/50fd320003d0d93831c230ef531bef41f5ba7b3a), [`847c212`](https://github.com/mastra-ai/mastra/commit/847c212caba7df0d6f2fc756b494ac3c75c3720d), [`69821ef`](https://github.com/mastra-ai/mastra/commit/69821ef806482e2c44e2197ac0b050c3fe3a5285), [`3a73998`](https://github.com/mastra-ai/mastra/commit/3a73998fa4ebeb7f3dc9301afe78095fc63e7999), [`ffa553a`](https://github.com/mastra-ai/mastra/commit/ffa553a3edc1bd17d73669fba66d6b6f4ac10897), [`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc), [`58e3931`](https://github.com/mastra-ai/mastra/commit/58e3931af9baa5921688566210f00fb0c10479fa), [`ae08bf0`](https://github.com/mastra-ai/mastra/commit/ae08bf0ebc6a4e4da992b711c4a389c32ba84cf4), [`0bed332`](https://github.com/mastra-ai/mastra/commit/0bed332843f627202c6520eaf671771313cd20f3), [`887f0b4`](https://github.com/mastra-ai/mastra/commit/887f0b4746cdbd7cb7d6b17ac9f82aeb58037ea5), [`2562143`](https://github.com/mastra-ai/mastra/commit/256214336b4faa78646c9c1776612393790d8784), [`b7959e6`](https://github.com/mastra-ai/mastra/commit/b7959e6e25a46b480f9ea2217c4c6c588c423791), [`a7ce182`](https://github.com/mastra-ai/mastra/commit/a7ce1822a8785ce45d62dd5c911af465e144f7d7), [`bda6370`](https://github.com/mastra-ai/mastra/commit/bda637009360649aaf579919e7873e33553c273e), [`d7acd8e`](https://github.com/mastra-ai/mastra/commit/d7acd8e987b5d7eff4fd98b0906c17c06a2e83d5), [`c7f1f7d`](https://github.com/mastra-ai/mastra/commit/c7f1f7d24f61f247f018cc2d1f33bf63212959a7), [`0bddc6d`](https://github.com/mastra-ai/mastra/commit/0bddc6d8dbd6f6008c0cba2e4960a2da75a55af1), [`bec5efd`](https://github.com/mastra-ai/mastra/commit/bec5efde96653ccae6604e68c696d1bc6c1a0bf5), [`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93), [`4aa55b3`](https://github.com/mastra-ai/mastra/commit/4aa55b383cf06043943359ea316572fd969861a7), [`21735a7`](https://github.com/mastra-ai/mastra/commit/21735a7ef306963554a69a89b44f06c3bcd85141), [`735d8c1`](https://github.com/mastra-ai/mastra/commit/735d8c1c0d19fbc09e6f8b66cf41bc7655993838), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b), [`1ed5716`](https://github.com/mastra-ai/mastra/commit/1ed5716830867b3774c4a1b43cc0d82935f32b96), [`acf322e`](https://github.com/mastra-ai/mastra/commit/acf322e0f1fd0189684cf529d91c694bea918a45), [`2ca67cc`](https://github.com/mastra-ai/mastra/commit/2ca67cc3bb1f6a617353fdcab197d9efebe60d6f), [`9eedf7d`](https://github.com/mastra-ai/mastra/commit/9eedf7de1d6e0022a2f4e5e9e6fe1ec468f9b43c), [`b339816`](https://github.com/mastra-ai/mastra/commit/b339816df0984d0243d944ac2655d6ba5f809cde), [`e16d553`](https://github.com/mastra-ai/mastra/commit/e16d55338403c7553531cc568125c63d53653dff), [`6f941c4`](https://github.com/mastra-ai/mastra/commit/6f941c438ca5f578619788acc7608fc2e23bd176), [`4186bdd`](https://github.com/mastra-ai/mastra/commit/4186bdd00731305726fa06adba0b076a1d50b49f), [`08bb631`](https://github.com/mastra-ai/mastra/commit/08bb631ae2b14684b2678e3549d0b399a6f0561e), [`c942802`](https://github.com/mastra-ai/mastra/commit/c942802a477a925b01859a7b8688d4355715caaa), [`4f0331a`](https://github.com/mastra-ai/mastra/commit/4f0331a79bf6eb5ee598a5086e55de4b5a0ada03), [`a0c8c1b`](https://github.com/mastra-ai/mastra/commit/a0c8c1b87d4fee252aebda73e8637fbe01d761c9), [`1d877b8`](https://github.com/mastra-ai/mastra/commit/1d877b8d7b536a251c1a7a18db7ddcf4f68d6f8b), [`cc34739`](https://github.com/mastra-ai/mastra/commit/cc34739c34b6266a91bea561119240a7acf47887), [`c218bd3`](https://github.com/mastra-ai/mastra/commit/c218bd3759e32423735b04843a09404572631014), [`9e67002`](https://github.com/mastra-ai/mastra/commit/9e67002b52c9be19936c420a489dbee9c5fd6a78), [`7aaf973`](https://github.com/mastra-ai/mastra/commit/7aaf973f83fbbe9521f1f9e7a4fd99b8de464617), [`2c4438b`](https://github.com/mastra-ai/mastra/commit/2c4438b87817ab7eed818c7990fef010475af1a3), [`35edc49`](https://github.com/mastra-ai/mastra/commit/35edc49ac0556db609189641d6341e76771b81fc), [`4d59f58`](https://github.com/mastra-ai/mastra/commit/4d59f58de2d90d6e2810a19d4518e38ddddb9038), [`ef11a61`](https://github.com/mastra-ai/mastra/commit/ef11a61920fa0ed08a5b7ceedd192875af119749), [`2b8893c`](https://github.com/mastra-ai/mastra/commit/2b8893cb108ef9acb72ee7835cd625610d2c1a4a), [`8e5c75b`](https://github.com/mastra-ai/mastra/commit/8e5c75bdb1d08a42d45309a4c72def4b6890230f), [`e1bb9c9`](https://github.com/mastra-ai/mastra/commit/e1bb9c94b4eb68b019ae275981be3feb769b5365), [`351a11f`](https://github.com/mastra-ai/mastra/commit/351a11fcaf2ed1008977fa9b9a489fc422e51cd4), [`8a73529`](https://github.com/mastra-ai/mastra/commit/8a73529ca01187f604b1f3019d0a725ac63ae55f), [`e59e0d3`](https://github.com/mastra-ai/mastra/commit/e59e0d32afb5fcf2c9f3c00c8f81f6c21d3a63fa), [`4fba91b`](https://github.com/mastra-ai/mastra/commit/4fba91bec7c95911dc28e369437596b152b04cd0), [`465ac05`](https://github.com/mastra-ai/mastra/commit/465ac0526a91d175542091c675181f1a96c98c46), [`fa8409b`](https://github.com/mastra-ai/mastra/commit/fa8409bc39cfd8ba6643b9db5269b90b22e2a2f7), [`8a000da`](https://github.com/mastra-ai/mastra/commit/8a000da0c09c679a2312f6b3aa05b2ca78ca7393), [`e7266a2`](https://github.com/mastra-ai/mastra/commit/e7266a278db02035c97a5e9cd9d1669a6b7a535d), [`173c535`](https://github.com/mastra-ai/mastra/commit/173c535c0645b0da404fe09f003778f0b0d4e019), [`12b0cc4`](https://github.com/mastra-ai/mastra/commit/12b0cc4077d886b1a552637dedb70a7ade93528c), [`3bf6c5f`](https://github.com/mastra-ai/mastra/commit/3bf6c5f104c25226cd84e0c77f9dec15f2cac2db)]:
|
|
156
|
-
- @mastra/core@1.0.0
|
|
157
|
-
|
|
158
|
-
## 0.12.0-beta.2
|
|
159
|
-
|
|
160
|
-
### Patch Changes
|
|
161
|
-
|
|
162
|
-
- Add embedded documentation support for Mastra packages ([#11472](https://github.com/mastra-ai/mastra/pull/11472))
|
|
163
|
-
|
|
164
|
-
Mastra packages now include embedded documentation in the published npm package under `dist/docs/`. This enables coding agents and AI assistants to understand and use the framework by reading documentation directly from `node_modules`.
|
|
165
|
-
|
|
166
|
-
Each package includes:
|
|
167
|
-
- **SKILL.md** - Entry point explaining the package's purpose and capabilities
|
|
168
|
-
- **SOURCE_MAP.json** - Machine-readable index mapping exports to types and implementation files
|
|
169
|
-
- **Topic folders** - Conceptual documentation organized by feature area
|
|
170
|
-
|
|
171
|
-
Documentation is driven by the `packages` frontmatter field in MDX files, which maps docs to their corresponding packages. CI validation ensures all docs include this field.
|
|
172
|
-
|
|
173
|
-
- 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)]:
|
|
174
|
-
- @mastra/core@1.0.0-beta.20
|
|
175
|
-
|
|
176
|
-
## 0.12.0-beta.1
|
|
177
|
-
|
|
178
|
-
### Minor Changes
|
|
179
|
-
|
|
180
|
-
- Add Vertex AI support to GoogleVoice provider ([#10661](https://github.com/mastra-ai/mastra/pull/10661))
|
|
181
|
-
- Add `vertexAI`, `project`, and `location` configuration options
|
|
182
|
-
- Support Vertex AI authentication via project ID and service accounts
|
|
183
|
-
- Add helper methods: `isUsingVertexAI()`, `getProject()`, `getLocation()`
|
|
184
|
-
- Support `GOOGLE_CLOUD_PROJECT` and `GOOGLE_CLOUD_LOCATION` environment variables
|
|
185
|
-
- Update README with Vertex AI usage examples
|
|
186
|
-
|
|
187
|
-
This makes `@mastra/voice-google` consistent with `@mastra/voice-google-gemini-live` and enables enterprise deployments using Google Cloud project-based authentication instead of API keys.
|
|
188
|
-
|
|
189
|
-
### Patch Changes
|
|
190
|
-
|
|
191
|
-
- 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)]:
|
|
192
|
-
- @mastra/core@1.0.0-beta.6
|
|
193
|
-
|
|
194
|
-
## 0.12.0-beta.0
|
|
195
|
-
|
|
196
|
-
### Minor Changes
|
|
197
|
-
|
|
198
|
-
- Update peer dependencies to match core package version bump (1.0.0) ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
|
|
199
|
-
|
|
200
|
-
- Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
|
|
201
|
-
|
|
202
|
-
- Removed old tracing code based on OpenTelemetry ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
|
|
203
|
-
|
|
204
|
-
### Patch Changes
|
|
205
|
-
|
|
206
|
-
- Updated dependencies [[`39c9743`](https://github.com/mastra-ai/mastra/commit/39c97432d084294f8ba85fbf3ef28098ff21459e), [`f743dbb`](https://github.com/mastra-ai/mastra/commit/f743dbb8b40d1627b5c10c0e6fc154f4ebb6e394), [`fec5129`](https://github.com/mastra-ai/mastra/commit/fec5129de7fc64423ea03661a56cef31dc747a0d), [`0491e7c`](https://github.com/mastra-ai/mastra/commit/0491e7c9b714cb0ba22187ee062147ec2dd7c712), [`f6f4903`](https://github.com/mastra-ai/mastra/commit/f6f4903397314f73362061dc5a3e8e7c61ea34aa), [`0e8ed46`](https://github.com/mastra-ai/mastra/commit/0e8ed467c54d6901a6a365f270ec15d6faadb36c), [`6c049d9`](https://github.com/mastra-ai/mastra/commit/6c049d94063fdcbd5b81c4912a2bf82a92c9cc0b), [`2f897df`](https://github.com/mastra-ai/mastra/commit/2f897df208508f46f51b7625e5dd20c37f93e0e3), [`3443770`](https://github.com/mastra-ai/mastra/commit/3443770662df8eb24c9df3589b2792d78cfcb811), [`f0a07e0`](https://github.com/mastra-ai/mastra/commit/f0a07e0111b3307c5fabfa4094c5c2cfb734fbe6), [`aaa40e7`](https://github.com/mastra-ai/mastra/commit/aaa40e788628b319baa8e889407d11ad626547fa), [`1521d71`](https://github.com/mastra-ai/mastra/commit/1521d716e5daedc74690c983fbd961123c56756b), [`9e1911d`](https://github.com/mastra-ai/mastra/commit/9e1911db2b4db85e0e768c3f15e0d61e319869f6), [`ebac155`](https://github.com/mastra-ai/mastra/commit/ebac15564a590117db7078233f927a7e28a85106), [`dd1c38d`](https://github.com/mastra-ai/mastra/commit/dd1c38d1b75f1b695c27b40d8d9d6ed00d5e0f6f), [`5948e6a`](https://github.com/mastra-ai/mastra/commit/5948e6a5146c83666ba3f294b2be576c82a513fb), [`8940859`](https://github.com/mastra-ai/mastra/commit/89408593658199b4ad67f7b65e888f344e64a442), [`e629310`](https://github.com/mastra-ai/mastra/commit/e629310f1a73fa236d49ec7a1d1cceb6229dc7cc), [`4c6b492`](https://github.com/mastra-ai/mastra/commit/4c6b492c4dd591c6a592520c1f6855d6e936d71f), [`dff01d8`](https://github.com/mastra-ai/mastra/commit/dff01d81ce1f4e4087cfac20fa868e6db138dd14), [`9d819d5`](https://github.com/mastra-ai/mastra/commit/9d819d54b61481639f4008e4694791bddf187edd), [`71c8d6c`](https://github.com/mastra-ai/mastra/commit/71c8d6c161253207b2b9588bdadb7eed604f7253), [`6179a9b`](https://github.com/mastra-ai/mastra/commit/6179a9ba36ffac326de3cc3c43cdc8028d37c251), [`00f4921`](https://github.com/mastra-ai/mastra/commit/00f4921dd2c91a1e5446799599ef7116a8214a1a), [`ca8041c`](https://github.com/mastra-ai/mastra/commit/ca8041cce0379fda22ed293a565bcb5b6ddca68a), [`7051bf3`](https://github.com/mastra-ai/mastra/commit/7051bf38b3b122a069008f861f7bfc004a6d9f6e), [`a8f1494`](https://github.com/mastra-ai/mastra/commit/a8f1494f4bbdc2770bcf327d4c7d869e332183f1), [`0793497`](https://github.com/mastra-ai/mastra/commit/079349753620c40246ffd673e3f9d7d9820beff3), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`a854ede`](https://github.com/mastra-ai/mastra/commit/a854ede62bf5ac0945a624ac48913dd69c73aabf), [`c576fc0`](https://github.com/mastra-ai/mastra/commit/c576fc0b100b2085afded91a37c97a0ea0ec09c7), [`3defc80`](https://github.com/mastra-ai/mastra/commit/3defc80cf2b88a1b7fc1cc4ddcb91e982a614609), [`16153fe`](https://github.com/mastra-ai/mastra/commit/16153fe7eb13c99401f48e6ca32707c965ee28b9), [`9f4a683`](https://github.com/mastra-ai/mastra/commit/9f4a6833e88b52574665c028fd5508ad5c2f6004), [`bc94344`](https://github.com/mastra-ai/mastra/commit/bc943444a1342d8a662151b7bce1df7dae32f59c), [`57d157f`](https://github.com/mastra-ai/mastra/commit/57d157f0b163a95c3e6c9eae31bdb11d1bfc64f9), [`903f67d`](https://github.com/mastra-ai/mastra/commit/903f67d184504a273893818c02b961f5423a79ad), [`2a90c55`](https://github.com/mastra-ai/mastra/commit/2a90c55a86a9210697d5adaab5ee94584b079adc), [`eb09742`](https://github.com/mastra-ai/mastra/commit/eb09742197f66c4c38154c3beec78313e69760b2), [`96d35f6`](https://github.com/mastra-ai/mastra/commit/96d35f61376bc2b1bf148648a2c1985bd51bef55), [`5cbe88a`](https://github.com/mastra-ai/mastra/commit/5cbe88aefbd9f933bca669fd371ea36bf939ac6d), [`a1bd7b8`](https://github.com/mastra-ai/mastra/commit/a1bd7b8571db16b94eb01588f451a74758c96d65), [`d78b38d`](https://github.com/mastra-ai/mastra/commit/d78b38d898fce285260d3bbb4befade54331617f), [`0633100`](https://github.com/mastra-ai/mastra/commit/0633100a911ad22f5256471bdf753da21c104742), [`c710c16`](https://github.com/mastra-ai/mastra/commit/c710c1652dccfdc4111c8412bca7a6bb1d48b441), [`354ad0b`](https://github.com/mastra-ai/mastra/commit/354ad0b7b1b8183ac567f236a884fc7ede6d7138), [`cfae733`](https://github.com/mastra-ai/mastra/commit/cfae73394f4920635e6c919c8e95ff9a0788e2e5), [`e3dfda7`](https://github.com/mastra-ai/mastra/commit/e3dfda7b11bf3b8c4bb55637028befb5f387fc74), [`844ea5d`](https://github.com/mastra-ai/mastra/commit/844ea5dc0c248961e7bf73629ae7dcff503e853c), [`398fde3`](https://github.com/mastra-ai/mastra/commit/398fde3f39e707cda79372cdae8f9870e3b57c8d), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`0d7618b`](https://github.com/mastra-ai/mastra/commit/0d7618bc650bf2800934b243eca5648f4aeed9c2), [`7b763e5`](https://github.com/mastra-ai/mastra/commit/7b763e52fc3eaf699c2a99f2adf418dd46e4e9a5), [`d36cfbb`](https://github.com/mastra-ai/mastra/commit/d36cfbbb6565ba5f827883cc9bb648eb14befdc1), [`3697853`](https://github.com/mastra-ai/mastra/commit/3697853deeb72017d90e0f38a93c1e29221aeca0), [`b2e45ec`](https://github.com/mastra-ai/mastra/commit/b2e45eca727a8db01a81ba93f1a5219c7183c839), [`d6d49f7`](https://github.com/mastra-ai/mastra/commit/d6d49f7b8714fa19a52ff9c7cf7fb7e73751901e), [`a534e95`](https://github.com/mastra-ai/mastra/commit/a534e9591f83b3cc1ebff99c67edf4cda7bf81d3), [`9d0e7fe`](https://github.com/mastra-ai/mastra/commit/9d0e7feca8ed98de959f53476ee1456073673348), [`53d927c`](https://github.com/mastra-ai/mastra/commit/53d927cc6f03bff33655b7e2b788da445a08731d), [`3f2faf2`](https://github.com/mastra-ai/mastra/commit/3f2faf2e2d685d6c053cc5af1bf9fedf267b2ce5), [`22f64bc`](https://github.com/mastra-ai/mastra/commit/22f64bc1d37149480b58bf2fefe35b79a1e3e7d5), [`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc), [`b7959e6`](https://github.com/mastra-ai/mastra/commit/b7959e6e25a46b480f9ea2217c4c6c588c423791), [`bda6370`](https://github.com/mastra-ai/mastra/commit/bda637009360649aaf579919e7873e33553c273e), [`d7acd8e`](https://github.com/mastra-ai/mastra/commit/d7acd8e987b5d7eff4fd98b0906c17c06a2e83d5), [`c7f1f7d`](https://github.com/mastra-ai/mastra/commit/c7f1f7d24f61f247f018cc2d1f33bf63212959a7), [`0bddc6d`](https://github.com/mastra-ai/mastra/commit/0bddc6d8dbd6f6008c0cba2e4960a2da75a55af1), [`735d8c1`](https://github.com/mastra-ai/mastra/commit/735d8c1c0d19fbc09e6f8b66cf41bc7655993838), [`acf322e`](https://github.com/mastra-ai/mastra/commit/acf322e0f1fd0189684cf529d91c694bea918a45), [`c942802`](https://github.com/mastra-ai/mastra/commit/c942802a477a925b01859a7b8688d4355715caaa), [`a0c8c1b`](https://github.com/mastra-ai/mastra/commit/a0c8c1b87d4fee252aebda73e8637fbe01d761c9), [`cc34739`](https://github.com/mastra-ai/mastra/commit/cc34739c34b6266a91bea561119240a7acf47887), [`c218bd3`](https://github.com/mastra-ai/mastra/commit/c218bd3759e32423735b04843a09404572631014), [`2c4438b`](https://github.com/mastra-ai/mastra/commit/2c4438b87817ab7eed818c7990fef010475af1a3), [`2b8893c`](https://github.com/mastra-ai/mastra/commit/2b8893cb108ef9acb72ee7835cd625610d2c1a4a), [`8e5c75b`](https://github.com/mastra-ai/mastra/commit/8e5c75bdb1d08a42d45309a4c72def4b6890230f), [`e59e0d3`](https://github.com/mastra-ai/mastra/commit/e59e0d32afb5fcf2c9f3c00c8f81f6c21d3a63fa), [`fa8409b`](https://github.com/mastra-ai/mastra/commit/fa8409bc39cfd8ba6643b9db5269b90b22e2a2f7), [`173c535`](https://github.com/mastra-ai/mastra/commit/173c535c0645b0da404fe09f003778f0b0d4e019)]:
|
|
207
|
-
- @mastra/core@1.0.0-beta.0
|
|
208
|
-
|
|
209
|
-
## 0.11.10
|
|
210
|
-
|
|
211
|
-
### Patch Changes
|
|
212
|
-
|
|
213
|
-
- dependencies updates: ([#8936](https://github.com/mastra-ai/mastra/pull/8936))
|
|
214
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.3.1` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.3.1) (from `^6.3.0`, in `dependencies`)
|
|
215
|
-
|
|
216
|
-
- Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
|
|
217
|
-
|
|
218
|
-
- Updated dependencies [[`c67ca32`](https://github.com/mastra-ai/mastra/commit/c67ca32e3c2cf69bfc146580770c720220ca44ac), [`efb5ed9`](https://github.com/mastra-ai/mastra/commit/efb5ed946ae7f410bc68c9430beb4b010afd25ec), [`dbc9e12`](https://github.com/mastra-ai/mastra/commit/dbc9e1216ba575ba59ead4afb727a01215f7de4f), [`99e41b9`](https://github.com/mastra-ai/mastra/commit/99e41b94957cdd25137d3ac12e94e8b21aa01b68), [`c28833c`](https://github.com/mastra-ai/mastra/commit/c28833c5b6d8e10eeffd7f7d39129d53b8bca240), [`8ea07b4`](https://github.com/mastra-ai/mastra/commit/8ea07b4bdc73e4218437dbb6dcb0f4b23e745a44), [`ba201b8`](https://github.com/mastra-ai/mastra/commit/ba201b8f8feac4c72350f2dbd52c13c7297ba7b0), [`f053e89`](https://github.com/mastra-ai/mastra/commit/f053e89160dbd0bd3333fc3492f68231b5c7c349), [`4fc4136`](https://github.com/mastra-ai/mastra/commit/4fc413652866a8d2240694fddb2562e9edbb70df), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`d10baf5`](https://github.com/mastra-ai/mastra/commit/d10baf5a3c924f2a6654e23a3e318ed03f189b76), [`038c55a`](https://github.com/mastra-ai/mastra/commit/038c55a7090fc1b1513a966386d3072617f836ac), [`182f045`](https://github.com/mastra-ai/mastra/commit/182f0458f25bd70aa774e64fd923c8a483eddbf1), [`9a1a485`](https://github.com/mastra-ai/mastra/commit/9a1a4859b855e37239f652bf14b1ecd1029b8c4e), [`9257233`](https://github.com/mastra-ai/mastra/commit/9257233c4ffce09b2bedc2a9adbd70d7a83fa8e2), [`7620d2b`](https://github.com/mastra-ai/mastra/commit/7620d2bddeb4fae4c3c0a0b4e672969795fca11a), [`b2365f0`](https://github.com/mastra-ai/mastra/commit/b2365f038dd4c5f06400428b224af963f399ad50), [`0f1a4c9`](https://github.com/mastra-ai/mastra/commit/0f1a4c984fb4b104b2f0b63ba18c9fa77f567700), [`9029ba3`](https://github.com/mastra-ai/mastra/commit/9029ba34459c8859fed4c6b73efd8e2d0021e7ba), [`426cc56`](https://github.com/mastra-ai/mastra/commit/426cc561c85ae76a112ded2385532a91f9f9f074), [`00931fb`](https://github.com/mastra-ai/mastra/commit/00931fb1a21aa42c4fbc20c2c40dd62466b8fc8f), [`e473bfe`](https://github.com/mastra-ai/mastra/commit/e473bfe416c0b8e876973c2b6a6f13c394b7a93f), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`2db6160`](https://github.com/mastra-ai/mastra/commit/2db6160e2022ff8827c15d30157e684683b934b5), [`8aeea37`](https://github.com/mastra-ai/mastra/commit/8aeea37efdde347c635a67fed56794943b7f74ec), [`02fe153`](https://github.com/mastra-ai/mastra/commit/02fe15351d6021d214da48ec982a0e9e4150bcee), [`648e2ca`](https://github.com/mastra-ai/mastra/commit/648e2ca42da54838c6ccbdaadc6fadd808fa6b86), [`74567b3`](https://github.com/mastra-ai/mastra/commit/74567b3d237ae3915cd0bca3cf55fa0a64e4e4a4), [`b65c5e0`](https://github.com/mastra-ai/mastra/commit/b65c5e0fe6f3c390a9a8bbcf69304d972c3a4afb), [`15a1733`](https://github.com/mastra-ai/mastra/commit/15a1733074cee8bd37370e1af34cd818e89fa7ac), [`fc2a774`](https://github.com/mastra-ai/mastra/commit/fc2a77468981aaddc3e77f83f0c4ad4a4af140da), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e)]:
|
|
219
|
-
- @mastra/core@0.22.0
|
|
220
|
-
|
|
221
|
-
## 0.11.10-alpha.1
|
|
222
|
-
|
|
223
|
-
### Patch Changes
|
|
224
|
-
|
|
225
|
-
- Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
|
|
226
|
-
|
|
227
|
-
- Updated dependencies [[`efb5ed9`](https://github.com/mastra-ai/mastra/commit/efb5ed946ae7f410bc68c9430beb4b010afd25ec), [`8ea07b4`](https://github.com/mastra-ai/mastra/commit/8ea07b4bdc73e4218437dbb6dcb0f4b23e745a44), [`ba201b8`](https://github.com/mastra-ai/mastra/commit/ba201b8f8feac4c72350f2dbd52c13c7297ba7b0), [`4fc4136`](https://github.com/mastra-ai/mastra/commit/4fc413652866a8d2240694fddb2562e9edbb70df), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`d10baf5`](https://github.com/mastra-ai/mastra/commit/d10baf5a3c924f2a6654e23a3e318ed03f189b76), [`038c55a`](https://github.com/mastra-ai/mastra/commit/038c55a7090fc1b1513a966386d3072617f836ac), [`182f045`](https://github.com/mastra-ai/mastra/commit/182f0458f25bd70aa774e64fd923c8a483eddbf1), [`7620d2b`](https://github.com/mastra-ai/mastra/commit/7620d2bddeb4fae4c3c0a0b4e672969795fca11a), [`b2365f0`](https://github.com/mastra-ai/mastra/commit/b2365f038dd4c5f06400428b224af963f399ad50), [`9029ba3`](https://github.com/mastra-ai/mastra/commit/9029ba34459c8859fed4c6b73efd8e2d0021e7ba), [`426cc56`](https://github.com/mastra-ai/mastra/commit/426cc561c85ae76a112ded2385532a91f9f9f074), [`00931fb`](https://github.com/mastra-ai/mastra/commit/00931fb1a21aa42c4fbc20c2c40dd62466b8fc8f), [`e473bfe`](https://github.com/mastra-ai/mastra/commit/e473bfe416c0b8e876973c2b6a6f13c394b7a93f), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`648e2ca`](https://github.com/mastra-ai/mastra/commit/648e2ca42da54838c6ccbdaadc6fadd808fa6b86), [`b65c5e0`](https://github.com/mastra-ai/mastra/commit/b65c5e0fe6f3c390a9a8bbcf69304d972c3a4afb)]:
|
|
228
|
-
- @mastra/core@0.22.0-alpha.1
|
|
229
|
-
|
|
230
|
-
## 0.11.10-alpha.0
|
|
231
|
-
|
|
232
|
-
### Patch Changes
|
|
233
|
-
|
|
234
|
-
- dependencies updates: ([#8936](https://github.com/mastra-ai/mastra/pull/8936))
|
|
235
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.3.1` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.3.1) (from `^6.3.0`, in `dependencies`)
|
|
236
|
-
- Updated dependencies [[`c67ca32`](https://github.com/mastra-ai/mastra/commit/c67ca32e3c2cf69bfc146580770c720220ca44ac), [`dbc9e12`](https://github.com/mastra-ai/mastra/commit/dbc9e1216ba575ba59ead4afb727a01215f7de4f), [`99e41b9`](https://github.com/mastra-ai/mastra/commit/99e41b94957cdd25137d3ac12e94e8b21aa01b68), [`c28833c`](https://github.com/mastra-ai/mastra/commit/c28833c5b6d8e10eeffd7f7d39129d53b8bca240), [`f053e89`](https://github.com/mastra-ai/mastra/commit/f053e89160dbd0bd3333fc3492f68231b5c7c349), [`9a1a485`](https://github.com/mastra-ai/mastra/commit/9a1a4859b855e37239f652bf14b1ecd1029b8c4e), [`9257233`](https://github.com/mastra-ai/mastra/commit/9257233c4ffce09b2bedc2a9adbd70d7a83fa8e2), [`0f1a4c9`](https://github.com/mastra-ai/mastra/commit/0f1a4c984fb4b104b2f0b63ba18c9fa77f567700), [`2db6160`](https://github.com/mastra-ai/mastra/commit/2db6160e2022ff8827c15d30157e684683b934b5), [`8aeea37`](https://github.com/mastra-ai/mastra/commit/8aeea37efdde347c635a67fed56794943b7f74ec), [`02fe153`](https://github.com/mastra-ai/mastra/commit/02fe15351d6021d214da48ec982a0e9e4150bcee), [`74567b3`](https://github.com/mastra-ai/mastra/commit/74567b3d237ae3915cd0bca3cf55fa0a64e4e4a4), [`15a1733`](https://github.com/mastra-ai/mastra/commit/15a1733074cee8bd37370e1af34cd818e89fa7ac), [`fc2a774`](https://github.com/mastra-ai/mastra/commit/fc2a77468981aaddc3e77f83f0c4ad4a4af140da), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e)]:
|
|
237
|
-
- @mastra/core@0.21.2-alpha.0
|
|
238
|
-
|
|
239
|
-
## 0.11.9
|
|
240
|
-
|
|
241
|
-
### Patch Changes
|
|
242
|
-
|
|
243
|
-
- Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
|
|
244
|
-
|
|
245
|
-
- Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
|
|
246
|
-
|
|
247
|
-
- Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
|
|
248
|
-
|
|
249
|
-
- Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
|
|
250
|
-
|
|
251
|
-
- Updated dependencies [[`1ed9670`](https://github.com/mastra-ai/mastra/commit/1ed9670d3ca50cb60dc2e517738c5eef3968ed27), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`f59fc1e`](https://github.com/mastra-ai/mastra/commit/f59fc1e406b8912e692f6bff6cfd4754cc8d165c), [`158381d`](https://github.com/mastra-ai/mastra/commit/158381d39335be934b81ef8a1947bccace492c25), [`a1799bc`](https://github.com/mastra-ai/mastra/commit/a1799bcc1b5a1cdc188f2ac0165f17a1c4ac6f7b), [`6ff6094`](https://github.com/mastra-ai/mastra/commit/6ff60946f4ecfebdeef6e21d2b230c2204f2c9b8), [`fb703b9`](https://github.com/mastra-ai/mastra/commit/fb703b9634eeaff1a6eb2b5531ce0f9e8fb04727), [`37a2314`](https://github.com/mastra-ai/mastra/commit/37a23148e0e5a3b40d4f9f098b194671a8a49faf), [`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`05a9dee`](https://github.com/mastra-ai/mastra/commit/05a9dee3d355694d28847bfffb6289657fcf7dfa), [`e3c1077`](https://github.com/mastra-ai/mastra/commit/e3c107763aedd1643d3def5df450c235da9ff76c), [`1908ca0`](https://github.com/mastra-ai/mastra/commit/1908ca0521f90e43779cc29ab590173ca560443c), [`1bccdb3`](https://github.com/mastra-ai/mastra/commit/1bccdb33eb90cbeba2dc5ece1c2561fb774b26b6), [`5ef944a`](https://github.com/mastra-ai/mastra/commit/5ef944a3721d93105675cac2b2311432ff8cc393), [`d6b186f`](https://github.com/mastra-ai/mastra/commit/d6b186fb08f1caf1b86f73d3a5ee88fb999ca3be), [`ee68e82`](https://github.com/mastra-ai/mastra/commit/ee68e8289ea4408d29849e899bc6e78b3bd4e843), [`228228b`](https://github.com/mastra-ai/mastra/commit/228228b0b1de9291cb8887587f5cea1a8757ebad), [`ea33930`](https://github.com/mastra-ai/mastra/commit/ea339301e82d6318257720d811b043014ee44064), [`65493b3`](https://github.com/mastra-ai/mastra/commit/65493b31c36f6fdb78f9679f7e1ecf0c250aa5ee), [`a998b8f`](https://github.com/mastra-ai/mastra/commit/a998b8f858091c2ec47683e60766cf12d03001e4), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`8a37bdd`](https://github.com/mastra-ai/mastra/commit/8a37bddb6d8614a32c5b70303d583d80c620ea61), [`135d6f2`](https://github.com/mastra-ai/mastra/commit/135d6f22a326ed1dffff858700669dff09d2c9eb)]:
|
|
252
|
-
- @mastra/core@0.21.0
|
|
253
|
-
|
|
254
|
-
## 0.11.9-alpha.0
|
|
255
|
-
|
|
256
|
-
### Patch Changes
|
|
257
|
-
|
|
258
|
-
- Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
|
|
259
|
-
|
|
260
|
-
- Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
|
|
261
|
-
|
|
262
|
-
- Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
|
|
263
|
-
|
|
264
|
-
- Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
|
|
265
|
-
|
|
266
|
-
- Updated dependencies [[`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`ee68e82`](https://github.com/mastra-ai/mastra/commit/ee68e8289ea4408d29849e899bc6e78b3bd4e843), [`228228b`](https://github.com/mastra-ai/mastra/commit/228228b0b1de9291cb8887587f5cea1a8757ebad), [`ea33930`](https://github.com/mastra-ai/mastra/commit/ea339301e82d6318257720d811b043014ee44064), [`b5a66b7`](https://github.com/mastra-ai/mastra/commit/b5a66b748a14fc8b3f63b04642ddb9621fbcc9e0), [`135d6f2`](https://github.com/mastra-ai/mastra/commit/135d6f22a326ed1dffff858700669dff09d2c9eb), [`59d036d`](https://github.com/mastra-ai/mastra/commit/59d036d4c2706b430b0e3f1f1e0ee853ce16ca04)]:
|
|
267
|
-
- @mastra/core@0.21.0-alpha.0
|
|
268
|
-
|
|
269
|
-
## 0.11.8
|
|
270
|
-
|
|
271
|
-
### Patch Changes
|
|
272
|
-
|
|
273
|
-
- dependencies updates: ([#8425](https://github.com/mastra-ai/mastra/pull/8425))
|
|
274
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.3.0` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.3.0) (from `^6.2.0`, in `dependencies`)
|
|
275
|
-
|
|
276
|
-
- Breaking change to move the agent.streamVNext/generateVNext implementation to the default stream/generate. The old stream/generate have now been moved to streamLegacy and generateLegacy ([#8097](https://github.com/mastra-ai/mastra/pull/8097))
|
|
277
|
-
|
|
278
|
-
- Updated dependencies [[`00cb6bd`](https://github.com/mastra-ai/mastra/commit/00cb6bdf78737c0fac14a5a0c7b532a11e38558a), [`869ba22`](https://github.com/mastra-ai/mastra/commit/869ba222e1d6b58fc1b65e7c9fd55ca4e01b8c2f), [`1b73665`](https://github.com/mastra-ai/mastra/commit/1b73665e8e23f5c09d49fcf3e7d709c75259259e), [`f7d7475`](https://github.com/mastra-ai/mastra/commit/f7d747507341aef60ed39e4b49318db1f86034a6), [`084b77b`](https://github.com/mastra-ai/mastra/commit/084b77b2955960e0190af8db3f77138aa83ed65c), [`a93ff84`](https://github.com/mastra-ai/mastra/commit/a93ff84b5e1af07ee236ac8873dac9b49aa5d501), [`bc5aacb`](https://github.com/mastra-ai/mastra/commit/bc5aacb646d468d325327e36117129f28cd13bf6), [`6b5af12`](https://github.com/mastra-ai/mastra/commit/6b5af12ce9e09066e0c32e821c203a6954498bea), [`bf60e4a`](https://github.com/mastra-ai/mastra/commit/bf60e4a89c515afd9570b7b79f33b95e7d07c397), [`d41aee5`](https://github.com/mastra-ai/mastra/commit/d41aee526d124e35f42720a08e64043229193679), [`e8fe13c`](https://github.com/mastra-ai/mastra/commit/e8fe13c4b4c255a42520127797ec394310f7c919), [`3ca833d`](https://github.com/mastra-ai/mastra/commit/3ca833dc994c38e3c9b4f9b4478a61cd8e07b32a), [`1edb8d1`](https://github.com/mastra-ai/mastra/commit/1edb8d1cfb963e72a12412990fb9170936c9904c), [`fbf6e32`](https://github.com/mastra-ai/mastra/commit/fbf6e324946332d0f5ed8930bf9d4d4479cefd7a), [`4753027`](https://github.com/mastra-ai/mastra/commit/4753027ee889288775c6958bdfeda03ff909af67)]:
|
|
279
|
-
- @mastra/core@0.20.0
|
|
280
|
-
|
|
281
|
-
## 0.11.8-alpha.0
|
|
282
|
-
|
|
283
|
-
### Patch Changes
|
|
284
|
-
|
|
285
|
-
- dependencies updates: ([#8425](https://github.com/mastra-ai/mastra/pull/8425))
|
|
286
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.3.0` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.3.0) (from `^6.2.0`, in `dependencies`)
|
|
287
|
-
|
|
288
|
-
- Breaking change to move the agent.streamVNext/generateVNext implementation to the default stream/generate. The old stream/generate have now been moved to streamLegacy and generateLegacy ([#8097](https://github.com/mastra-ai/mastra/pull/8097))
|
|
289
|
-
|
|
290
|
-
- Updated dependencies [[`00cb6bd`](https://github.com/mastra-ai/mastra/commit/00cb6bdf78737c0fac14a5a0c7b532a11e38558a), [`869ba22`](https://github.com/mastra-ai/mastra/commit/869ba222e1d6b58fc1b65e7c9fd55ca4e01b8c2f), [`1b73665`](https://github.com/mastra-ai/mastra/commit/1b73665e8e23f5c09d49fcf3e7d709c75259259e), [`f7d7475`](https://github.com/mastra-ai/mastra/commit/f7d747507341aef60ed39e4b49318db1f86034a6), [`084b77b`](https://github.com/mastra-ai/mastra/commit/084b77b2955960e0190af8db3f77138aa83ed65c), [`a93ff84`](https://github.com/mastra-ai/mastra/commit/a93ff84b5e1af07ee236ac8873dac9b49aa5d501), [`bc5aacb`](https://github.com/mastra-ai/mastra/commit/bc5aacb646d468d325327e36117129f28cd13bf6), [`6b5af12`](https://github.com/mastra-ai/mastra/commit/6b5af12ce9e09066e0c32e821c203a6954498bea), [`bf60e4a`](https://github.com/mastra-ai/mastra/commit/bf60e4a89c515afd9570b7b79f33b95e7d07c397), [`d41aee5`](https://github.com/mastra-ai/mastra/commit/d41aee526d124e35f42720a08e64043229193679), [`e8fe13c`](https://github.com/mastra-ai/mastra/commit/e8fe13c4b4c255a42520127797ec394310f7c919), [`3ca833d`](https://github.com/mastra-ai/mastra/commit/3ca833dc994c38e3c9b4f9b4478a61cd8e07b32a), [`1edb8d1`](https://github.com/mastra-ai/mastra/commit/1edb8d1cfb963e72a12412990fb9170936c9904c), [`fbf6e32`](https://github.com/mastra-ai/mastra/commit/fbf6e324946332d0f5ed8930bf9d4d4479cefd7a), [`4753027`](https://github.com/mastra-ai/mastra/commit/4753027ee889288775c6958bdfeda03ff909af67)]:
|
|
291
|
-
- @mastra/core@0.20.0-alpha.0
|
|
292
|
-
|
|
293
|
-
## 0.11.7
|
|
294
|
-
|
|
295
|
-
### Patch Changes
|
|
296
|
-
|
|
297
|
-
- Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
|
|
298
|
-
|
|
299
|
-
- feat(voice-google): support additional authentication ([#8086](https://github.com/mastra-ai/mastra/pull/8086))
|
|
300
|
-
|
|
301
|
-
- Updated dependencies [[`dc099b4`](https://github.com/mastra-ai/mastra/commit/dc099b40fb31147ba3f362f98d991892033c4c67), [`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`b342a68`](https://github.com/mastra-ai/mastra/commit/b342a68e1399cf1ece9ba11bda112db89d21118c), [`a7243e2`](https://github.com/mastra-ai/mastra/commit/a7243e2e58762667a6e3921e755e89d6bb0a3282), [`7fceb0a`](https://github.com/mastra-ai/mastra/commit/7fceb0a327d678e812f90f5387c5bc4f38bd039e), [`303a9c0`](https://github.com/mastra-ai/mastra/commit/303a9c0d7dd58795915979f06a0512359e4532fb), [`df64f9e`](https://github.com/mastra-ai/mastra/commit/df64f9ef814916fff9baedd861c988084e7c41de), [`370f8a6`](https://github.com/mastra-ai/mastra/commit/370f8a6480faec70fef18d72e5f7538f27004301), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`683e5a1`](https://github.com/mastra-ai/mastra/commit/683e5a1466e48b686825b2c11f84680f296138e4), [`3679378`](https://github.com/mastra-ai/mastra/commit/3679378673350aa314741dc826f837b1984149bc), [`7775bc2`](https://github.com/mastra-ai/mastra/commit/7775bc20bb1ad1ab24797fb420e4f96c65b0d8ec), [`623ffaf`](https://github.com/mastra-ai/mastra/commit/623ffaf2d969e11e99a0224633cf7b5a0815c857), [`9fc1613`](https://github.com/mastra-ai/mastra/commit/9fc16136400186648880fd990119ac15f7c02ee4), [`61f62aa`](https://github.com/mastra-ai/mastra/commit/61f62aa31bc88fe4ddf8da6240dbcfbeb07358bd), [`db1891a`](https://github.com/mastra-ai/mastra/commit/db1891a4707443720b7cd8a260dc7e1d49b3609c), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`652066b`](https://github.com/mastra-ai/mastra/commit/652066bd1efc6bb6813ba950ed1d7573e8b7d9d4), [`3e292ba`](https://github.com/mastra-ai/mastra/commit/3e292ba00837886d5d68a34cbc0d9b703c991883), [`418c136`](https://github.com/mastra-ai/mastra/commit/418c1366843d88e491bca3f87763899ce855ca29), [`ea8d386`](https://github.com/mastra-ai/mastra/commit/ea8d386cd8c5593664515fd5770c06bf2aa980ef), [`67b0f00`](https://github.com/mastra-ai/mastra/commit/67b0f005b520335c71fb85cbaa25df4ce8484a81), [`c2a4919`](https://github.com/mastra-ai/mastra/commit/c2a4919ba6797d8bdb1509e02287496eef69303e), [`c84b7d0`](https://github.com/mastra-ai/mastra/commit/c84b7d093c4657772140cbfd2b15ef72f3315ed5), [`0130986`](https://github.com/mastra-ai/mastra/commit/0130986fc62d0edcc626dd593282661dbb9af141)]:
|
|
302
|
-
- @mastra/core@0.19.0
|
|
303
|
-
|
|
304
|
-
## 0.11.7-alpha.0
|
|
305
|
-
|
|
306
|
-
### Patch Changes
|
|
307
|
-
|
|
308
|
-
- Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
|
|
309
|
-
|
|
310
|
-
- feat(voice-google): support additional authentication ([#8086](https://github.com/mastra-ai/mastra/pull/8086))
|
|
311
|
-
|
|
312
|
-
- Updated dependencies [[`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`a7243e2`](https://github.com/mastra-ai/mastra/commit/a7243e2e58762667a6e3921e755e89d6bb0a3282), [`7fceb0a`](https://github.com/mastra-ai/mastra/commit/7fceb0a327d678e812f90f5387c5bc4f38bd039e), [`df64f9e`](https://github.com/mastra-ai/mastra/commit/df64f9ef814916fff9baedd861c988084e7c41de), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`683e5a1`](https://github.com/mastra-ai/mastra/commit/683e5a1466e48b686825b2c11f84680f296138e4), [`3679378`](https://github.com/mastra-ai/mastra/commit/3679378673350aa314741dc826f837b1984149bc), [`7775bc2`](https://github.com/mastra-ai/mastra/commit/7775bc20bb1ad1ab24797fb420e4f96c65b0d8ec), [`db1891a`](https://github.com/mastra-ai/mastra/commit/db1891a4707443720b7cd8a260dc7e1d49b3609c), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`652066b`](https://github.com/mastra-ai/mastra/commit/652066bd1efc6bb6813ba950ed1d7573e8b7d9d4), [`ea8d386`](https://github.com/mastra-ai/mastra/commit/ea8d386cd8c5593664515fd5770c06bf2aa980ef), [`c2a4919`](https://github.com/mastra-ai/mastra/commit/c2a4919ba6797d8bdb1509e02287496eef69303e), [`0130986`](https://github.com/mastra-ai/mastra/commit/0130986fc62d0edcc626dd593282661dbb9af141)]:
|
|
313
|
-
- @mastra/core@0.19.0-alpha.1
|
|
314
|
-
|
|
315
|
-
## 0.11.6
|
|
316
|
-
|
|
317
|
-
### Patch Changes
|
|
318
|
-
|
|
319
|
-
- Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
|
|
320
|
-
|
|
321
|
-
- Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`3469fca`](https://github.com/mastra-ai/mastra/commit/3469fca7bb7e5e19369ff9f7044716a5e4b02585), [`a61f23f`](https://github.com/mastra-ai/mastra/commit/a61f23fbbca4b88b763d94f1d784c47895ed72d7), [`4b339b8`](https://github.com/mastra-ai/mastra/commit/4b339b8141c20d6a6d80583c7e8c5c05d8c19492), [`d1dc606`](https://github.com/mastra-ai/mastra/commit/d1dc6067b0557a71190b68d56ee15b48c26d2411), [`c45298a`](https://github.com/mastra-ai/mastra/commit/c45298a0a0791db35cf79f1199d77004da0704cb), [`c4a8204`](https://github.com/mastra-ai/mastra/commit/c4a82046bfd241d6044e234bc5917d5a01fe6b55), [`d3bd4d4`](https://github.com/mastra-ai/mastra/commit/d3bd4d482a685bbb67bfa89be91c90dca3fa71ad), [`c591dfc`](https://github.com/mastra-ai/mastra/commit/c591dfc1e600fae1dedffe239357d250e146378f), [`1920c5c`](https://github.com/mastra-ai/mastra/commit/1920c5c6d666f687785c73021196aa551e579e0d), [`b6a3b65`](https://github.com/mastra-ai/mastra/commit/b6a3b65d830fa0ca7754ad6481661d1f2c878f21), [`af3abb6`](https://github.com/mastra-ai/mastra/commit/af3abb6f7c7585d856e22d27f4e7d2ece2186b9a)]:
|
|
322
|
-
- @mastra/core@0.18.0
|
|
323
|
-
|
|
324
|
-
## 0.11.6-alpha.0
|
|
325
|
-
|
|
326
|
-
### Patch Changes
|
|
327
|
-
|
|
328
|
-
- Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
|
|
329
|
-
|
|
330
|
-
- Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`3469fca`](https://github.com/mastra-ai/mastra/commit/3469fca7bb7e5e19369ff9f7044716a5e4b02585), [`c4a8204`](https://github.com/mastra-ai/mastra/commit/c4a82046bfd241d6044e234bc5917d5a01fe6b55)]:
|
|
331
|
-
- @mastra/core@0.18.0-alpha.2
|
|
332
|
-
|
|
333
|
-
## 0.11.5
|
|
334
|
-
|
|
335
|
-
### Patch Changes
|
|
336
|
-
|
|
337
|
-
- clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
|
|
338
|
-
|
|
339
|
-
- Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
|
|
340
|
-
|
|
341
|
-
- Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`6590763`](https://github.com/mastra-ai/mastra/commit/65907630ef4bf4127067cecd1cb21b56f55d5f1b), [`fb84c21`](https://github.com/mastra-ai/mastra/commit/fb84c21859d09bdc8f158bd5412bdc4b5835a61c), [`5802bf5`](https://github.com/mastra-ai/mastra/commit/5802bf57f6182e4b67c28d7d91abed349a8d14f3), [`5bda53a`](https://github.com/mastra-ai/mastra/commit/5bda53a9747bfa7d876d754fc92c83a06e503f62), [`c2eade3`](https://github.com/mastra-ai/mastra/commit/c2eade3508ef309662f065e5f340d7840295dd53), [`f26a8fd`](https://github.com/mastra-ai/mastra/commit/f26a8fd99fcb0497a5d86c28324430d7f6a5fb83), [`222965a`](https://github.com/mastra-ai/mastra/commit/222965a98ce8197b86673ec594244650b5960257), [`6047778`](https://github.com/mastra-ai/mastra/commit/6047778e501df460648f31decddf8e443f36e373), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`9d4fc09`](https://github.com/mastra-ai/mastra/commit/9d4fc09b2ad55caa7738c7ceb3a905e454f74cdd), [`05c7abf`](https://github.com/mastra-ai/mastra/commit/05c7abfe105a015b7760c9bf33ff4419727502a0), [`0324ceb`](https://github.com/mastra-ai/mastra/commit/0324ceb8af9d16c12a531f90e575f6aab797ac81), [`d75ccf0`](https://github.com/mastra-ai/mastra/commit/d75ccf06dfd2582b916aa12624e3cd61b279edf1), [`0f9d227`](https://github.com/mastra-ai/mastra/commit/0f9d227890a98db33865abbea39daf407cd55ef7), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`60c9cec`](https://github.com/mastra-ai/mastra/commit/60c9cec7048a79a87440f7840c383875bd710d93), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`6cb1fcb`](https://github.com/mastra-ai/mastra/commit/6cb1fcbc8d0378ffed0d17784c96e68f30cb0272), [`aee4f00`](https://github.com/mastra-ai/mastra/commit/aee4f00e61e1a42e81a6d74ff149dbe69e32695a), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`547c621`](https://github.com/mastra-ai/mastra/commit/547c62104af3f7a551b3754e9cbdf0a3fbba15e4), [`897995e`](https://github.com/mastra-ai/mastra/commit/897995e630d572fe2891e7ede817938cabb43251), [`0fed8f2`](https://github.com/mastra-ai/mastra/commit/0fed8f2aa84b167b3415ea6f8f70755775132c8d), [`4f9ea8c`](https://github.com/mastra-ai/mastra/commit/4f9ea8c95ea74ba9abbf3b2ab6106c7d7bc45689), [`1a1fbe6`](https://github.com/mastra-ai/mastra/commit/1a1fbe66efb7d94abc373ed0dd9676adb8122454), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`87fd07f`](https://github.com/mastra-ai/mastra/commit/87fd07ff35387a38728967163460231b5d33ae3b), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`2685a78`](https://github.com/mastra-ai/mastra/commit/2685a78f224b8b04e20d4fab5ac1adb638190071), [`36f39c0`](https://github.com/mastra-ai/mastra/commit/36f39c00dc794952dc3c11aab91c2fa8bca74b11), [`239b5a4`](https://github.com/mastra-ai/mastra/commit/239b5a497aeae2e8b4d764f46217cfff2284788e), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
|
|
342
|
-
- @mastra/core@0.17.0
|
|
343
|
-
|
|
344
|
-
## 0.11.5-alpha.1
|
|
345
|
-
|
|
346
|
-
### Patch Changes
|
|
347
|
-
|
|
348
|
-
- clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
|
|
349
|
-
|
|
350
|
-
- Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`6590763`](https://github.com/mastra-ai/mastra/commit/65907630ef4bf4127067cecd1cb21b56f55d5f1b), [`c2eade3`](https://github.com/mastra-ai/mastra/commit/c2eade3508ef309662f065e5f340d7840295dd53), [`222965a`](https://github.com/mastra-ai/mastra/commit/222965a98ce8197b86673ec594244650b5960257), [`0324ceb`](https://github.com/mastra-ai/mastra/commit/0324ceb8af9d16c12a531f90e575f6aab797ac81), [`0f9d227`](https://github.com/mastra-ai/mastra/commit/0f9d227890a98db33865abbea39daf407cd55ef7), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`6cb1fcb`](https://github.com/mastra-ai/mastra/commit/6cb1fcbc8d0378ffed0d17784c96e68f30cb0272), [`2685a78`](https://github.com/mastra-ai/mastra/commit/2685a78f224b8b04e20d4fab5ac1adb638190071), [`239b5a4`](https://github.com/mastra-ai/mastra/commit/239b5a497aeae2e8b4d764f46217cfff2284788e)]:
|
|
351
|
-
- @mastra/core@0.17.0-alpha.6
|
|
352
|
-
|
|
353
|
-
## 0.11.5-alpha.0
|
|
354
|
-
|
|
355
|
-
### Patch Changes
|
|
356
|
-
|
|
357
|
-
- Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
|
|
358
|
-
|
|
359
|
-
- Updated dependencies [[`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`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), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
|
|
360
|
-
- @mastra/core@0.17.0-alpha.3
|
|
361
|
-
|
|
362
|
-
## 0.11.4
|
|
363
|
-
|
|
364
|
-
### Patch Changes
|
|
365
|
-
|
|
366
|
-
- 376913a: Update peerdeps
|
|
367
|
-
- Updated dependencies [8fbf79e]
|
|
368
|
-
- Updated dependencies [fd83526]
|
|
369
|
-
- Updated dependencies [d0b90ab]
|
|
370
|
-
- Updated dependencies [6f5eb7a]
|
|
371
|
-
- Updated dependencies [a01cf14]
|
|
372
|
-
- Updated dependencies [a9e50ee]
|
|
373
|
-
- Updated dependencies [5397eb4]
|
|
374
|
-
- Updated dependencies [c9f4e4a]
|
|
375
|
-
- Updated dependencies [0acbc80]
|
|
376
|
-
- @mastra/core@0.16.0
|
|
377
|
-
|
|
378
|
-
## 0.11.4-alpha.0
|
|
379
|
-
|
|
380
|
-
### Patch Changes
|
|
381
|
-
|
|
382
|
-
- 376913a: Update peerdeps
|
|
383
|
-
- Updated dependencies [8fbf79e]
|
|
384
|
-
- @mastra/core@0.16.0-alpha.1
|
|
385
|
-
|
|
386
|
-
## 0.11.3
|
|
387
|
-
|
|
388
|
-
### Patch Changes
|
|
389
|
-
|
|
390
|
-
- de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
|
|
391
|
-
- f0dfcac: updated core peerdep
|
|
392
|
-
- Updated dependencies [ab48c97]
|
|
393
|
-
- Updated dependencies [85ef90b]
|
|
394
|
-
- Updated dependencies [aedbbfa]
|
|
395
|
-
- Updated dependencies [ff89505]
|
|
396
|
-
- Updated dependencies [637f323]
|
|
397
|
-
- Updated dependencies [de3cbc6]
|
|
398
|
-
- Updated dependencies [c19bcf7]
|
|
399
|
-
- Updated dependencies [4474d04]
|
|
400
|
-
- Updated dependencies [183dc95]
|
|
401
|
-
- Updated dependencies [a1111e2]
|
|
402
|
-
- Updated dependencies [b42a961]
|
|
403
|
-
- Updated dependencies [61debef]
|
|
404
|
-
- Updated dependencies [9beaeff]
|
|
405
|
-
- Updated dependencies [29de0e1]
|
|
406
|
-
- Updated dependencies [f643c65]
|
|
407
|
-
- Updated dependencies [00c74e7]
|
|
408
|
-
- Updated dependencies [fef7375]
|
|
409
|
-
- Updated dependencies [e3d8fea]
|
|
410
|
-
- Updated dependencies [45e4d39]
|
|
411
|
-
- Updated dependencies [9eee594]
|
|
412
|
-
- Updated dependencies [7149d8d]
|
|
413
|
-
- Updated dependencies [822c2e8]
|
|
414
|
-
- Updated dependencies [979912c]
|
|
415
|
-
- Updated dependencies [7dcf4c0]
|
|
416
|
-
- Updated dependencies [4106a58]
|
|
417
|
-
- Updated dependencies [ad78bfc]
|
|
418
|
-
- Updated dependencies [0302f50]
|
|
419
|
-
- Updated dependencies [6ac697e]
|
|
420
|
-
- Updated dependencies [74db265]
|
|
421
|
-
- Updated dependencies [0ce418a]
|
|
422
|
-
- Updated dependencies [af90672]
|
|
423
|
-
- Updated dependencies [8387952]
|
|
424
|
-
- Updated dependencies [7f3b8da]
|
|
425
|
-
- Updated dependencies [905352b]
|
|
426
|
-
- Updated dependencies [599d04c]
|
|
427
|
-
- Updated dependencies [56041d0]
|
|
428
|
-
- Updated dependencies [3412597]
|
|
429
|
-
- Updated dependencies [5eca5d2]
|
|
430
|
-
- Updated dependencies [f2cda47]
|
|
431
|
-
- Updated dependencies [5de1555]
|
|
432
|
-
- Updated dependencies [cfd377a]
|
|
433
|
-
- Updated dependencies [1ed5a3e]
|
|
434
|
-
- @mastra/core@0.15.3
|
|
435
|
-
|
|
436
|
-
## 0.11.3-alpha.1
|
|
437
|
-
|
|
438
|
-
### Patch Changes
|
|
439
|
-
|
|
440
|
-
- [#7394](https://github.com/mastra-ai/mastra/pull/7394) [`f0dfcac`](https://github.com/mastra-ai/mastra/commit/f0dfcac4458bdf789b975e2d63e984f5d1e7c4d3) Thanks [@NikAiyer](https://github.com/NikAiyer)! - updated core peerdep
|
|
441
|
-
|
|
442
|
-
- Updated dependencies [[`7149d8d`](https://github.com/mastra-ai/mastra/commit/7149d8d4bdc1edf0008e0ca9b7925eb0b8b60dbe)]:
|
|
443
|
-
- @mastra/core@0.15.3-alpha.7
|
|
444
|
-
|
|
445
|
-
## 0.11.3-alpha.0
|
|
446
|
-
|
|
447
|
-
### Patch Changes
|
|
448
|
-
|
|
449
|
-
- [#7343](https://github.com/mastra-ai/mastra/pull/7343) [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e) Thanks [@LekoArts](https://github.com/LekoArts)! - Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
|
|
450
|
-
|
|
451
|
-
- Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
|
|
452
|
-
- @mastra/core@0.15.3-alpha.5
|
|
453
|
-
|
|
454
|
-
## 0.11.2
|
|
455
|
-
|
|
456
|
-
### Patch Changes
|
|
457
|
-
|
|
458
|
-
- [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
|
|
459
|
-
|
|
460
|
-
- Updated dependencies []:
|
|
461
|
-
- @mastra/core@0.15.2
|
|
462
|
-
|
|
463
|
-
## 0.11.1
|
|
464
|
-
|
|
465
|
-
### Patch Changes
|
|
466
|
-
|
|
467
|
-
- [`95b2aa9`](https://github.com/mastra-ai/mastra/commit/95b2aa908230919e67efcac0d69005a2d5745298) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdeps @mastra/core
|
|
468
|
-
|
|
469
|
-
- Updated dependencies []:
|
|
470
|
-
- @mastra/core@0.15.1
|
|
471
|
-
|
|
472
|
-
## 0.11.0
|
|
473
|
-
|
|
474
|
-
### Minor Changes
|
|
475
|
-
|
|
476
|
-
- [#7028](https://github.com/mastra-ai/mastra/pull/7028) [`da58ccc`](https://github.com/mastra-ai/mastra/commit/da58ccc1f2ac33da0cb97b00443fc6208b45bdec) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump core peerdependency
|
|
477
|
-
|
|
478
|
-
- [#7032](https://github.com/mastra-ai/mastra/pull/7032) [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump zod peerdep to 3.25.0 to support both v3/v4
|
|
479
|
-
|
|
480
|
-
### Patch Changes
|
|
481
|
-
|
|
482
|
-
- [#6942](https://github.com/mastra-ai/mastra/pull/6942) [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01) Thanks [@wardpeet](https://github.com/wardpeet)! - Add zod as peerdeps for all packages
|
|
483
|
-
|
|
484
|
-
- Updated dependencies [[`0778757`](https://github.com/mastra-ai/mastra/commit/07787570e4addbd501522037bd2542c3d9e26822), [`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b), [`be49354`](https://github.com/mastra-ai/mastra/commit/be493546dca540101923ec700feb31f9a13939f2), [`d591ab3`](https://github.com/mastra-ai/mastra/commit/d591ab3ecc985c1870c0db347f8d7a20f7360536), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`2e58325`](https://github.com/mastra-ai/mastra/commit/2e58325beb170f5b92f856e27d915cd26917e5e6), [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
|
|
485
|
-
- @mastra/core@0.15.0
|
|
486
|
-
|
|
487
|
-
## 0.11.0-alpha.2
|
|
488
|
-
|
|
489
|
-
### Minor Changes
|
|
490
|
-
|
|
491
|
-
- [#7032](https://github.com/mastra-ai/mastra/pull/7032) [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump zod peerdep to 3.25.0 to support both v3/v4
|
|
492
|
-
|
|
493
|
-
### Patch Changes
|
|
494
|
-
|
|
495
|
-
- Updated dependencies [[`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c)]:
|
|
496
|
-
- @mastra/core@0.15.0-alpha.4
|
|
497
|
-
|
|
498
|
-
## 0.11.0-alpha.1
|
|
499
|
-
|
|
500
|
-
### Minor Changes
|
|
501
|
-
|
|
502
|
-
- [#7028](https://github.com/mastra-ai/mastra/pull/7028) [`da58ccc`](https://github.com/mastra-ai/mastra/commit/da58ccc1f2ac33da0cb97b00443fc6208b45bdec) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump core peerdependency
|
|
503
|
-
|
|
504
|
-
### Patch Changes
|
|
505
|
-
|
|
506
|
-
- Updated dependencies []:
|
|
507
|
-
- @mastra/core@0.15.0-alpha.3
|
|
508
|
-
|
|
509
|
-
## 0.10.9-alpha.0
|
|
510
|
-
|
|
511
|
-
### Patch Changes
|
|
512
|
-
|
|
513
|
-
- [#6942](https://github.com/mastra-ai/mastra/pull/6942) [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01) Thanks [@wardpeet](https://github.com/wardpeet)! - Add zod as peerdeps for all packages
|
|
514
|
-
|
|
515
|
-
- Updated dependencies [[`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`be49354`](https://github.com/mastra-ai/mastra/commit/be493546dca540101923ec700feb31f9a13939f2), [`d591ab3`](https://github.com/mastra-ai/mastra/commit/d591ab3ecc985c1870c0db347f8d7a20f7360536), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01)]:
|
|
516
|
-
- @mastra/core@0.14.2-alpha.1
|
|
517
|
-
|
|
518
|
-
## 0.10.8
|
|
519
|
-
|
|
520
|
-
### Patch Changes
|
|
521
|
-
|
|
522
|
-
- 50210fc: dependencies updates:
|
|
523
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.2.0` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.2.0) (from `^6.1.0`, in `dependencies`)
|
|
524
|
-
- 03997ae: Update peerdeps
|
|
525
|
-
- Updated dependencies [227c7e6]
|
|
526
|
-
- Updated dependencies [12cae67]
|
|
527
|
-
- Updated dependencies [fd3a3eb]
|
|
528
|
-
- Updated dependencies [6faaee5]
|
|
529
|
-
- Updated dependencies [4232b14]
|
|
530
|
-
- Updated dependencies [a89de7e]
|
|
531
|
-
- Updated dependencies [5a37d0c]
|
|
532
|
-
- Updated dependencies [4bde0cb]
|
|
533
|
-
- Updated dependencies [cf4f357]
|
|
534
|
-
- Updated dependencies [ad888a2]
|
|
535
|
-
- Updated dependencies [481751d]
|
|
536
|
-
- Updated dependencies [2454423]
|
|
537
|
-
- Updated dependencies [194e395]
|
|
538
|
-
- Updated dependencies [a722c0b]
|
|
539
|
-
- Updated dependencies [c30bca8]
|
|
540
|
-
- Updated dependencies [3b5fec7]
|
|
541
|
-
- Updated dependencies [a8f129d]
|
|
542
|
-
- @mastra/core@0.14.0
|
|
543
|
-
|
|
544
|
-
## 0.10.8-alpha.1
|
|
545
|
-
|
|
546
|
-
### Patch Changes
|
|
547
|
-
|
|
548
|
-
- 03997ae: Update peerdeps
|
|
549
|
-
- @mastra/core@0.14.0-alpha.7
|
|
550
|
-
|
|
551
|
-
## 0.10.8-alpha.0
|
|
552
|
-
|
|
553
|
-
### Patch Changes
|
|
554
|
-
|
|
555
|
-
- 50210fc: dependencies updates:
|
|
556
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.2.0` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.2.0) (from `^6.1.0`, in `dependencies`)
|
|
557
|
-
- Updated dependencies [0a7f675]
|
|
558
|
-
- Updated dependencies [12cae67]
|
|
559
|
-
- Updated dependencies [5a37d0c]
|
|
560
|
-
- Updated dependencies [4bde0cb]
|
|
561
|
-
- Updated dependencies [1a80071]
|
|
562
|
-
- Updated dependencies [36a3be8]
|
|
563
|
-
- Updated dependencies [361757b]
|
|
564
|
-
- Updated dependencies [2bb9955]
|
|
565
|
-
- Updated dependencies [2454423]
|
|
566
|
-
- Updated dependencies [a44d91e]
|
|
567
|
-
- Updated dependencies [dfb91e9]
|
|
568
|
-
- Updated dependencies [a741dde]
|
|
569
|
-
- Updated dependencies [7cb3fc0]
|
|
570
|
-
- Updated dependencies [195eabb]
|
|
571
|
-
- Updated dependencies [b78b95b]
|
|
572
|
-
- @mastra/core@0.14.0-alpha.4
|
|
573
|
-
|
|
574
|
-
## 0.10.7
|
|
575
|
-
|
|
576
|
-
### Patch Changes
|
|
577
|
-
|
|
578
|
-
- 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
|
|
579
|
-
- Updated dependencies [cb36de0]
|
|
580
|
-
- Updated dependencies [d0496e6]
|
|
581
|
-
- Updated dependencies [a82b851]
|
|
582
|
-
- Updated dependencies [ea0c5f2]
|
|
583
|
-
- Updated dependencies [41a0a0e]
|
|
584
|
-
- Updated dependencies [2871020]
|
|
585
|
-
- Updated dependencies [94f4812]
|
|
586
|
-
- Updated dependencies [e202b82]
|
|
587
|
-
- Updated dependencies [e00f6a0]
|
|
588
|
-
- Updated dependencies [4a406ec]
|
|
589
|
-
- Updated dependencies [b0e43c1]
|
|
590
|
-
- Updated dependencies [5d377e5]
|
|
591
|
-
- Updated dependencies [1fb812e]
|
|
592
|
-
- Updated dependencies [35c5798]
|
|
593
|
-
- @mastra/core@0.13.0
|
|
594
|
-
|
|
595
|
-
## 0.10.7-alpha.0
|
|
596
|
-
|
|
597
|
-
### Patch Changes
|
|
598
|
-
|
|
599
|
-
- 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
|
|
600
|
-
- Updated dependencies [cb36de0]
|
|
601
|
-
- Updated dependencies [a82b851]
|
|
602
|
-
- Updated dependencies [41a0a0e]
|
|
603
|
-
- Updated dependencies [2871020]
|
|
604
|
-
- Updated dependencies [4a406ec]
|
|
605
|
-
- Updated dependencies [5d377e5]
|
|
606
|
-
- @mastra/core@0.13.0-alpha.2
|
|
607
|
-
|
|
608
|
-
## 0.10.6
|
|
609
|
-
|
|
610
|
-
### Patch Changes
|
|
611
|
-
|
|
612
|
-
- f42c4c2: update peer deps for packages to latest core range
|
|
613
|
-
- Updated dependencies [510e2c8]
|
|
614
|
-
- Updated dependencies [2f72fb2]
|
|
615
|
-
- Updated dependencies [27cc97a]
|
|
616
|
-
- Updated dependencies [3f89307]
|
|
617
|
-
- Updated dependencies [9eda7d4]
|
|
618
|
-
- Updated dependencies [9d49408]
|
|
619
|
-
- Updated dependencies [41daa63]
|
|
620
|
-
- Updated dependencies [ad0a58b]
|
|
621
|
-
- Updated dependencies [254a36b]
|
|
622
|
-
- Updated dependencies [2ecf658]
|
|
623
|
-
- Updated dependencies [7a7754f]
|
|
624
|
-
- Updated dependencies [fc92d80]
|
|
625
|
-
- Updated dependencies [e0f73c6]
|
|
626
|
-
- Updated dependencies [0b89602]
|
|
627
|
-
- Updated dependencies [4d37822]
|
|
628
|
-
- Updated dependencies [23a6a7c]
|
|
629
|
-
- Updated dependencies [cda801d]
|
|
630
|
-
- Updated dependencies [a77c823]
|
|
631
|
-
- Updated dependencies [ff9c125]
|
|
632
|
-
- Updated dependencies [09bca64]
|
|
633
|
-
- Updated dependencies [b8efbb9]
|
|
634
|
-
- Updated dependencies [71466e7]
|
|
635
|
-
- Updated dependencies [0c99fbe]
|
|
636
|
-
- @mastra/core@0.12.0
|
|
637
|
-
|
|
638
|
-
## 0.10.6-alpha.0
|
|
639
|
-
|
|
640
|
-
### Patch Changes
|
|
641
|
-
|
|
642
|
-
- f42c4c2: update peer deps for packages to latest core range
|
|
643
|
-
- @mastra/core@0.12.0-alpha.5
|
|
644
|
-
|
|
645
|
-
## 0.10.5
|
|
646
|
-
|
|
647
|
-
### Patch Changes
|
|
648
|
-
|
|
649
|
-
- ce088f5: Update all peerdeps to latest core
|
|
650
|
-
- @mastra/core@0.11.1
|
|
651
|
-
|
|
652
|
-
## 0.10.4
|
|
653
|
-
|
|
654
|
-
### Patch Changes
|
|
655
|
-
|
|
656
|
-
- 8e1b6e9: dependencies updates:
|
|
657
|
-
- Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
|
|
658
|
-
- Updated dependencies [15e9d26]
|
|
659
|
-
- Updated dependencies [d1baedb]
|
|
660
|
-
- Updated dependencies [d8f2d19]
|
|
661
|
-
- Updated dependencies [4d21bf2]
|
|
662
|
-
- Updated dependencies [07d6d88]
|
|
663
|
-
- Updated dependencies [9d52b17]
|
|
664
|
-
- Updated dependencies [2097952]
|
|
665
|
-
- Updated dependencies [792c4c0]
|
|
666
|
-
- Updated dependencies [5d74aab]
|
|
667
|
-
- Updated dependencies [a8b194f]
|
|
668
|
-
- Updated dependencies [4fb0cc2]
|
|
669
|
-
- Updated dependencies [d2a7a31]
|
|
670
|
-
- Updated dependencies [502fe05]
|
|
671
|
-
- Updated dependencies [144eb0b]
|
|
672
|
-
- Updated dependencies [8ba1b51]
|
|
673
|
-
- Updated dependencies [4efcfa0]
|
|
674
|
-
- Updated dependencies [0e17048]
|
|
675
|
-
- @mastra/core@0.10.7
|
|
676
|
-
|
|
677
|
-
## 0.10.4-alpha.0
|
|
678
|
-
|
|
679
|
-
### Patch Changes
|
|
680
|
-
|
|
681
|
-
- 8e1b6e9: dependencies updates:
|
|
682
|
-
- Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
|
|
683
|
-
- Updated dependencies [15e9d26]
|
|
684
|
-
- Updated dependencies [07d6d88]
|
|
685
|
-
- Updated dependencies [5d74aab]
|
|
686
|
-
- Updated dependencies [144eb0b]
|
|
687
|
-
- @mastra/core@0.10.7-alpha.2
|
|
688
|
-
|
|
689
|
-
## 0.10.3
|
|
690
|
-
|
|
691
|
-
### Patch Changes
|
|
692
|
-
|
|
693
|
-
- 63f6b7d: dependencies updates:
|
|
694
|
-
- Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
|
|
695
|
-
- Updated dependencies [63f6b7d]
|
|
696
|
-
- Updated dependencies [12a95fc]
|
|
697
|
-
- Updated dependencies [4b0f8a6]
|
|
698
|
-
- Updated dependencies [51264a5]
|
|
699
|
-
- Updated dependencies [8e6f677]
|
|
700
|
-
- Updated dependencies [d70c420]
|
|
701
|
-
- Updated dependencies [ee9af57]
|
|
702
|
-
- Updated dependencies [36f1c36]
|
|
703
|
-
- Updated dependencies [2a16996]
|
|
704
|
-
- Updated dependencies [10d352e]
|
|
705
|
-
- Updated dependencies [9589624]
|
|
706
|
-
- Updated dependencies [53d3c37]
|
|
707
|
-
- Updated dependencies [751c894]
|
|
708
|
-
- Updated dependencies [577ce3a]
|
|
709
|
-
- Updated dependencies [9260b3a]
|
|
710
|
-
- @mastra/core@0.10.6
|
|
711
|
-
|
|
712
|
-
## 0.10.3-alpha.0
|
|
713
|
-
|
|
714
|
-
### Patch Changes
|
|
715
|
-
|
|
716
|
-
- 63f6b7d: dependencies updates:
|
|
717
|
-
- Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
|
|
718
|
-
- Updated dependencies [63f6b7d]
|
|
719
|
-
- Updated dependencies [36f1c36]
|
|
720
|
-
- Updated dependencies [10d352e]
|
|
721
|
-
- Updated dependencies [53d3c37]
|
|
722
|
-
- @mastra/core@0.10.6-alpha.0
|
|
723
|
-
|
|
724
|
-
## 0.10.2
|
|
725
|
-
|
|
726
|
-
### Patch Changes
|
|
727
|
-
|
|
728
|
-
- 166a101: dependencies updates:
|
|
729
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.1.0` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.1.0) (from `^6.0.1`, in `dependencies`)
|
|
730
|
-
- 1ccccff: dependencies updates:
|
|
731
|
-
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
732
|
-
- 1ccccff: dependencies updates:
|
|
733
|
-
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
734
|
-
- Updated dependencies [d1ed912]
|
|
735
|
-
- Updated dependencies [f6fd25f]
|
|
736
|
-
- Updated dependencies [dffb67b]
|
|
737
|
-
- Updated dependencies [f1f1f1b]
|
|
738
|
-
- Updated dependencies [925ab94]
|
|
739
|
-
- Updated dependencies [f9816ae]
|
|
740
|
-
- Updated dependencies [82090c1]
|
|
741
|
-
- Updated dependencies [1b443fd]
|
|
742
|
-
- Updated dependencies [ce97900]
|
|
743
|
-
- Updated dependencies [f1309d3]
|
|
744
|
-
- Updated dependencies [14a2566]
|
|
745
|
-
- Updated dependencies [f7f8293]
|
|
746
|
-
- Updated dependencies [48eddb9]
|
|
747
|
-
- @mastra/core@0.10.4
|
|
748
|
-
|
|
749
|
-
## 0.10.2-alpha.1
|
|
750
|
-
|
|
751
|
-
### Patch Changes
|
|
752
|
-
|
|
753
|
-
- 1ccccff: dependencies updates:
|
|
754
|
-
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
755
|
-
- 1ccccff: dependencies updates:
|
|
756
|
-
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
757
|
-
- Updated dependencies [f6fd25f]
|
|
758
|
-
- Updated dependencies [dffb67b]
|
|
759
|
-
- Updated dependencies [f1309d3]
|
|
760
|
-
- Updated dependencies [f7f8293]
|
|
761
|
-
- @mastra/core@0.10.4-alpha.1
|
|
762
|
-
|
|
763
|
-
## 0.10.2-alpha.0
|
|
764
|
-
|
|
765
|
-
### Patch Changes
|
|
766
|
-
|
|
767
|
-
- 166a101: dependencies updates:
|
|
768
|
-
- Updated dependency [`@google-cloud/text-to-speech@^6.1.0` ↗︎](https://www.npmjs.com/package/@google-cloud/text-to-speech/v/6.1.0) (from `^6.0.1`, in `dependencies`)
|
|
769
|
-
- Updated dependencies [d1ed912]
|
|
770
|
-
- Updated dependencies [f1f1f1b]
|
|
771
|
-
- Updated dependencies [f9816ae]
|
|
772
|
-
- Updated dependencies [82090c1]
|
|
773
|
-
- Updated dependencies [1b443fd]
|
|
774
|
-
- Updated dependencies [ce97900]
|
|
775
|
-
- Updated dependencies [14a2566]
|
|
776
|
-
- @mastra/core@0.10.4-alpha.0
|
|
777
|
-
|
|
778
|
-
## 0.10.1
|
|
779
|
-
|
|
780
|
-
### Patch Changes
|
|
781
|
-
|
|
782
|
-
- f0d559f: Fix peerdeps for alpha channel
|
|
783
|
-
- Updated dependencies [ee77e78]
|
|
784
|
-
- Updated dependencies [592a2db]
|
|
785
|
-
- Updated dependencies [e5dc18d]
|
|
786
|
-
- Updated dependencies [ab5adbe]
|
|
787
|
-
- Updated dependencies [1e8bb40]
|
|
788
|
-
- Updated dependencies [1b5fc55]
|
|
789
|
-
- Updated dependencies [195c428]
|
|
790
|
-
- Updated dependencies [f73e11b]
|
|
791
|
-
- Updated dependencies [37643b8]
|
|
792
|
-
- Updated dependencies [99fd6cf]
|
|
793
|
-
- Updated dependencies [c5bf1ce]
|
|
794
|
-
- Updated dependencies [add596e]
|
|
795
|
-
- Updated dependencies [8dc94d8]
|
|
796
|
-
- Updated dependencies [ecebbeb]
|
|
797
|
-
- Updated dependencies [79d5145]
|
|
798
|
-
- Updated dependencies [12b7002]
|
|
799
|
-
- Updated dependencies [2901125]
|
|
800
|
-
- @mastra/core@0.10.2
|
|
801
|
-
|
|
802
|
-
## 0.10.1-alpha.0
|
|
803
|
-
|
|
804
|
-
### Patch Changes
|
|
805
|
-
|
|
806
|
-
- f0d559f: Fix peerdeps for alpha channel
|
|
807
|
-
- Updated dependencies [1e8bb40]
|
|
808
|
-
- @mastra/core@0.10.2-alpha.2
|
|
809
|
-
|
|
810
|
-
## 0.10.0
|
|
811
|
-
|
|
812
|
-
### Minor Changes
|
|
813
|
-
|
|
814
|
-
- 83da932: Move @mastra/core to peerdeps
|
|
815
|
-
|
|
816
|
-
### Patch Changes
|
|
817
|
-
|
|
818
|
-
- Updated dependencies [b3a3d63]
|
|
819
|
-
- Updated dependencies [344f453]
|
|
820
|
-
- Updated dependencies [0a3ae6d]
|
|
821
|
-
- Updated dependencies [95911be]
|
|
822
|
-
- Updated dependencies [f53a6ac]
|
|
823
|
-
- Updated dependencies [5eb5a99]
|
|
824
|
-
- Updated dependencies [7e632c5]
|
|
825
|
-
- Updated dependencies [1e9fbfa]
|
|
826
|
-
- Updated dependencies [eabdcd9]
|
|
827
|
-
- Updated dependencies [90be034]
|
|
828
|
-
- Updated dependencies [99f050a]
|
|
829
|
-
- Updated dependencies [d0ee3c6]
|
|
830
|
-
- Updated dependencies [b2ae5aa]
|
|
831
|
-
- Updated dependencies [23f258c]
|
|
832
|
-
- Updated dependencies [a7292b0]
|
|
833
|
-
- Updated dependencies [0dcb9f0]
|
|
834
|
-
- Updated dependencies [2672a05]
|
|
835
|
-
- @mastra/core@0.10.0
|
|
836
|
-
|
|
837
|
-
## 0.2.0-alpha.1
|
|
838
|
-
|
|
839
|
-
### Minor Changes
|
|
840
|
-
|
|
841
|
-
- 83da932: Move @mastra/core to peerdeps
|
|
842
|
-
|
|
843
|
-
### Patch Changes
|
|
844
|
-
|
|
845
|
-
- Updated dependencies [b3a3d63]
|
|
846
|
-
- Updated dependencies [344f453]
|
|
847
|
-
- Updated dependencies [0a3ae6d]
|
|
848
|
-
- Updated dependencies [95911be]
|
|
849
|
-
- Updated dependencies [5eb5a99]
|
|
850
|
-
- Updated dependencies [7e632c5]
|
|
851
|
-
- Updated dependencies [1e9fbfa]
|
|
852
|
-
- Updated dependencies [b2ae5aa]
|
|
853
|
-
- Updated dependencies [a7292b0]
|
|
854
|
-
- Updated dependencies [0dcb9f0]
|
|
855
|
-
- @mastra/core@0.10.0-alpha.1
|
|
856
|
-
|
|
857
|
-
## 0.1.19-alpha.0
|
|
858
|
-
|
|
859
|
-
### Patch Changes
|
|
860
|
-
|
|
861
|
-
- Updated dependencies [f53a6ac]
|
|
862
|
-
- Updated dependencies [eabdcd9]
|
|
863
|
-
- Updated dependencies [90be034]
|
|
864
|
-
- Updated dependencies [99f050a]
|
|
865
|
-
- Updated dependencies [d0ee3c6]
|
|
866
|
-
- Updated dependencies [23f258c]
|
|
867
|
-
- Updated dependencies [2672a05]
|
|
868
|
-
- @mastra/core@0.9.5-alpha.0
|
|
869
|
-
|
|
870
|
-
## 0.1.18
|
|
871
|
-
|
|
872
|
-
### Patch Changes
|
|
873
|
-
|
|
874
|
-
- Updated dependencies [396be50]
|
|
875
|
-
- Updated dependencies [ab80e7e]
|
|
876
|
-
- Updated dependencies [c3bd795]
|
|
877
|
-
- Updated dependencies [da082f8]
|
|
878
|
-
- Updated dependencies [a5810ce]
|
|
879
|
-
- Updated dependencies [3e9c131]
|
|
880
|
-
- Updated dependencies [3171b5b]
|
|
881
|
-
- Updated dependencies [973e5ac]
|
|
882
|
-
- Updated dependencies [daf942f]
|
|
883
|
-
- Updated dependencies [0b8b868]
|
|
884
|
-
- Updated dependencies [9e1eff5]
|
|
885
|
-
- Updated dependencies [6fa1ad1]
|
|
886
|
-
- Updated dependencies [c28d7a0]
|
|
887
|
-
- Updated dependencies [edf1e88]
|
|
888
|
-
- @mastra/core@0.9.4
|
|
889
|
-
|
|
890
|
-
## 0.1.18-alpha.4
|
|
891
|
-
|
|
892
|
-
### Patch Changes
|
|
893
|
-
|
|
894
|
-
- Updated dependencies [3e9c131]
|
|
895
|
-
- @mastra/core@0.9.4-alpha.4
|
|
896
|
-
|
|
897
|
-
## 0.1.18-alpha.3
|
|
898
|
-
|
|
899
|
-
### Patch Changes
|
|
900
|
-
|
|
901
|
-
- Updated dependencies [396be50]
|
|
902
|
-
- Updated dependencies [c3bd795]
|
|
903
|
-
- Updated dependencies [da082f8]
|
|
904
|
-
- Updated dependencies [a5810ce]
|
|
905
|
-
- @mastra/core@0.9.4-alpha.3
|
|
906
|
-
|
|
907
|
-
## 0.1.18-alpha.2
|
|
908
|
-
|
|
909
|
-
### Patch Changes
|
|
910
|
-
|
|
911
|
-
- Updated dependencies [3171b5b]
|
|
912
|
-
- Updated dependencies [973e5ac]
|
|
913
|
-
- Updated dependencies [9e1eff5]
|
|
914
|
-
- @mastra/core@0.9.4-alpha.2
|
|
915
|
-
|
|
916
|
-
## 0.1.18-alpha.1
|
|
917
|
-
|
|
918
|
-
### Patch Changes
|
|
919
|
-
|
|
920
|
-
- Updated dependencies [ab80e7e]
|
|
921
|
-
- Updated dependencies [6fa1ad1]
|
|
922
|
-
- Updated dependencies [c28d7a0]
|
|
923
|
-
- Updated dependencies [edf1e88]
|
|
924
|
-
- @mastra/core@0.9.4-alpha.1
|
|
925
|
-
|
|
926
|
-
## 0.1.18-alpha.0
|
|
927
|
-
|
|
928
|
-
### Patch Changes
|
|
929
|
-
|
|
930
|
-
- Updated dependencies [daf942f]
|
|
931
|
-
- Updated dependencies [0b8b868]
|
|
932
|
-
- @mastra/core@0.9.4-alpha.0
|
|
933
|
-
|
|
934
|
-
## 0.1.17
|
|
935
|
-
|
|
936
|
-
### Patch Changes
|
|
937
|
-
|
|
938
|
-
- Updated dependencies [e450778]
|
|
939
|
-
- Updated dependencies [8902157]
|
|
940
|
-
- Updated dependencies [ca0dc88]
|
|
941
|
-
- Updated dependencies [526c570]
|
|
942
|
-
- Updated dependencies [d7a6a33]
|
|
943
|
-
- Updated dependencies [9cd1a46]
|
|
944
|
-
- Updated dependencies [b5d2de0]
|
|
945
|
-
- Updated dependencies [644f8ad]
|
|
946
|
-
- Updated dependencies [70dbf51]
|
|
947
|
-
- @mastra/core@0.9.3
|
|
948
|
-
|
|
949
|
-
## 0.1.17-alpha.1
|
|
950
|
-
|
|
951
|
-
### Patch Changes
|
|
952
|
-
|
|
953
|
-
- Updated dependencies [e450778]
|
|
954
|
-
- Updated dependencies [8902157]
|
|
955
|
-
- Updated dependencies [ca0dc88]
|
|
956
|
-
- Updated dependencies [9cd1a46]
|
|
957
|
-
- Updated dependencies [70dbf51]
|
|
958
|
-
- @mastra/core@0.9.3-alpha.1
|
|
959
|
-
|
|
960
|
-
## 0.1.17-alpha.0
|
|
961
|
-
|
|
962
|
-
### Patch Changes
|
|
963
|
-
|
|
964
|
-
- Updated dependencies [526c570]
|
|
965
|
-
- Updated dependencies [b5d2de0]
|
|
966
|
-
- Updated dependencies [644f8ad]
|
|
967
|
-
- @mastra/core@0.9.3-alpha.0
|
|
968
|
-
|
|
969
|
-
## 0.1.16
|
|
970
|
-
|
|
971
|
-
### Patch Changes
|
|
972
|
-
|
|
973
|
-
- Updated dependencies [6052aa6]
|
|
974
|
-
- Updated dependencies [967b41c]
|
|
975
|
-
- Updated dependencies [3d2fb5c]
|
|
976
|
-
- Updated dependencies [26738f4]
|
|
977
|
-
- Updated dependencies [4155f47]
|
|
978
|
-
- Updated dependencies [7eeb2bc]
|
|
979
|
-
- Updated dependencies [b804723]
|
|
980
|
-
- Updated dependencies [8607972]
|
|
981
|
-
- Updated dependencies [ccef9f9]
|
|
982
|
-
- Updated dependencies [0097d50]
|
|
983
|
-
- Updated dependencies [7eeb2bc]
|
|
984
|
-
- Updated dependencies [17826a9]
|
|
985
|
-
- Updated dependencies [7d8b7c7]
|
|
986
|
-
- Updated dependencies [fba031f]
|
|
987
|
-
- Updated dependencies [3a5f1e1]
|
|
988
|
-
- Updated dependencies [51e6923]
|
|
989
|
-
- Updated dependencies [8398d89]
|
|
990
|
-
- @mastra/core@0.9.2
|
|
991
|
-
|
|
992
|
-
## 0.1.16-alpha.6
|
|
993
|
-
|
|
994
|
-
### Patch Changes
|
|
995
|
-
|
|
996
|
-
- Updated dependencies [6052aa6]
|
|
997
|
-
- Updated dependencies [7d8b7c7]
|
|
998
|
-
- Updated dependencies [3a5f1e1]
|
|
999
|
-
- Updated dependencies [8398d89]
|
|
1000
|
-
- @mastra/core@0.9.2-alpha.6
|
|
1001
|
-
|
|
1002
|
-
## 0.1.16-alpha.5
|
|
1003
|
-
|
|
1004
|
-
### Patch Changes
|
|
1005
|
-
|
|
1006
|
-
- Updated dependencies [3d2fb5c]
|
|
1007
|
-
- Updated dependencies [7eeb2bc]
|
|
1008
|
-
- Updated dependencies [8607972]
|
|
1009
|
-
- Updated dependencies [7eeb2bc]
|
|
1010
|
-
- Updated dependencies [fba031f]
|
|
1011
|
-
- @mastra/core@0.9.2-alpha.5
|
|
1012
|
-
|
|
1013
|
-
## 0.1.16-alpha.4
|
|
1014
|
-
|
|
1015
|
-
### Patch Changes
|
|
1016
|
-
|
|
1017
|
-
- Updated dependencies [ccef9f9]
|
|
1018
|
-
- Updated dependencies [51e6923]
|
|
1019
|
-
- @mastra/core@0.9.2-alpha.4
|
|
1020
|
-
|
|
1021
|
-
## 0.1.16-alpha.3
|
|
1022
|
-
|
|
1023
|
-
### Patch Changes
|
|
1024
|
-
|
|
1025
|
-
- Updated dependencies [967b41c]
|
|
1026
|
-
- Updated dependencies [4155f47]
|
|
1027
|
-
- Updated dependencies [17826a9]
|
|
1028
|
-
- @mastra/core@0.9.2-alpha.3
|
|
1029
|
-
|
|
1030
|
-
## 0.1.16-alpha.2
|
|
1031
|
-
|
|
1032
|
-
### Patch Changes
|
|
1033
|
-
|
|
1034
|
-
- Updated dependencies [26738f4]
|
|
1035
|
-
- @mastra/core@0.9.2-alpha.2
|
|
1036
|
-
|
|
1037
|
-
## 0.1.16-alpha.1
|
|
1038
|
-
|
|
1039
|
-
### Patch Changes
|
|
1040
|
-
|
|
1041
|
-
- Updated dependencies [b804723]
|
|
1042
|
-
- @mastra/core@0.9.2-alpha.1
|
|
1043
|
-
|
|
1044
|
-
## 0.1.16-alpha.0
|
|
1045
|
-
|
|
1046
|
-
### Patch Changes
|
|
1047
|
-
|
|
1048
|
-
- Updated dependencies [0097d50]
|
|
1049
|
-
- @mastra/core@0.9.2-alpha.0
|
|
1050
|
-
|
|
1051
|
-
## 0.1.15
|
|
1052
|
-
|
|
1053
|
-
### Patch Changes
|
|
1054
|
-
|
|
1055
|
-
- fd4f5b9: dependencies updates:
|
|
1056
|
-
- Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
|
|
1057
|
-
- Updated dependencies [405b63d]
|
|
1058
|
-
- Updated dependencies [81fb7f6]
|
|
1059
|
-
- Updated dependencies [20275d4]
|
|
1060
|
-
- Updated dependencies [7d1892c]
|
|
1061
|
-
- Updated dependencies [a90a082]
|
|
1062
|
-
- Updated dependencies [2d17c73]
|
|
1063
|
-
- Updated dependencies [61e92f5]
|
|
1064
|
-
- Updated dependencies [35955b0]
|
|
1065
|
-
- Updated dependencies [6262bd5]
|
|
1066
|
-
- Updated dependencies [c1409ef]
|
|
1067
|
-
- Updated dependencies [3e7b69d]
|
|
1068
|
-
- Updated dependencies [e4943b8]
|
|
1069
|
-
- Updated dependencies [11d4485]
|
|
1070
|
-
- Updated dependencies [479f490]
|
|
1071
|
-
- Updated dependencies [c23a81c]
|
|
1072
|
-
- Updated dependencies [2d4001d]
|
|
1073
|
-
- Updated dependencies [c71013a]
|
|
1074
|
-
- Updated dependencies [1d3b1cd]
|
|
1075
|
-
- @mastra/core@0.9.1
|
|
1076
|
-
|
|
1077
|
-
## 0.1.15-alpha.8
|
|
1078
|
-
|
|
1079
|
-
### Patch Changes
|
|
1080
|
-
|
|
1081
|
-
- Updated dependencies [2d17c73]
|
|
1082
|
-
- @mastra/core@0.9.1-alpha.8
|
|
1083
|
-
|
|
1084
|
-
## 0.1.15-alpha.7
|
|
1085
|
-
|
|
1086
|
-
### Patch Changes
|
|
1087
|
-
|
|
1088
|
-
- Updated dependencies [1d3b1cd]
|
|
1089
|
-
- @mastra/core@0.9.1-alpha.7
|
|
1090
|
-
|
|
1091
|
-
## 0.1.15-alpha.6
|
|
1092
|
-
|
|
1093
|
-
### Patch Changes
|
|
1094
|
-
|
|
1095
|
-
- Updated dependencies [c23a81c]
|
|
1096
|
-
- @mastra/core@0.9.1-alpha.6
|
|
1097
|
-
|
|
1098
|
-
## 0.1.15-alpha.5
|
|
1099
|
-
|
|
1100
|
-
### Patch Changes
|
|
1101
|
-
|
|
1102
|
-
- Updated dependencies [3e7b69d]
|
|
1103
|
-
- @mastra/core@0.9.1-alpha.5
|
|
1104
|
-
|
|
1105
|
-
## 0.1.15-alpha.4
|
|
1106
|
-
|
|
1107
|
-
### Patch Changes
|
|
1108
|
-
|
|
1109
|
-
- fd4f5b9: dependencies updates:
|
|
1110
|
-
- Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
|
|
1111
|
-
- Updated dependencies [e4943b8]
|
|
1112
|
-
- Updated dependencies [479f490]
|
|
1113
|
-
- @mastra/core@0.9.1-alpha.4
|
|
1114
|
-
|
|
1115
|
-
## 0.1.15-alpha.3
|
|
1116
|
-
|
|
1117
|
-
### Patch Changes
|
|
1118
|
-
|
|
1119
|
-
- Updated dependencies [6262bd5]
|
|
1120
|
-
- @mastra/core@0.9.1-alpha.3
|
|
1121
|
-
|
|
1122
|
-
## 0.1.15-alpha.2
|
|
1123
|
-
|
|
1124
|
-
### Patch Changes
|
|
1125
|
-
|
|
1126
|
-
- Updated dependencies [405b63d]
|
|
1127
|
-
- Updated dependencies [61e92f5]
|
|
1128
|
-
- Updated dependencies [c71013a]
|
|
1129
|
-
- @mastra/core@0.9.1-alpha.2
|
|
1130
|
-
|
|
1131
|
-
## 0.1.15-alpha.1
|
|
1132
|
-
|
|
1133
|
-
### Patch Changes
|
|
1134
|
-
|
|
1135
|
-
- Updated dependencies [20275d4]
|
|
1136
|
-
- Updated dependencies [7d1892c]
|
|
1137
|
-
- Updated dependencies [a90a082]
|
|
1138
|
-
- Updated dependencies [35955b0]
|
|
1139
|
-
- Updated dependencies [c1409ef]
|
|
1140
|
-
- Updated dependencies [11d4485]
|
|
1141
|
-
- Updated dependencies [2d4001d]
|
|
1142
|
-
- @mastra/core@0.9.1-alpha.1
|
|
1143
|
-
|
|
1144
|
-
## 0.1.15-alpha.0
|
|
1145
|
-
|
|
1146
|
-
### Patch Changes
|
|
1147
|
-
|
|
1148
|
-
- Updated dependencies [81fb7f6]
|
|
1149
|
-
- @mastra/core@0.9.1-alpha.0
|
|
1150
|
-
|
|
1151
|
-
## 0.1.14
|
|
1152
|
-
|
|
1153
|
-
### Patch Changes
|
|
1154
|
-
|
|
1155
|
-
- Updated dependencies [000a6d4]
|
|
1156
|
-
- Updated dependencies [08bb78e]
|
|
1157
|
-
- Updated dependencies [ed2f549]
|
|
1158
|
-
- Updated dependencies [7e92011]
|
|
1159
|
-
- Updated dependencies [9ee4293]
|
|
1160
|
-
- Updated dependencies [03f3cd0]
|
|
1161
|
-
- Updated dependencies [c0f22b4]
|
|
1162
|
-
- Updated dependencies [71d9444]
|
|
1163
|
-
- Updated dependencies [157c741]
|
|
1164
|
-
- Updated dependencies [8a8a73b]
|
|
1165
|
-
- Updated dependencies [0a033fa]
|
|
1166
|
-
- Updated dependencies [fe3ae4d]
|
|
1167
|
-
- Updated dependencies [9c26508]
|
|
1168
|
-
- Updated dependencies [0f4eae3]
|
|
1169
|
-
- Updated dependencies [16a8648]
|
|
1170
|
-
- Updated dependencies [6f92295]
|
|
1171
|
-
- @mastra/core@0.9.0
|
|
1172
|
-
|
|
1173
|
-
## 0.1.14-alpha.8
|
|
1174
|
-
|
|
1175
|
-
### Patch Changes
|
|
1176
|
-
|
|
1177
|
-
- Updated dependencies [000a6d4]
|
|
1178
|
-
- Updated dependencies [ed2f549]
|
|
1179
|
-
- Updated dependencies [c0f22b4]
|
|
1180
|
-
- Updated dependencies [0a033fa]
|
|
1181
|
-
- Updated dependencies [9c26508]
|
|
1182
|
-
- Updated dependencies [0f4eae3]
|
|
1183
|
-
- Updated dependencies [16a8648]
|
|
1184
|
-
- @mastra/core@0.9.0-alpha.8
|
|
1185
|
-
|
|
1186
|
-
## 0.1.14-alpha.7
|
|
1187
|
-
|
|
1188
|
-
### Patch Changes
|
|
1189
|
-
|
|
1190
|
-
- Updated dependencies [71d9444]
|
|
1191
|
-
- @mastra/core@0.9.0-alpha.7
|
|
1192
|
-
|
|
1193
|
-
## 0.1.14-alpha.6
|
|
1194
|
-
|
|
1195
|
-
### Patch Changes
|
|
1196
|
-
|
|
1197
|
-
- Updated dependencies [157c741]
|
|
1198
|
-
- @mastra/core@0.9.0-alpha.6
|
|
1199
|
-
|
|
1200
|
-
## 0.1.14-alpha.5
|
|
1201
|
-
|
|
1202
|
-
### Patch Changes
|
|
1203
|
-
|
|
1204
|
-
- Updated dependencies [08bb78e]
|
|
1205
|
-
- @mastra/core@0.9.0-alpha.5
|
|
1206
|
-
|
|
1207
|
-
## 0.1.14-alpha.4
|
|
1208
|
-
|
|
1209
|
-
### Patch Changes
|
|
1210
|
-
|
|
1211
|
-
- Updated dependencies [7e92011]
|
|
1212
|
-
- @mastra/core@0.9.0-alpha.4
|
|
1213
|
-
|
|
1214
|
-
## 0.1.14-alpha.3
|
|
1215
|
-
|
|
1216
|
-
### Patch Changes
|
|
1217
|
-
|
|
1218
|
-
- Updated dependencies [fe3ae4d]
|
|
1219
|
-
- @mastra/core@0.9.0-alpha.3
|
|
1220
|
-
|
|
1221
|
-
## 0.1.14-alpha.2
|
|
1222
|
-
|
|
1223
|
-
### Patch Changes
|
|
1224
|
-
|
|
1225
|
-
- Updated dependencies [9ee4293]
|
|
1226
|
-
- @mastra/core@0.8.4-alpha.2
|
|
1227
|
-
|
|
1228
|
-
## 0.1.14-alpha.1
|
|
1229
|
-
|
|
1230
|
-
### Patch Changes
|
|
1231
|
-
|
|
1232
|
-
- Updated dependencies [8a8a73b]
|
|
1233
|
-
- Updated dependencies [6f92295]
|
|
1234
|
-
- @mastra/core@0.8.4-alpha.1
|
|
1235
|
-
|
|
1236
|
-
## 0.1.14-alpha.0
|
|
1237
|
-
|
|
1238
|
-
### Patch Changes
|
|
1239
|
-
|
|
1240
|
-
- Updated dependencies [03f3cd0]
|
|
1241
|
-
- @mastra/core@0.8.4-alpha.0
|
|
1242
|
-
|
|
1243
|
-
## 0.1.13
|
|
1244
|
-
|
|
1245
|
-
### Patch Changes
|
|
1246
|
-
|
|
1247
|
-
- 37bb612: Add Elastic-2.0 licensing for packages
|
|
1248
|
-
- Updated dependencies [d72318f]
|
|
1249
|
-
- Updated dependencies [0bcc862]
|
|
1250
|
-
- Updated dependencies [10a8caf]
|
|
1251
|
-
- Updated dependencies [359b089]
|
|
1252
|
-
- Updated dependencies [32e7b71]
|
|
1253
|
-
- Updated dependencies [37bb612]
|
|
1254
|
-
- Updated dependencies [7f1b291]
|
|
1255
|
-
- @mastra/core@0.8.3
|
|
1256
|
-
|
|
1257
|
-
## 0.1.13-alpha.5
|
|
1258
|
-
|
|
1259
|
-
### Patch Changes
|
|
1260
|
-
|
|
1261
|
-
- Updated dependencies [d72318f]
|
|
1262
|
-
- @mastra/core@0.8.3-alpha.5
|
|
1263
|
-
|
|
1264
|
-
## 0.1.13-alpha.4
|
|
1265
|
-
|
|
1266
|
-
### Patch Changes
|
|
1267
|
-
|
|
1268
|
-
- Updated dependencies [7f1b291]
|
|
1269
|
-
- @mastra/core@0.8.3-alpha.4
|
|
1270
|
-
|
|
1271
|
-
## 0.1.13-alpha.3
|
|
1272
|
-
|
|
1273
|
-
### Patch Changes
|
|
1274
|
-
|
|
1275
|
-
- Updated dependencies [10a8caf]
|
|
1276
|
-
- @mastra/core@0.8.3-alpha.3
|
|
1277
|
-
|
|
1278
|
-
## 0.1.13-alpha.2
|
|
1279
|
-
|
|
1280
|
-
### Patch Changes
|
|
1281
|
-
|
|
1282
|
-
- Updated dependencies [0bcc862]
|
|
1283
|
-
- @mastra/core@0.8.3-alpha.2
|
|
1284
|
-
|
|
1285
|
-
## 0.1.13-alpha.1
|
|
1286
|
-
|
|
1287
|
-
### Patch Changes
|
|
1288
|
-
|
|
1289
|
-
- 37bb612: Add Elastic-2.0 licensing for packages
|
|
1290
|
-
- Updated dependencies [32e7b71]
|
|
1291
|
-
- Updated dependencies [37bb612]
|
|
1292
|
-
- @mastra/core@0.8.3-alpha.1
|
|
1293
|
-
|
|
1294
|
-
## 0.1.13-alpha.0
|
|
1295
|
-
|
|
1296
|
-
### Patch Changes
|
|
1297
|
-
|
|
1298
|
-
- Updated dependencies [359b089]
|
|
1299
|
-
- @mastra/core@0.8.3-alpha.0
|
|
1300
|
-
|
|
1301
|
-
## 0.1.12
|
|
1302
|
-
|
|
1303
|
-
### Patch Changes
|
|
1304
|
-
|
|
1305
|
-
- Updated dependencies [a06aadc]
|
|
1306
|
-
- @mastra/core@0.8.2
|
|
1307
|
-
|
|
1308
|
-
## 0.1.12-alpha.0
|
|
1309
|
-
|
|
1310
|
-
### Patch Changes
|
|
1311
|
-
|
|
1312
|
-
- Updated dependencies [a06aadc]
|
|
1313
|
-
- @mastra/core@0.8.2-alpha.0
|
|
1314
|
-
|
|
1315
|
-
## 0.1.11
|
|
1316
|
-
|
|
1317
|
-
### Patch Changes
|
|
1318
|
-
|
|
1319
|
-
- Updated dependencies [99e2998]
|
|
1320
|
-
- Updated dependencies [8fdb414]
|
|
1321
|
-
- @mastra/core@0.8.1
|
|
1322
|
-
|
|
1323
|
-
## 0.1.11-alpha.0
|
|
1324
|
-
|
|
1325
|
-
### Patch Changes
|
|
1326
|
-
|
|
1327
|
-
- Updated dependencies [99e2998]
|
|
1328
|
-
- Updated dependencies [8fdb414]
|
|
1329
|
-
- @mastra/core@0.8.1-alpha.0
|
|
1330
|
-
|
|
1331
|
-
## 0.1.10
|
|
1332
|
-
|
|
1333
|
-
### Patch Changes
|
|
1334
|
-
|
|
1335
|
-
- Updated dependencies [56c31b7]
|
|
1336
|
-
- Updated dependencies [619c39d]
|
|
1337
|
-
- Updated dependencies [5ae0180]
|
|
1338
|
-
- Updated dependencies [fe56be0]
|
|
1339
|
-
- Updated dependencies [93875ed]
|
|
1340
|
-
- Updated dependencies [107bcfe]
|
|
1341
|
-
- Updated dependencies [9bfa12b]
|
|
1342
|
-
- Updated dependencies [515ebfb]
|
|
1343
|
-
- Updated dependencies [5b4e19f]
|
|
1344
|
-
- Updated dependencies [dbbbf80]
|
|
1345
|
-
- Updated dependencies [a0967a0]
|
|
1346
|
-
- Updated dependencies [fca3b21]
|
|
1347
|
-
- Updated dependencies [88fa727]
|
|
1348
|
-
- Updated dependencies [f37f535]
|
|
1349
|
-
- Updated dependencies [a3f0e90]
|
|
1350
|
-
- Updated dependencies [4d67826]
|
|
1351
|
-
- Updated dependencies [6330967]
|
|
1352
|
-
- Updated dependencies [8393832]
|
|
1353
|
-
- Updated dependencies [6330967]
|
|
1354
|
-
- Updated dependencies [99d43b9]
|
|
1355
|
-
- Updated dependencies [d7e08e8]
|
|
1356
|
-
- Updated dependencies [febc8a6]
|
|
1357
|
-
- Updated dependencies [7599d77]
|
|
1358
|
-
- Updated dependencies [0118361]
|
|
1359
|
-
- Updated dependencies [619c39d]
|
|
1360
|
-
- Updated dependencies [cafae83]
|
|
1361
|
-
- Updated dependencies [8076ecf]
|
|
1362
|
-
- Updated dependencies [8df4a77]
|
|
1363
|
-
- Updated dependencies [304397c]
|
|
1364
|
-
- @mastra/core@0.8.0
|
|
1365
|
-
|
|
1366
|
-
## 0.1.10-alpha.8
|
|
1367
|
-
|
|
1368
|
-
### Patch Changes
|
|
1369
|
-
|
|
1370
|
-
- Updated dependencies [8df4a77]
|
|
1371
|
-
- @mastra/core@0.8.0-alpha.8
|
|
1372
|
-
|
|
1373
|
-
## 0.1.10-alpha.7
|
|
1374
|
-
|
|
1375
|
-
### Patch Changes
|
|
1376
|
-
|
|
1377
|
-
- Updated dependencies [febc8a6]
|
|
1378
|
-
- @mastra/core@0.8.0-alpha.7
|
|
1379
|
-
|
|
1380
|
-
## 0.1.10-alpha.6
|
|
1381
|
-
|
|
1382
|
-
### Patch Changes
|
|
1383
|
-
|
|
1384
|
-
- Updated dependencies [a3f0e90]
|
|
1385
|
-
- @mastra/core@0.8.0-alpha.6
|
|
1386
|
-
|
|
1387
|
-
## 0.1.10-alpha.5
|
|
1388
|
-
|
|
1389
|
-
### Patch Changes
|
|
1390
|
-
|
|
1391
|
-
- Updated dependencies [93875ed]
|
|
1392
|
-
- @mastra/core@0.8.0-alpha.5
|
|
1393
|
-
|
|
1394
|
-
## 0.1.10-alpha.4
|
|
1395
|
-
|
|
1396
|
-
### Patch Changes
|
|
1397
|
-
|
|
1398
|
-
- Updated dependencies [d7e08e8]
|
|
1399
|
-
- @mastra/core@0.8.0-alpha.4
|
|
1400
|
-
|
|
1401
|
-
## 0.1.10-alpha.3
|
|
1402
|
-
|
|
1403
|
-
### Patch Changes
|
|
1404
|
-
|
|
1405
|
-
- Updated dependencies [5ae0180]
|
|
1406
|
-
- Updated dependencies [9bfa12b]
|
|
1407
|
-
- Updated dependencies [515ebfb]
|
|
1408
|
-
- Updated dependencies [88fa727]
|
|
1409
|
-
- Updated dependencies [f37f535]
|
|
1410
|
-
- Updated dependencies [4d67826]
|
|
1411
|
-
- Updated dependencies [6330967]
|
|
1412
|
-
- Updated dependencies [8393832]
|
|
1413
|
-
- Updated dependencies [6330967]
|
|
1414
|
-
- @mastra/core@0.8.0-alpha.3
|
|
1415
|
-
|
|
1416
|
-
## 0.1.10-alpha.2
|
|
1417
|
-
|
|
1418
|
-
### Patch Changes
|
|
1419
|
-
|
|
1420
|
-
- Updated dependencies [56c31b7]
|
|
1421
|
-
- Updated dependencies [dbbbf80]
|
|
1422
|
-
- Updated dependencies [99d43b9]
|
|
1423
|
-
- @mastra/core@0.8.0-alpha.2
|
|
1424
|
-
|
|
1425
|
-
## 0.1.10-alpha.1
|
|
1426
|
-
|
|
1427
|
-
### Patch Changes
|
|
1428
|
-
|
|
1429
|
-
- Updated dependencies [619c39d]
|
|
1430
|
-
- Updated dependencies [fe56be0]
|
|
1431
|
-
- Updated dependencies [a0967a0]
|
|
1432
|
-
- Updated dependencies [fca3b21]
|
|
1433
|
-
- Updated dependencies [0118361]
|
|
1434
|
-
- Updated dependencies [619c39d]
|
|
1435
|
-
- @mastra/core@0.8.0-alpha.1
|
|
1436
|
-
|
|
1437
|
-
## 0.1.10-alpha.0
|
|
1438
|
-
|
|
1439
|
-
### Patch Changes
|
|
1440
|
-
|
|
1441
|
-
- Updated dependencies [107bcfe]
|
|
1442
|
-
- Updated dependencies [5b4e19f]
|
|
1443
|
-
- Updated dependencies [7599d77]
|
|
1444
|
-
- Updated dependencies [cafae83]
|
|
1445
|
-
- Updated dependencies [8076ecf]
|
|
1446
|
-
- Updated dependencies [304397c]
|
|
1447
|
-
- @mastra/core@0.7.1-alpha.0
|
|
1448
|
-
|
|
1449
|
-
## 0.1.9
|
|
1450
|
-
|
|
1451
|
-
### Patch Changes
|
|
1452
|
-
|
|
1453
|
-
- f7be454: fix(deps): update dependency @google-cloud/text-to-speech to v6
|
|
1454
|
-
- Updated dependencies [b4fbc59]
|
|
1455
|
-
- Updated dependencies [a838fde]
|
|
1456
|
-
- Updated dependencies [a8bd4cf]
|
|
1457
|
-
- Updated dependencies [7a3eeb0]
|
|
1458
|
-
- Updated dependencies [0b54522]
|
|
1459
|
-
- Updated dependencies [b3b34f5]
|
|
1460
|
-
- Updated dependencies [1af25d5]
|
|
1461
|
-
- Updated dependencies [a4686e8]
|
|
1462
|
-
- Updated dependencies [6530ad1]
|
|
1463
|
-
- Updated dependencies [27439ad]
|
|
1464
|
-
- @mastra/core@0.7.0
|
|
1465
|
-
|
|
1466
|
-
## 0.1.9-alpha.3
|
|
1467
|
-
|
|
1468
|
-
### Patch Changes
|
|
1469
|
-
|
|
1470
|
-
- Updated dependencies [b3b34f5]
|
|
1471
|
-
- Updated dependencies [a4686e8]
|
|
1472
|
-
- @mastra/core@0.7.0-alpha.3
|
|
1473
|
-
|
|
1474
|
-
## 0.1.9-alpha.2
|
|
1475
|
-
|
|
1476
|
-
### Patch Changes
|
|
1477
|
-
|
|
1478
|
-
- f7be454: fix(deps): update dependency @google-cloud/text-to-speech to v6
|
|
1479
|
-
- Updated dependencies [a838fde]
|
|
1480
|
-
- Updated dependencies [a8bd4cf]
|
|
1481
|
-
- Updated dependencies [7a3eeb0]
|
|
1482
|
-
- Updated dependencies [6530ad1]
|
|
1483
|
-
- @mastra/core@0.7.0-alpha.2
|
|
1484
|
-
|
|
1485
|
-
## 0.1.9-alpha.1
|
|
1486
|
-
|
|
1487
|
-
### Patch Changes
|
|
1488
|
-
|
|
1489
|
-
- Updated dependencies [0b54522]
|
|
1490
|
-
- Updated dependencies [1af25d5]
|
|
1491
|
-
- Updated dependencies [27439ad]
|
|
1492
|
-
- @mastra/core@0.7.0-alpha.1
|
|
1493
|
-
|
|
1494
|
-
## 0.1.9-alpha.0
|
|
1495
|
-
|
|
1496
|
-
### Patch Changes
|
|
1497
|
-
|
|
1498
|
-
- Updated dependencies [b4fbc59]
|
|
1499
|
-
- @mastra/core@0.6.5-alpha.0
|
|
1500
|
-
|
|
1501
|
-
## 0.1.8
|
|
1502
|
-
|
|
1503
|
-
### Patch Changes
|
|
1504
|
-
|
|
1505
|
-
- Updated dependencies [6794797]
|
|
1506
|
-
- Updated dependencies [fb68a80]
|
|
1507
|
-
- Updated dependencies [b56a681]
|
|
1508
|
-
- Updated dependencies [248cb07]
|
|
1509
|
-
- @mastra/core@0.6.4
|
|
1510
|
-
|
|
1511
|
-
## 0.1.8-alpha.1
|
|
1512
|
-
|
|
1513
|
-
### Patch Changes
|
|
1514
|
-
|
|
1515
|
-
- Updated dependencies [6794797]
|
|
1516
|
-
- @mastra/core@0.6.4-alpha.1
|
|
1517
|
-
|
|
1518
|
-
## 0.1.8-alpha.0
|
|
1519
|
-
|
|
1520
|
-
### Patch Changes
|
|
1521
|
-
|
|
1522
|
-
- Updated dependencies [fb68a80]
|
|
1523
|
-
- Updated dependencies [b56a681]
|
|
1524
|
-
- Updated dependencies [248cb07]
|
|
1525
|
-
- @mastra/core@0.6.4-alpha.0
|
|
1526
|
-
|
|
1527
|
-
## 0.1.7
|
|
1528
|
-
|
|
1529
|
-
### Patch Changes
|
|
1530
|
-
|
|
1531
|
-
- 404640e: AgentNetwork changeset
|
|
1532
|
-
- Updated dependencies [404640e]
|
|
1533
|
-
- Updated dependencies [3bce733]
|
|
1534
|
-
- @mastra/core@0.6.3
|
|
1535
|
-
|
|
1536
|
-
## 0.1.7-alpha.1
|
|
1537
|
-
|
|
1538
|
-
### Patch Changes
|
|
1539
|
-
|
|
1540
|
-
- Updated dependencies [3bce733]
|
|
1541
|
-
- @mastra/core@0.6.3-alpha.1
|
|
1542
|
-
|
|
1543
|
-
## 0.1.7-alpha.0
|
|
1544
|
-
|
|
1545
|
-
### Patch Changes
|
|
1546
|
-
|
|
1547
|
-
- 404640e: AgentNetwork changeset
|
|
1548
|
-
- Updated dependencies [404640e]
|
|
1549
|
-
- @mastra/core@0.6.3-alpha.0
|
|
1550
|
-
|
|
1551
|
-
## 0.1.6
|
|
1552
|
-
|
|
1553
|
-
### Patch Changes
|
|
1554
|
-
|
|
1555
|
-
- Updated dependencies [beaf1c2]
|
|
1556
|
-
- Updated dependencies [3084e13]
|
|
1557
|
-
- @mastra/core@0.6.2
|
|
1558
|
-
|
|
1559
|
-
## 0.1.6-alpha.0
|
|
1560
|
-
|
|
1561
|
-
### Patch Changes
|
|
1562
|
-
|
|
1563
|
-
- Updated dependencies [beaf1c2]
|
|
1564
|
-
- Updated dependencies [3084e13]
|
|
1565
|
-
- @mastra/core@0.6.2-alpha.0
|
|
1566
|
-
|
|
1567
|
-
## 0.1.5
|
|
1568
|
-
|
|
1569
|
-
### Patch Changes
|
|
1570
|
-
|
|
1571
|
-
- Updated dependencies [fc2f89c]
|
|
1572
|
-
- Updated dependencies [dfbb131]
|
|
1573
|
-
- Updated dependencies [f4854ee]
|
|
1574
|
-
- Updated dependencies [afaf73f]
|
|
1575
|
-
- Updated dependencies [0850b4c]
|
|
1576
|
-
- Updated dependencies [7bcfaee]
|
|
1577
|
-
- Updated dependencies [44631b1]
|
|
1578
|
-
- Updated dependencies [9116d70]
|
|
1579
|
-
- Updated dependencies [6e559a0]
|
|
1580
|
-
- Updated dependencies [5f43505]
|
|
1581
|
-
- @mastra/core@0.6.1
|
|
1582
|
-
|
|
1583
|
-
## 0.1.5-alpha.2
|
|
1584
|
-
|
|
1585
|
-
### Patch Changes
|
|
1586
|
-
|
|
1587
|
-
- Updated dependencies [fc2f89c]
|
|
1588
|
-
- Updated dependencies [dfbb131]
|
|
1589
|
-
- Updated dependencies [0850b4c]
|
|
1590
|
-
- Updated dependencies [9116d70]
|
|
1591
|
-
- @mastra/core@0.6.1-alpha.2
|
|
1592
|
-
|
|
1593
|
-
## 0.1.5-alpha.1
|
|
1594
|
-
|
|
1595
|
-
### Patch Changes
|
|
1596
|
-
|
|
1597
|
-
- Updated dependencies [f4854ee]
|
|
1598
|
-
- Updated dependencies [afaf73f]
|
|
1599
|
-
- Updated dependencies [44631b1]
|
|
1600
|
-
- Updated dependencies [6e559a0]
|
|
1601
|
-
- Updated dependencies [5f43505]
|
|
1602
|
-
- @mastra/core@0.6.1-alpha.1
|
|
1603
|
-
|
|
1604
|
-
## 0.1.5-alpha.0
|
|
1605
|
-
|
|
1606
|
-
### Patch Changes
|
|
1607
|
-
|
|
1608
|
-
- Updated dependencies [7bcfaee]
|
|
1609
|
-
- @mastra/core@0.6.1-alpha.0
|
|
1610
|
-
|
|
1611
|
-
## 0.1.4
|
|
1612
|
-
|
|
1613
|
-
### Patch Changes
|
|
1614
|
-
|
|
1615
|
-
- Updated dependencies [16b98d9]
|
|
1616
|
-
- Updated dependencies [1c8cda4]
|
|
1617
|
-
- Updated dependencies [95b4144]
|
|
1618
|
-
- Updated dependencies [3729dbd]
|
|
1619
|
-
- Updated dependencies [c2144f4]
|
|
1620
|
-
- @mastra/core@0.6.0
|
|
1621
|
-
|
|
1622
|
-
## 0.1.4-alpha.1
|
|
1623
|
-
|
|
1624
|
-
### Patch Changes
|
|
1625
|
-
|
|
1626
|
-
- Updated dependencies [16b98d9]
|
|
1627
|
-
- Updated dependencies [1c8cda4]
|
|
1628
|
-
- Updated dependencies [95b4144]
|
|
1629
|
-
- Updated dependencies [c2144f4]
|
|
1630
|
-
- @mastra/core@0.6.0-alpha.1
|
|
1631
|
-
|
|
1632
|
-
## 0.1.4-alpha.0
|
|
1633
|
-
|
|
1634
|
-
### Patch Changes
|
|
1635
|
-
|
|
1636
|
-
- Updated dependencies [3729dbd]
|
|
1637
|
-
- @mastra/core@0.5.1-alpha.0
|
|
1638
|
-
|
|
1639
|
-
## 0.1.3
|
|
1640
|
-
|
|
1641
|
-
### Patch Changes
|
|
1642
|
-
|
|
1643
|
-
- fd4a1d7: Update cjs bundling to make sure files are split
|
|
1644
|
-
- Updated dependencies [a910463]
|
|
1645
|
-
- Updated dependencies [59df7b6]
|
|
1646
|
-
- Updated dependencies [22643eb]
|
|
1647
|
-
- Updated dependencies [6feb23f]
|
|
1648
|
-
- Updated dependencies [f2d6727]
|
|
1649
|
-
- Updated dependencies [7a7a547]
|
|
1650
|
-
- Updated dependencies [29f3a82]
|
|
1651
|
-
- Updated dependencies [3d0e290]
|
|
1652
|
-
- Updated dependencies [e9fbac5]
|
|
1653
|
-
- Updated dependencies [301e4ee]
|
|
1654
|
-
- Updated dependencies [ee667a2]
|
|
1655
|
-
- Updated dependencies [dfbe4e9]
|
|
1656
|
-
- Updated dependencies [dab255b]
|
|
1657
|
-
- Updated dependencies [1e8bcbc]
|
|
1658
|
-
- Updated dependencies [f6678e4]
|
|
1659
|
-
- Updated dependencies [9e81f35]
|
|
1660
|
-
- Updated dependencies [c93798b]
|
|
1661
|
-
- Updated dependencies [a85ab24]
|
|
1662
|
-
- Updated dependencies [dbd9f2d]
|
|
1663
|
-
- Updated dependencies [59df7b6]
|
|
1664
|
-
- Updated dependencies [caefaa2]
|
|
1665
|
-
- Updated dependencies [c151ae6]
|
|
1666
|
-
- Updated dependencies [52e0418]
|
|
1667
|
-
- Updated dependencies [d79aedf]
|
|
1668
|
-
- Updated dependencies [03236ec]
|
|
1669
|
-
- Updated dependencies [3764e71]
|
|
1670
|
-
- Updated dependencies [df982db]
|
|
1671
|
-
- Updated dependencies [a171b37]
|
|
1672
|
-
- Updated dependencies [506f1d5]
|
|
1673
|
-
- Updated dependencies [02ffb7b]
|
|
1674
|
-
- Updated dependencies [0461849]
|
|
1675
|
-
- Updated dependencies [2259379]
|
|
1676
|
-
- Updated dependencies [aeb5e36]
|
|
1677
|
-
- Updated dependencies [f2301de]
|
|
1678
|
-
- Updated dependencies [358f069]
|
|
1679
|
-
- Updated dependencies [fd4a1d7]
|
|
1680
|
-
- Updated dependencies [c139344]
|
|
1681
|
-
- @mastra/core@0.5.0
|
|
1682
|
-
|
|
1683
|
-
## 0.1.3-alpha.12
|
|
1684
|
-
|
|
1685
|
-
### Patch Changes
|
|
1686
|
-
|
|
1687
|
-
- Updated dependencies [a85ab24]
|
|
1688
|
-
- @mastra/core@0.5.0-alpha.12
|
|
1689
|
-
|
|
1690
|
-
## 0.1.3-alpha.11
|
|
1691
|
-
|
|
1692
|
-
### Patch Changes
|
|
1693
|
-
|
|
1694
|
-
- fd4a1d7: Update cjs bundling to make sure files are split
|
|
1695
|
-
- Updated dependencies [7a7a547]
|
|
1696
|
-
- Updated dependencies [c93798b]
|
|
1697
|
-
- Updated dependencies [dbd9f2d]
|
|
1698
|
-
- Updated dependencies [a171b37]
|
|
1699
|
-
- Updated dependencies [fd4a1d7]
|
|
1700
|
-
- @mastra/core@0.5.0-alpha.11
|
|
1701
|
-
|
|
1702
|
-
## 0.1.3-alpha.10
|
|
1703
|
-
|
|
1704
|
-
### Patch Changes
|
|
1705
|
-
|
|
1706
|
-
- Updated dependencies [a910463]
|
|
1707
|
-
- @mastra/core@0.5.0-alpha.10
|
|
1708
|
-
|
|
1709
|
-
## 0.1.3-alpha.9
|
|
1710
|
-
|
|
1711
|
-
### Patch Changes
|
|
1712
|
-
|
|
1713
|
-
- Updated dependencies [e9fbac5]
|
|
1714
|
-
- Updated dependencies [1e8bcbc]
|
|
1715
|
-
- Updated dependencies [aeb5e36]
|
|
1716
|
-
- Updated dependencies [f2301de]
|
|
1717
|
-
- @mastra/core@0.5.0-alpha.9
|
|
1718
|
-
|
|
1719
|
-
## 0.1.3-alpha.8
|
|
1720
|
-
|
|
1721
|
-
### Patch Changes
|
|
1722
|
-
|
|
1723
|
-
- Updated dependencies [506f1d5]
|
|
1724
|
-
- @mastra/core@0.5.0-alpha.8
|
|
1725
|
-
|
|
1726
|
-
## 0.1.3-alpha.7
|
|
1727
|
-
|
|
1728
|
-
### Patch Changes
|
|
1729
|
-
|
|
1730
|
-
- Updated dependencies [ee667a2]
|
|
1731
|
-
- @mastra/core@0.5.0-alpha.7
|
|
1732
|
-
|
|
1733
|
-
## 0.1.3-alpha.6
|
|
1734
|
-
|
|
1735
|
-
### Patch Changes
|
|
1736
|
-
|
|
1737
|
-
- Updated dependencies [f6678e4]
|
|
1738
|
-
- @mastra/core@0.5.0-alpha.6
|
|
1739
|
-
|
|
1740
|
-
## 0.1.3-alpha.5
|
|
1741
|
-
|
|
1742
|
-
### Patch Changes
|
|
1743
|
-
|
|
1744
|
-
- Updated dependencies [22643eb]
|
|
1745
|
-
- Updated dependencies [6feb23f]
|
|
1746
|
-
- Updated dependencies [f2d6727]
|
|
1747
|
-
- Updated dependencies [301e4ee]
|
|
1748
|
-
- Updated dependencies [dfbe4e9]
|
|
1749
|
-
- Updated dependencies [9e81f35]
|
|
1750
|
-
- Updated dependencies [caefaa2]
|
|
1751
|
-
- Updated dependencies [c151ae6]
|
|
1752
|
-
- Updated dependencies [52e0418]
|
|
1753
|
-
- Updated dependencies [03236ec]
|
|
1754
|
-
- Updated dependencies [3764e71]
|
|
1755
|
-
- Updated dependencies [df982db]
|
|
1756
|
-
- Updated dependencies [0461849]
|
|
1757
|
-
- Updated dependencies [2259379]
|
|
1758
|
-
- Updated dependencies [358f069]
|
|
1759
|
-
- @mastra/core@0.5.0-alpha.5
|
|
1760
|
-
|
|
1761
|
-
## 0.1.3-alpha.4
|
|
1762
|
-
|
|
1763
|
-
### Patch Changes
|
|
1764
|
-
|
|
1765
|
-
- Updated dependencies [d79aedf]
|
|
1766
|
-
- @mastra/core@0.5.0-alpha.4
|
|
1767
|
-
|
|
1768
|
-
## 0.1.3-alpha.3
|
|
1769
|
-
|
|
1770
|
-
### Patch Changes
|
|
1771
|
-
|
|
1772
|
-
- Updated dependencies [3d0e290]
|
|
1773
|
-
- @mastra/core@0.5.0-alpha.3
|
|
1774
|
-
|
|
1775
|
-
## 0.1.3-alpha.2
|
|
1776
|
-
|
|
1777
|
-
### Patch Changes
|
|
1778
|
-
|
|
1779
|
-
- Updated dependencies [02ffb7b]
|
|
1780
|
-
- @mastra/core@0.5.0-alpha.2
|
|
1781
|
-
|
|
1782
|
-
## 0.1.3-alpha.1
|
|
1783
|
-
|
|
1784
|
-
### Patch Changes
|
|
1785
|
-
|
|
1786
|
-
- Updated dependencies [dab255b]
|
|
1787
|
-
- @mastra/core@0.5.0-alpha.1
|
|
1788
|
-
|
|
1789
|
-
## 0.1.3-alpha.0
|
|
1790
|
-
|
|
1791
|
-
### Patch Changes
|
|
1792
|
-
|
|
1793
|
-
- Updated dependencies [59df7b6]
|
|
1794
|
-
- Updated dependencies [29f3a82]
|
|
1795
|
-
- Updated dependencies [59df7b6]
|
|
1796
|
-
- Updated dependencies [c139344]
|
|
1797
|
-
- @mastra/core@0.5.0-alpha.0
|
|
1798
|
-
|
|
1799
|
-
## 0.1.2
|
|
1800
|
-
|
|
1801
|
-
### Patch Changes
|
|
1802
|
-
|
|
1803
|
-
- Updated dependencies [1da20e7]
|
|
1804
|
-
- @mastra/core@0.4.4
|
|
1805
|
-
|
|
1806
|
-
## 0.1.2-alpha.0
|
|
1807
|
-
|
|
1808
|
-
### Patch Changes
|
|
1809
|
-
|
|
1810
|
-
- Updated dependencies [1da20e7]
|
|
1811
|
-
- @mastra/core@0.4.4-alpha.0
|
|
1812
|
-
|
|
1813
|
-
## 0.1.1
|
|
1814
|
-
|
|
1815
|
-
### Patch Changes
|
|
1816
|
-
|
|
1817
|
-
- bb4f447: Add support for commonjs
|
|
1818
|
-
- Updated dependencies [0d185b1]
|
|
1819
|
-
- Updated dependencies [ed55f1d]
|
|
1820
|
-
- Updated dependencies [06aa827]
|
|
1821
|
-
- Updated dependencies [0fd78ac]
|
|
1822
|
-
- Updated dependencies [2512a93]
|
|
1823
|
-
- Updated dependencies [e62de74]
|
|
1824
|
-
- Updated dependencies [0d25b75]
|
|
1825
|
-
- Updated dependencies [fd14a3f]
|
|
1826
|
-
- Updated dependencies [8d13b14]
|
|
1827
|
-
- Updated dependencies [3f369a2]
|
|
1828
|
-
- Updated dependencies [3ee4831]
|
|
1829
|
-
- Updated dependencies [4d4e1e1]
|
|
1830
|
-
- Updated dependencies [bb4f447]
|
|
1831
|
-
- Updated dependencies [108793c]
|
|
1832
|
-
- Updated dependencies [5f28f44]
|
|
1833
|
-
- Updated dependencies [dabecf4]
|
|
1834
|
-
- @mastra/core@0.4.3
|
|
1835
|
-
|
|
1836
|
-
## 0.1.1-alpha.4
|
|
1837
|
-
|
|
1838
|
-
### Patch Changes
|
|
1839
|
-
|
|
1840
|
-
- Updated dependencies [dabecf4]
|
|
1841
|
-
- @mastra/core@0.4.3-alpha.4
|
|
1842
|
-
|
|
1843
|
-
## 0.1.1-alpha.3
|
|
1844
|
-
|
|
1845
|
-
### Patch Changes
|
|
1846
|
-
|
|
1847
|
-
- bb4f447: Add support for commonjs
|
|
1848
|
-
- Updated dependencies [0fd78ac]
|
|
1849
|
-
- Updated dependencies [0d25b75]
|
|
1850
|
-
- Updated dependencies [fd14a3f]
|
|
1851
|
-
- Updated dependencies [3f369a2]
|
|
1852
|
-
- Updated dependencies [4d4e1e1]
|
|
1853
|
-
- Updated dependencies [bb4f447]
|
|
1854
|
-
- @mastra/core@0.4.3-alpha.3
|
|
1855
|
-
|
|
1856
|
-
## 0.1.1-alpha.2
|
|
1857
|
-
|
|
1858
|
-
### Patch Changes
|
|
1859
|
-
|
|
1860
|
-
- Updated dependencies [2512a93]
|
|
1861
|
-
- Updated dependencies [e62de74]
|
|
1862
|
-
- @mastra/core@0.4.3-alpha.2
|
|
1863
|
-
|
|
1864
|
-
## 0.1.1-alpha.1
|
|
1865
|
-
|
|
1866
|
-
### Patch Changes
|
|
1867
|
-
|
|
1868
|
-
- Updated dependencies [0d185b1]
|
|
1869
|
-
- Updated dependencies [ed55f1d]
|
|
1870
|
-
- Updated dependencies [8d13b14]
|
|
1871
|
-
- Updated dependencies [3ee4831]
|
|
1872
|
-
- Updated dependencies [108793c]
|
|
1873
|
-
- Updated dependencies [5f28f44]
|
|
1874
|
-
- @mastra/core@0.4.3-alpha.1
|
|
1875
|
-
|
|
1876
|
-
## 0.1.1-alpha.0
|
|
1877
|
-
|
|
1878
|
-
### Patch Changes
|
|
1879
|
-
|
|
1880
|
-
- Updated dependencies [06aa827]
|
|
1881
|
-
- @mastra/core@0.4.3-alpha.0
|
|
1882
|
-
|
|
1883
|
-
## 0.1.0
|
|
1884
|
-
|
|
1885
|
-
### Patch Changes
|
|
1886
|
-
|
|
1887
|
-
- 5e0f727: deprecate @mastra/speech-google for @mastra/voice-google
|
|
1888
|
-
- Updated dependencies [7fceae1]
|
|
1889
|
-
- Updated dependencies [8d94c3e]
|
|
1890
|
-
- Updated dependencies [99dcdb5]
|
|
1891
|
-
- Updated dependencies [6cb63e0]
|
|
1892
|
-
- Updated dependencies [f626fbb]
|
|
1893
|
-
- Updated dependencies [e752340]
|
|
1894
|
-
- Updated dependencies [eb91535]
|
|
1895
|
-
- @mastra/core@0.4.2
|
|
1896
|
-
|
|
1897
|
-
## 0.1.0-alpha.4
|
|
1898
|
-
|
|
1899
|
-
### Patch Changes
|
|
1900
|
-
|
|
1901
|
-
- Updated dependencies [8d94c3e]
|
|
1902
|
-
- Updated dependencies [99dcdb5]
|
|
1903
|
-
- Updated dependencies [e752340]
|
|
1904
|
-
- Updated dependencies [eb91535]
|
|
1905
|
-
- @mastra/core@0.4.2-alpha.2
|
|
1906
|
-
|
|
1907
|
-
## 0.1.0-alpha.3
|
|
1908
|
-
|
|
1909
|
-
### Patch Changes
|
|
1910
|
-
|
|
1911
|
-
- Updated dependencies [6cb63e0]
|
|
1912
|
-
- @mastra/core@0.4.2-alpha.1
|
|
1913
|
-
|
|
1914
|
-
## 0.1.0-alpha.2
|
|
1915
|
-
|
|
1916
|
-
### Patch Changes
|
|
1917
|
-
|
|
1918
|
-
- 5e0f727: deprecate @mastra/speech-google for @mastra/voice-google
|
|
1919
|
-
|
|
1920
|
-
## 0.1.0
|
|
1921
|
-
|
|
1922
|
-
### Minor Changes
|
|
1923
|
-
|
|
1924
|
-
- Initial release of @mastra/voice-google
|
|
1925
|
-
- Combines functionality from deprecated @mastra/speech-google
|
|
1926
|
-
- Adds Speech-to-Text capabilities
|
|
1927
|
-
- Implements new MastraVoice interface from @mastra/core
|
|
1928
|
-
|
|
1929
|
-
### Notes
|
|
1930
|
-
|
|
1931
|
-
This package replaces @mastra/speech-google, which reached version 0.1.3-alpha.1. Key features from the previous package:
|
|
1932
|
-
|
|
1933
|
-
- Neural Text-to-Speech synthesis
|
|
1934
|
-
- Multiple voice options
|
|
1935
|
-
- Streaming support
|
|
1936
|
-
- Integration with Google Cloud services
|
|
1937
|
-
|
|
1938
|
-
The new package adds:
|
|
1939
|
-
|
|
1940
|
-
- Speech-to-Text recognition
|
|
1941
|
-
- Combined speech and listening models
|
|
1942
|
-
- Improved voice management
|
|
1943
|
-
- Better type safety and error handling
|