@mastra/memory 0.0.0-1.x-tester-20251106055847
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3834 -0
- package/LICENSE.md +15 -0
- package/README.md +3 -0
- package/dist/index.cjs +823 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +125 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +817 -0
- package/dist/index.js.map +1 -0
- package/dist/processors/index.cjs +165 -0
- package/dist/processors/index.cjs.map +1 -0
- package/dist/processors/index.d.ts +3 -0
- package/dist/processors/index.d.ts.map +1 -0
- package/dist/processors/index.js +158 -0
- package/dist/processors/index.js.map +1 -0
- package/dist/processors/token-limiter.d.ts +32 -0
- package/dist/processors/token-limiter.d.ts.map +1 -0
- package/dist/processors/tool-call-filter.d.ts +20 -0
- package/dist/processors/tool-call-filter.d.ts.map +1 -0
- package/dist/tools/working-memory.d.ts +17 -0
- package/dist/tools/working-memory.d.ts.map +1 -0
- package/package.json +93 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,3834 @@
|
|
|
1
|
+
# @mastra/memory
|
|
2
|
+
|
|
3
|
+
## 0.0.0-1.x-tester-20251106055847
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- **BREAKING:** Remove `getMessagesPaginated()` and add `perPage: false` support ([#9670](https://github.com/mastra-ai/mastra/pull/9670))
|
|
8
|
+
|
|
9
|
+
Removes deprecated `getMessagesPaginated()` method. The `listMessages()` API and score handlers now support `perPage: false` to fetch all records without pagination limits.
|
|
10
|
+
|
|
11
|
+
**Storage changes:**
|
|
12
|
+
- `StoragePagination.perPage` type changed from `number` to `number | false`
|
|
13
|
+
- All storage implementations support `perPage: false`:
|
|
14
|
+
- Memory: `listMessages()`
|
|
15
|
+
- Scores: `listScoresBySpan()`, `listScoresByRunId()`, `listScoresByExecutionId()`
|
|
16
|
+
- HTTP query parser accepts `"false"` string (e.g., `?perPage=false`)
|
|
17
|
+
|
|
18
|
+
**Memory changes:**
|
|
19
|
+
- `memory.query()` parameter type changed from `StorageGetMessagesArg` to `StorageListMessagesInput`
|
|
20
|
+
- Uses flat parameters (`page`, `perPage`, `include`, `filter`, `vectorSearchString`) instead of `selectBy` object
|
|
21
|
+
|
|
22
|
+
**Stricter validation:**
|
|
23
|
+
- `listMessages()` requires non-empty, non-whitespace `threadId` (throws error instead of returning empty results)
|
|
24
|
+
|
|
25
|
+
**Migration:**
|
|
26
|
+
|
|
27
|
+
```typescript
|
|
28
|
+
// Storage/Memory: Replace getMessagesPaginated with listMessages
|
|
29
|
+
- storage.getMessagesPaginated({ threadId, selectBy: { pagination: { page: 0, perPage: 20 } } })
|
|
30
|
+
+ storage.listMessages({ threadId, page: 0, perPage: 20 })
|
|
31
|
+
+ storage.listMessages({ threadId, page: 0, perPage: false }) // Fetch all
|
|
32
|
+
|
|
33
|
+
// Memory: Replace selectBy with flat parameters
|
|
34
|
+
- memory.query({ threadId, selectBy: { last: 20, include: [...] } })
|
|
35
|
+
+ memory.query({ threadId, perPage: 20, include: [...] })
|
|
36
|
+
|
|
37
|
+
// Client SDK
|
|
38
|
+
- thread.getMessagesPaginated({ selectBy: { pagination: { page: 0 } } })
|
|
39
|
+
+ thread.listMessages({ page: 0, perPage: 20 })
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
- # Major Changes ([#9695](https://github.com/mastra-ai/mastra/pull/9695))
|
|
43
|
+
|
|
44
|
+
## Storage Layer
|
|
45
|
+
|
|
46
|
+
### BREAKING: Removed `storage.getMessages()`
|
|
47
|
+
|
|
48
|
+
The `getMessages()` method has been removed from all storage implementations. Use `listMessages()` instead, which provides pagination support.
|
|
49
|
+
|
|
50
|
+
**Migration:**
|
|
51
|
+
|
|
52
|
+
```typescript
|
|
53
|
+
// Before
|
|
54
|
+
const messages = await storage.getMessages({ threadId: 'thread-1' });
|
|
55
|
+
|
|
56
|
+
// After
|
|
57
|
+
const result = await storage.listMessages({
|
|
58
|
+
threadId: 'thread-1',
|
|
59
|
+
page: 0,
|
|
60
|
+
perPage: 50,
|
|
61
|
+
});
|
|
62
|
+
const messages = result.messages; // Access messages array
|
|
63
|
+
console.log(result.total); // Total count
|
|
64
|
+
console.log(result.hasMore); // Whether more pages exist
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### Message ordering default
|
|
68
|
+
|
|
69
|
+
`listMessages()` defaults to ASC (oldest first) ordering by `createdAt`, matching the previous `getMessages()` behavior.
|
|
70
|
+
|
|
71
|
+
**To use DESC ordering (newest first):**
|
|
72
|
+
|
|
73
|
+
```typescript
|
|
74
|
+
const result = await storage.listMessages({
|
|
75
|
+
threadId: 'thread-1',
|
|
76
|
+
orderBy: { field: 'createdAt', direction: 'DESC' },
|
|
77
|
+
});
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Client SDK
|
|
81
|
+
|
|
82
|
+
### BREAKING: Renamed `client.getThreadMessages()` → `client.listThreadMessages()`
|
|
83
|
+
|
|
84
|
+
**Migration:**
|
|
85
|
+
|
|
86
|
+
```typescript
|
|
87
|
+
// Before
|
|
88
|
+
const response = await client.getThreadMessages(threadId, { agentId });
|
|
89
|
+
|
|
90
|
+
// After
|
|
91
|
+
const response = await client.listThreadMessages(threadId, { agentId });
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
The response format remains the same.
|
|
95
|
+
|
|
96
|
+
## Type Changes
|
|
97
|
+
|
|
98
|
+
### BREAKING: Removed `StorageGetMessagesArg` type
|
|
99
|
+
|
|
100
|
+
Use `StorageListMessagesInput` instead:
|
|
101
|
+
|
|
102
|
+
```typescript
|
|
103
|
+
// Before
|
|
104
|
+
import type { StorageGetMessagesArg } from '@mastra/core';
|
|
105
|
+
|
|
106
|
+
// After
|
|
107
|
+
import type { StorageListMessagesInput } from '@mastra/core';
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
- Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
|
|
111
|
+
|
|
112
|
+
- Replace `getThreadsByResourceIdPaginated` with `listThreadsByResourceId` across memory handlers. Update client SDK to use `listThreads()` with `offset`/`limit` parameters instead of deprecated `getMemoryThreads()`. Consolidate `/api/memory/threads` routes to single paginated endpoint. ([#9508](https://github.com/mastra-ai/mastra/pull/9508))
|
|
113
|
+
|
|
114
|
+
- This simplifies the Memory API by removing the confusing rememberMessages method and renaming query to recall for better clarity. ([#9701](https://github.com/mastra-ai/mastra/pull/9701))
|
|
115
|
+
|
|
116
|
+
The rememberMessages method name implied it might persist data when it was actually just retrieving messages, same as query. Having two methods that did essentially the same thing was unnecessary.
|
|
117
|
+
|
|
118
|
+
Before:
|
|
119
|
+
|
|
120
|
+
```typescript
|
|
121
|
+
// Two methods that did the same thing
|
|
122
|
+
memory.rememberMessages({ threadId, resourceId, config, vectorMessageSearch });
|
|
123
|
+
memory.query({ threadId, resourceId, perPage, vectorSearchString });
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
After:
|
|
127
|
+
|
|
128
|
+
```typescript
|
|
129
|
+
// Single unified method with clear purpose
|
|
130
|
+
memory.recall({ threadId, resourceId, perPage, vectorMessageSearch, threadConfig });
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
All usages have been updated across the codebase including tests. The agent now calls recall directly with the appropriate parameters.
|
|
134
|
+
|
|
135
|
+
- Rename RuntimeContext to RequestContext ([#9511](https://github.com/mastra-ai/mastra/pull/9511))
|
|
136
|
+
|
|
137
|
+
- Remove `getThreadsByResourceId` and `getThreadsByResourceIdPaginated` methods from storage interfaces in favor of `listThreadsByResourceId`. The new method uses `offset`/`limit` pagination and a nested `orderBy` object structure (`{ field, direction }`). ([#9536](https://github.com/mastra-ai/mastra/pull/9536))
|
|
138
|
+
|
|
139
|
+
- Remove various deprecated APIs from agent class. ([#9257](https://github.com/mastra-ai/mastra/pull/9257))
|
|
140
|
+
- `agent.llm` → `agent.getLLM()`
|
|
141
|
+
- `agent.tools` → `agent.getTools()`
|
|
142
|
+
- `agent.instructions` → `agent.getInstructions()`
|
|
143
|
+
- `agent.speak()` → `agent.voice.speak()`
|
|
144
|
+
- `agent.getSpeakers()` → `agent.voice.getSpeakers()`
|
|
145
|
+
- `agent.listen` → `agent.voice.listen()`
|
|
146
|
+
- `agent.fetchMemory` → `(await agent.getMemory()).query()`
|
|
147
|
+
- `agent.toStep` → Add agent directly to the step, workflows handle the transformation
|
|
148
|
+
|
|
149
|
+
- **BREAKING CHANGE**: Pagination APIs now use `page`/`perPage` instead of `offset`/`limit` ([#9592](https://github.com/mastra-ai/mastra/pull/9592))
|
|
150
|
+
|
|
151
|
+
All storage and memory pagination APIs have been updated to use `page` (0-indexed) and `perPage` instead of `offset` and `limit`, aligning with standard REST API patterns.
|
|
152
|
+
|
|
153
|
+
**Affected APIs:**
|
|
154
|
+
- `Memory.listThreadsByResourceId()`
|
|
155
|
+
- `Memory.listMessages()`
|
|
156
|
+
- `Storage.listWorkflowRuns()`
|
|
157
|
+
|
|
158
|
+
**Migration:**
|
|
159
|
+
|
|
160
|
+
```typescript
|
|
161
|
+
// Before
|
|
162
|
+
await memory.listThreadsByResourceId({
|
|
163
|
+
resourceId: 'user-123',
|
|
164
|
+
offset: 20,
|
|
165
|
+
limit: 10,
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
// After
|
|
169
|
+
await memory.listThreadsByResourceId({
|
|
170
|
+
resourceId: 'user-123',
|
|
171
|
+
page: 2, // page = Math.floor(offset / limit)
|
|
172
|
+
perPage: 10,
|
|
173
|
+
});
|
|
174
|
+
|
|
175
|
+
// Before
|
|
176
|
+
await memory.listMessages({
|
|
177
|
+
threadId: 'thread-456',
|
|
178
|
+
offset: 20,
|
|
179
|
+
limit: 10,
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
// After
|
|
183
|
+
await memory.listMessages({
|
|
184
|
+
threadId: 'thread-456',
|
|
185
|
+
page: 2,
|
|
186
|
+
perPage: 10,
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
// Before
|
|
190
|
+
await storage.listWorkflowRuns({
|
|
191
|
+
workflowName: 'my-workflow',
|
|
192
|
+
offset: 20,
|
|
193
|
+
limit: 10,
|
|
194
|
+
});
|
|
195
|
+
|
|
196
|
+
// After
|
|
197
|
+
await storage.listWorkflowRuns({
|
|
198
|
+
workflowName: 'my-workflow',
|
|
199
|
+
page: 2,
|
|
200
|
+
perPage: 10,
|
|
201
|
+
});
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
**Additional improvements:**
|
|
205
|
+
- Added validation for negative `page` values in all storage implementations
|
|
206
|
+
- Improved `perPage` validation to handle edge cases (negative values, `0`, `false`)
|
|
207
|
+
- Added reusable query parser utilities for consistent validation in handlers
|
|
208
|
+
|
|
209
|
+
- Changing getAgents -> listAgents, getTools -> listTools, getWorkflows -> listWorkflows ([#9495](https://github.com/mastra-ai/mastra/pull/9495))
|
|
210
|
+
|
|
211
|
+
- Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
|
|
212
|
+
|
|
213
|
+
- Optimize default memory settings for semantic recall based on longmemeval data ([#9046](https://github.com/mastra-ai/mastra/pull/9046))
|
|
214
|
+
- Increased default topK from 2 to 4 for greater accuracy improvement
|
|
215
|
+
- Lowered default messageRange from {before: 2, after: 2} to {before: 1, after: 1}
|
|
216
|
+
- This provides ~8% accuracy gain while only increasing max messages from 10 to 12 (20% increase)
|
|
217
|
+
- Updated documentation to reflect new defaults
|
|
218
|
+
- Fixed playground UI to correctly display the new default values
|
|
219
|
+
- These changes only affect users who enable semantic recall without specifying custom values
|
|
220
|
+
|
|
221
|
+
- Enforcing id required on Processor primitive ([#9591](https://github.com/mastra-ai/mastra/pull/9591))
|
|
222
|
+
|
|
223
|
+
- Renamed `MastraMessageV2` to `MastraDBMessage` ([#9255](https://github.com/mastra-ai/mastra/pull/9255))
|
|
224
|
+
Made the return format of all methods that return db messages consistent. It's always `{ messages: MastraDBMessage[] }` now, and messages can be converted after that using `@mastra/ai-sdk/ui`'s `toAISdkV4/5Messages()` function
|
|
225
|
+
|
|
226
|
+
### Minor Changes
|
|
227
|
+
|
|
228
|
+
- Update peer dependencies to match core package version bump (0.22.3) ([#9486](https://github.com/mastra-ai/mastra/pull/9486))
|
|
229
|
+
|
|
230
|
+
- **BREAKING CHANGE**: Memory scope defaults changed from 'thread' to 'resource' ([#8983](https://github.com/mastra-ai/mastra/pull/8983))
|
|
231
|
+
|
|
232
|
+
Both `workingMemory.scope` and `semanticRecall.scope` now default to `'resource'` instead of `'thread'`. This means:
|
|
233
|
+
- Working memory persists across all conversations for the same user/resource
|
|
234
|
+
- Semantic recall searches across all threads for the same user/resource
|
|
235
|
+
|
|
236
|
+
**Migration**: To maintain the previous thread-scoped behavior, explicitly set `scope: 'thread'`:
|
|
237
|
+
|
|
238
|
+
```typescript
|
|
239
|
+
memory: new Memory({
|
|
240
|
+
storage,
|
|
241
|
+
workingMemory: {
|
|
242
|
+
enabled: true,
|
|
243
|
+
scope: 'thread', // Explicitly set for thread-scoped behavior
|
|
244
|
+
},
|
|
245
|
+
semanticRecall: {
|
|
246
|
+
scope: 'thread', // Explicitly set for thread-scoped behavior
|
|
247
|
+
},
|
|
248
|
+
}),
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
See the [migration guide](https://mastra.ai/docs/guides/migrations/memory-scope-defaults) for more details.
|
|
252
|
+
|
|
253
|
+
Also fixed issues where playground semantic recall search could show missing or incorrect results in certain cases.
|
|
254
|
+
|
|
255
|
+
- Update peer dependencies to match core package version bump (1.0.0) ([#9495](https://github.com/mastra-ai/mastra/pull/9495))
|
|
256
|
+
|
|
257
|
+
- Update peer dependencies to match core package version bump (0.22.0) ([#8983](https://github.com/mastra-ai/mastra/pull/8983))
|
|
258
|
+
|
|
259
|
+
### Patch Changes
|
|
260
|
+
|
|
261
|
+
- Update peer dependencies to match core package version bump (1.0.0) ([#9237](https://github.com/mastra-ai/mastra/pull/9237))
|
|
262
|
+
|
|
263
|
+
- Update tool execution signature ([#9587](https://github.com/mastra-ai/mastra/pull/9587))
|
|
264
|
+
|
|
265
|
+
Consolidated the 3 different execution contexts to one
|
|
266
|
+
|
|
267
|
+
```typescript
|
|
268
|
+
// before depending on the context the tool was executed in
|
|
269
|
+
tool.execute({ context: data });
|
|
270
|
+
tool.execute({ context: { inputData: data } });
|
|
271
|
+
tool.execute(data);
|
|
272
|
+
|
|
273
|
+
// now, for all contexts
|
|
274
|
+
tool.execute(data, context);
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
**Before:**
|
|
278
|
+
|
|
279
|
+
```typescript
|
|
280
|
+
inputSchema: z.object({ something: z.string() }),
|
|
281
|
+
execute: async ({ context, tracingContext, runId, ... }) => {
|
|
282
|
+
return doSomething(context.string);
|
|
283
|
+
}
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
**After:**
|
|
287
|
+
|
|
288
|
+
```typescript
|
|
289
|
+
inputSchema: z.object({ something: z.string() }),
|
|
290
|
+
execute: async (inputData, context) => {
|
|
291
|
+
const { agent, mcp, workflow, ...sharedContext } = context
|
|
292
|
+
|
|
293
|
+
// context that only an agent would get like toolCallId, messages, suspend, resume, etc
|
|
294
|
+
if (agent) {
|
|
295
|
+
doSomething(inputData.something, agent)
|
|
296
|
+
// context that only a workflow would get like runId, state, suspend, resume, etc
|
|
297
|
+
} else if (workflow) {
|
|
298
|
+
doSomething(inputData.something, workflow)
|
|
299
|
+
// context that only a workflow would get like "extra", "elicitation"
|
|
300
|
+
} else if (mcp) {
|
|
301
|
+
doSomething(inputData.something, mcp)
|
|
302
|
+
} else {
|
|
303
|
+
// Running a tool in no execution context
|
|
304
|
+
return doSomething(inputData.something);
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
- Update peer dependencies to match core package version bump (1.0.0) ([#9489](https://github.com/mastra-ai/mastra/pull/9489))
|
|
310
|
+
|
|
311
|
+
- Fixes incorrect tool invocation format in message list that was causing client tools to fail during message format conversions. ([#9590](https://github.com/mastra-ai/mastra/pull/9590))
|
|
312
|
+
|
|
313
|
+
- Use memory mock in server tests ([#9486](https://github.com/mastra-ai/mastra/pull/9486))
|
|
314
|
+
|
|
315
|
+
- Update peer dependencies to match core package version bump (1.0.0) ([#9491](https://github.com/mastra-ai/mastra/pull/9491))
|
|
316
|
+
|
|
317
|
+
- Updated dependencies [[`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), [`b9b7ffd`](https://github.com/mastra-ai/mastra/commit/b9b7ffdad6936a7d50b6b814b5bbe54e19087f66), [`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), [`2a90c55`](https://github.com/mastra-ai/mastra/commit/2a90c55a86a9210697d5adaab5ee94584b079adc), [`51acef9`](https://github.com/mastra-ai/mastra/commit/51acef95b5977826594fe3ee24475842bd3d5780), [`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), [`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), [`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), [`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)]:
|
|
318
|
+
- @mastra/core@0.0.0-1.x-tester-20251106055847
|
|
319
|
+
- @mastra/schema-compat@0.0.0-1.x-tester-20251106055847
|
|
320
|
+
|
|
321
|
+
## 0.15.8
|
|
322
|
+
|
|
323
|
+
### Patch Changes
|
|
324
|
+
|
|
325
|
+
- Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
|
|
326
|
+
|
|
327
|
+
- 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)]:
|
|
328
|
+
- @mastra/core@0.22.0
|
|
329
|
+
|
|
330
|
+
## 0.15.8-alpha.0
|
|
331
|
+
|
|
332
|
+
### Patch Changes
|
|
333
|
+
|
|
334
|
+
- Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
|
|
335
|
+
|
|
336
|
+
- 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)]:
|
|
337
|
+
- @mastra/core@0.22.0-alpha.1
|
|
338
|
+
|
|
339
|
+
## 0.15.7
|
|
340
|
+
|
|
341
|
+
### Patch Changes
|
|
342
|
+
|
|
343
|
+
- dependencies updates: ([#8635](https://github.com/mastra-ai/mastra/pull/8635))
|
|
344
|
+
- Updated dependency [`redis@^5.8.3` ↗︎](https://www.npmjs.com/package/redis/v/5.8.3) (from `^5.8.2`, in `dependencies`)
|
|
345
|
+
|
|
346
|
+
- dependencies updates: ([#8684](https://github.com/mastra-ai/mastra/pull/8684))
|
|
347
|
+
- Updated dependency [`@upstash/redis@^1.35.5` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.5) (from `^1.35.4`, in `dependencies`)
|
|
348
|
+
|
|
349
|
+
- feat(pg): add flexible PostgreSQL configuration with shared types ([#8103](https://github.com/mastra-ai/mastra/pull/8103))
|
|
350
|
+
- Add support for multiple connection methods: connectionString, host/port/database, and Cloud SQL
|
|
351
|
+
- Introduce shared PostgresConfig type with generic SSL support (ISSLConfig for pg-promise, ConnectionOptions for pg)
|
|
352
|
+
- Add pgPoolOptions support to PgVector for advanced pool configuration
|
|
353
|
+
- Create shared validation helpers to reduce code duplication
|
|
354
|
+
- Maintain backward compatibility with existing configurations
|
|
355
|
+
|
|
356
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
|
|
357
|
+
|
|
358
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
|
|
359
|
+
|
|
360
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
|
|
361
|
+
|
|
362
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
|
|
363
|
+
|
|
364
|
+
- 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)]:
|
|
365
|
+
- @mastra/core@0.21.0
|
|
366
|
+
|
|
367
|
+
## 0.15.7-alpha.1
|
|
368
|
+
|
|
369
|
+
### Patch Changes
|
|
370
|
+
|
|
371
|
+
- feat(pg): add flexible PostgreSQL configuration with shared types ([#8103](https://github.com/mastra-ai/mastra/pull/8103))
|
|
372
|
+
- Add support for multiple connection methods: connectionString, host/port/database, and Cloud SQL
|
|
373
|
+
- Introduce shared PostgresConfig type with generic SSL support (ISSLConfig for pg-promise, ConnectionOptions for pg)
|
|
374
|
+
- Add pgPoolOptions support to PgVector for advanced pool configuration
|
|
375
|
+
- Create shared validation helpers to reduce code duplication
|
|
376
|
+
- Maintain backward compatibility with existing configurations
|
|
377
|
+
|
|
378
|
+
- Updated dependencies [[`1ed9670`](https://github.com/mastra-ai/mastra/commit/1ed9670d3ca50cb60dc2e517738c5eef3968ed27), [`158381d`](https://github.com/mastra-ai/mastra/commit/158381d39335be934b81ef8a1947bccace492c25), [`fb703b9`](https://github.com/mastra-ai/mastra/commit/fb703b9634eeaff1a6eb2b5531ce0f9e8fb04727), [`37a2314`](https://github.com/mastra-ai/mastra/commit/37a23148e0e5a3b40d4f9f098b194671a8a49faf), [`05a9dee`](https://github.com/mastra-ai/mastra/commit/05a9dee3d355694d28847bfffb6289657fcf7dfa), [`e3c1077`](https://github.com/mastra-ai/mastra/commit/e3c107763aedd1643d3def5df450c235da9ff76c), [`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), [`65493b3`](https://github.com/mastra-ai/mastra/commit/65493b31c36f6fdb78f9679f7e1ecf0c250aa5ee), [`a998b8f`](https://github.com/mastra-ai/mastra/commit/a998b8f858091c2ec47683e60766cf12d03001e4), [`8a37bdd`](https://github.com/mastra-ai/mastra/commit/8a37bddb6d8614a32c5b70303d583d80c620ea61)]:
|
|
379
|
+
- @mastra/core@0.21.0-alpha.1
|
|
380
|
+
|
|
381
|
+
## 0.15.7-alpha.0
|
|
382
|
+
|
|
383
|
+
### Patch Changes
|
|
384
|
+
|
|
385
|
+
- dependencies updates: ([#8635](https://github.com/mastra-ai/mastra/pull/8635))
|
|
386
|
+
- Updated dependency [`redis@^5.8.3` ↗︎](https://www.npmjs.com/package/redis/v/5.8.3) (from `^5.8.2`, in `dependencies`)
|
|
387
|
+
|
|
388
|
+
- dependencies updates: ([#8684](https://github.com/mastra-ai/mastra/pull/8684))
|
|
389
|
+
- Updated dependency [`@upstash/redis@^1.35.5` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.5) (from `^1.35.4`, in `dependencies`)
|
|
390
|
+
|
|
391
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
|
|
392
|
+
|
|
393
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
|
|
394
|
+
|
|
395
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
|
|
396
|
+
|
|
397
|
+
- Update peer dependencies to match core package version bump (0.21.0) ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
|
|
398
|
+
|
|
399
|
+
- 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)]:
|
|
400
|
+
- @mastra/core@0.21.0-alpha.0
|
|
401
|
+
|
|
402
|
+
## 0.15.6
|
|
403
|
+
|
|
404
|
+
### Patch Changes
|
|
405
|
+
|
|
406
|
+
- Ensure working memory can be updated througb createThread and updateThread ([#8513](https://github.com/mastra-ai/mastra/pull/8513))
|
|
407
|
+
|
|
408
|
+
- Fix TypeScript errors with provider-defined tools by updating ai-v5 and openai-v5 to matching provider-utils versions. This ensures npm deduplicates to a single provider-utils instance, resolving type incompatibility issues when passing provider tools to Agent. ([#8584](https://github.com/mastra-ai/mastra/pull/8584))
|
|
409
|
+
|
|
410
|
+
Also adds deprecation warning to Agent import from root path to encourage using the recommended subpath import.
|
|
411
|
+
|
|
412
|
+
- Updated dependencies [[`c621613`](https://github.com/mastra-ai/mastra/commit/c621613069173c69eb2c3ef19a5308894c6549f0), [`12b1189`](https://github.com/mastra-ai/mastra/commit/12b118942445e4de0dd916c593e33ec78dc3bc73), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`076b092`](https://github.com/mastra-ai/mastra/commit/076b0924902ff0f49d5712d2df24c4cca683713f), [`2aee9e7`](https://github.com/mastra-ai/mastra/commit/2aee9e7d188b8b256a4ddc203ccefb366b4867fa), [`c582906`](https://github.com/mastra-ai/mastra/commit/c5829065a346260f96c4beb8af131b94804ae3ad), [`fa2eb96`](https://github.com/mastra-ai/mastra/commit/fa2eb96af16c7d433891a73932764960d3235c1d), [`ee9108f`](https://github.com/mastra-ai/mastra/commit/ee9108fa29bb8368fc23df158c9f0645b2d7b65c), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`a739d0c`](https://github.com/mastra-ai/mastra/commit/a739d0c8b37cd89569e04a6ca0827083c6167e19), [`603e927`](https://github.com/mastra-ai/mastra/commit/603e9279db8bf8a46caf83881c6b7389ccffff7e), [`cd45982`](https://github.com/mastra-ai/mastra/commit/cd4598291cda128a88738734ae6cbef076ebdebd), [`874f74d`](https://github.com/mastra-ai/mastra/commit/874f74da4b1acf6517f18132d035612c3ecc394a), [`b728a45`](https://github.com/mastra-ai/mastra/commit/b728a45ab3dba59da0f5ee36b81fe246659f305d), [`0baf2ba`](https://github.com/mastra-ai/mastra/commit/0baf2bab8420277072ef1f95df5ea7b0a2f61fe7), [`10e633a`](https://github.com/mastra-ai/mastra/commit/10e633a07d333466d9734c97acfc3dbf757ad2d0), [`a6d69c5`](https://github.com/mastra-ai/mastra/commit/a6d69c5fb50c0875b46275811fece5862f03c6a0), [`84199af`](https://github.com/mastra-ai/mastra/commit/84199af8673f6f9cb59286ffb5477a41932775de), [`7f431af`](https://github.com/mastra-ai/mastra/commit/7f431afd586b7d3265075e73106eb73167edbb86), [`26e968d`](https://github.com/mastra-ai/mastra/commit/26e968db2171ded9e4d47aa1b4f19e1e771158d0), [`cbd3fb6`](https://github.com/mastra-ai/mastra/commit/cbd3fb65adb03a7c0df193cb998aed5ac56675ee)]:
|
|
413
|
+
- @mastra/core@0.20.1
|
|
414
|
+
|
|
415
|
+
## 0.15.6-alpha.1
|
|
416
|
+
|
|
417
|
+
### Patch Changes
|
|
418
|
+
|
|
419
|
+
- Fix TypeScript errors with provider-defined tools by updating ai-v5 and openai-v5 to matching provider-utils versions. This ensures npm deduplicates to a single provider-utils instance, resolving type incompatibility issues when passing provider tools to Agent. ([#8584](https://github.com/mastra-ai/mastra/pull/8584))
|
|
420
|
+
|
|
421
|
+
Also adds deprecation warning to Agent import from root path to encourage using the recommended subpath import.
|
|
422
|
+
|
|
423
|
+
- Updated dependencies [[`a6d69c5`](https://github.com/mastra-ai/mastra/commit/a6d69c5fb50c0875b46275811fece5862f03c6a0), [`84199af`](https://github.com/mastra-ai/mastra/commit/84199af8673f6f9cb59286ffb5477a41932775de), [`7f431af`](https://github.com/mastra-ai/mastra/commit/7f431afd586b7d3265075e73106eb73167edbb86)]:
|
|
424
|
+
- @mastra/core@0.20.1-alpha.3
|
|
425
|
+
|
|
426
|
+
## 0.15.6-alpha.0
|
|
427
|
+
|
|
428
|
+
### Patch Changes
|
|
429
|
+
|
|
430
|
+
- Ensure working memory can be updated througb createThread and updateThread ([#8513](https://github.com/mastra-ai/mastra/pull/8513))
|
|
431
|
+
|
|
432
|
+
- Updated dependencies [[`c621613`](https://github.com/mastra-ai/mastra/commit/c621613069173c69eb2c3ef19a5308894c6549f0), [`12b1189`](https://github.com/mastra-ai/mastra/commit/12b118942445e4de0dd916c593e33ec78dc3bc73), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`076b092`](https://github.com/mastra-ai/mastra/commit/076b0924902ff0f49d5712d2df24c4cca683713f), [`2aee9e7`](https://github.com/mastra-ai/mastra/commit/2aee9e7d188b8b256a4ddc203ccefb366b4867fa), [`c582906`](https://github.com/mastra-ai/mastra/commit/c5829065a346260f96c4beb8af131b94804ae3ad), [`fa2eb96`](https://github.com/mastra-ai/mastra/commit/fa2eb96af16c7d433891a73932764960d3235c1d), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`a739d0c`](https://github.com/mastra-ai/mastra/commit/a739d0c8b37cd89569e04a6ca0827083c6167e19), [`603e927`](https://github.com/mastra-ai/mastra/commit/603e9279db8bf8a46caf83881c6b7389ccffff7e), [`cd45982`](https://github.com/mastra-ai/mastra/commit/cd4598291cda128a88738734ae6cbef076ebdebd), [`874f74d`](https://github.com/mastra-ai/mastra/commit/874f74da4b1acf6517f18132d035612c3ecc394a), [`0baf2ba`](https://github.com/mastra-ai/mastra/commit/0baf2bab8420277072ef1f95df5ea7b0a2f61fe7), [`26e968d`](https://github.com/mastra-ai/mastra/commit/26e968db2171ded9e4d47aa1b4f19e1e771158d0), [`cbd3fb6`](https://github.com/mastra-ai/mastra/commit/cbd3fb65adb03a7c0df193cb998aed5ac56675ee)]:
|
|
433
|
+
- @mastra/core@0.20.1-alpha.1
|
|
434
|
+
|
|
435
|
+
## 0.15.5
|
|
436
|
+
|
|
437
|
+
### Patch Changes
|
|
438
|
+
|
|
439
|
+
- 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))
|
|
440
|
+
|
|
441
|
+
- 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)]:
|
|
442
|
+
- @mastra/core@0.20.0
|
|
443
|
+
|
|
444
|
+
## 0.15.5-alpha.0
|
|
445
|
+
|
|
446
|
+
### Patch Changes
|
|
447
|
+
|
|
448
|
+
- 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))
|
|
449
|
+
|
|
450
|
+
- 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)]:
|
|
451
|
+
- @mastra/core@0.20.0-alpha.0
|
|
452
|
+
|
|
453
|
+
## 0.15.4
|
|
454
|
+
|
|
455
|
+
### Patch Changes
|
|
456
|
+
|
|
457
|
+
- Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
|
|
458
|
+
|
|
459
|
+
- 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)]:
|
|
460
|
+
- @mastra/core@0.19.0
|
|
461
|
+
|
|
462
|
+
## 0.15.4-alpha.0
|
|
463
|
+
|
|
464
|
+
### Patch Changes
|
|
465
|
+
|
|
466
|
+
- Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
|
|
467
|
+
|
|
468
|
+
- 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)]:
|
|
469
|
+
- @mastra/core@0.19.0-alpha.1
|
|
470
|
+
|
|
471
|
+
## 0.15.3
|
|
472
|
+
|
|
473
|
+
### Patch Changes
|
|
474
|
+
|
|
475
|
+
- dependencies updates: ([#8088](https://github.com/mastra-ai/mastra/pull/8088))
|
|
476
|
+
- Updated dependency [`@upstash/redis@^1.35.4` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.4) (from `^1.35.3`, in `dependencies`)
|
|
477
|
+
|
|
478
|
+
- Fix PostgreSQL vector index recreation issue and add optional index configuration ([#8020](https://github.com/mastra-ai/mastra/pull/8020))
|
|
479
|
+
- Fixed critical bug where memory vector indexes were unnecessarily recreated on every operation
|
|
480
|
+
- Added support for configuring vector index types (HNSW, IVFFlat, flat) and parameters
|
|
481
|
+
|
|
482
|
+
- Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
|
|
483
|
+
|
|
484
|
+
- Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`b61b8e0`](https://github.com/mastra-ai/mastra/commit/b61b8e0b0e93a7e6e9d82e6f0b620bb919a20bdb), [`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)]:
|
|
485
|
+
- @mastra/core@0.18.0
|
|
486
|
+
- @mastra/schema-compat@0.11.4
|
|
487
|
+
|
|
488
|
+
## 0.15.3-alpha.1
|
|
489
|
+
|
|
490
|
+
### Patch Changes
|
|
491
|
+
|
|
492
|
+
- dependencies updates: ([#8088](https://github.com/mastra-ai/mastra/pull/8088))
|
|
493
|
+
- Updated dependency [`@upstash/redis@^1.35.4` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.4) (from `^1.35.3`, in `dependencies`)
|
|
494
|
+
|
|
495
|
+
- Fix PostgreSQL vector index recreation issue and add optional index configuration ([#8020](https://github.com/mastra-ai/mastra/pull/8020))
|
|
496
|
+
- Fixed critical bug where memory vector indexes were unnecessarily recreated on every operation
|
|
497
|
+
- Added support for configuring vector index types (HNSW, IVFFlat, flat) and parameters
|
|
498
|
+
|
|
499
|
+
- Updated dependencies [[`b61b8e0`](https://github.com/mastra-ai/mastra/commit/b61b8e0b0e93a7e6e9d82e6f0b620bb919a20bdb), [`4b339b8`](https://github.com/mastra-ai/mastra/commit/4b339b8141c20d6a6d80583c7e8c5c05d8c19492), [`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)]:
|
|
500
|
+
- @mastra/schema-compat@0.11.4-alpha.0
|
|
501
|
+
- @mastra/core@0.18.0-alpha.3
|
|
502
|
+
|
|
503
|
+
## 0.15.3-alpha.0
|
|
504
|
+
|
|
505
|
+
### Patch Changes
|
|
506
|
+
|
|
507
|
+
- Update Peerdeps for packages based on core minor bump ([#8025](https://github.com/mastra-ai/mastra/pull/8025))
|
|
508
|
+
|
|
509
|
+
- 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)]:
|
|
510
|
+
- @mastra/core@0.18.0-alpha.2
|
|
511
|
+
|
|
512
|
+
## 0.15.2
|
|
513
|
+
|
|
514
|
+
### Patch Changes
|
|
515
|
+
|
|
516
|
+
- clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
|
|
517
|
+
|
|
518
|
+
- Update dependencies ai-v5 and @ai-sdk/provider-utils-v5 to latest ([#7884](https://github.com/mastra-ai/mastra/pull/7884))
|
|
519
|
+
|
|
520
|
+
- Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
|
|
521
|
+
|
|
522
|
+
- Update package.json and README ([#7886](https://github.com/mastra-ai/mastra/pull/7886))
|
|
523
|
+
|
|
524
|
+
- 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)]:
|
|
525
|
+
- @mastra/core@0.17.0
|
|
526
|
+
|
|
527
|
+
## 0.15.2-alpha.2
|
|
528
|
+
|
|
529
|
+
### Patch Changes
|
|
530
|
+
|
|
531
|
+
- clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
|
|
532
|
+
|
|
533
|
+
- 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)]:
|
|
534
|
+
- @mastra/core@0.17.0-alpha.6
|
|
535
|
+
|
|
536
|
+
## 0.15.2-alpha.1
|
|
537
|
+
|
|
538
|
+
### Patch Changes
|
|
539
|
+
|
|
540
|
+
- Update dependencies ai-v5 and @ai-sdk/provider-utils-v5 to latest ([#7884](https://github.com/mastra-ai/mastra/pull/7884))
|
|
541
|
+
|
|
542
|
+
- Update package.json and README ([#7886](https://github.com/mastra-ai/mastra/pull/7886))
|
|
543
|
+
|
|
544
|
+
- Updated dependencies [[`fb84c21`](https://github.com/mastra-ai/mastra/commit/fb84c21859d09bdc8f158bd5412bdc4b5835a61c), [`9d4fc09`](https://github.com/mastra-ai/mastra/commit/9d4fc09b2ad55caa7738c7ceb3a905e454f74cdd), [`d75ccf0`](https://github.com/mastra-ai/mastra/commit/d75ccf06dfd2582b916aa12624e3cd61b279edf1), [`0fed8f2`](https://github.com/mastra-ai/mastra/commit/0fed8f2aa84b167b3415ea6f8f70755775132c8d), [`87fd07f`](https://github.com/mastra-ai/mastra/commit/87fd07ff35387a38728967163460231b5d33ae3b)]:
|
|
545
|
+
- @mastra/core@0.17.0-alpha.4
|
|
546
|
+
|
|
547
|
+
## 0.15.2-alpha.0
|
|
548
|
+
|
|
549
|
+
### Patch Changes
|
|
550
|
+
|
|
551
|
+
- Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
|
|
552
|
+
|
|
553
|
+
- 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)]:
|
|
554
|
+
- @mastra/core@0.17.0-alpha.3
|
|
555
|
+
|
|
556
|
+
## 0.15.1
|
|
557
|
+
|
|
558
|
+
### Patch Changes
|
|
559
|
+
|
|
560
|
+
- Updated dependencies [[`b4379f7`](https://github.com/mastra-ai/mastra/commit/b4379f703fd74474f253420e8c3a684f2c4b2f8e), [`2a6585f`](https://github.com/mastra-ai/mastra/commit/2a6585f7cb71f023f805d521d1c3c95fb9a3aa59), [`3d26e83`](https://github.com/mastra-ai/mastra/commit/3d26e8353a945719028f087cc6ac4b06f0ce27d2), [`dd9119b`](https://github.com/mastra-ai/mastra/commit/dd9119b175a8f389082f75c12750e51f96d65dca), [`d34aaa1`](https://github.com/mastra-ai/mastra/commit/d34aaa1da5d3c5f991740f59e2fe6d28d3e2dd91), [`56e55d1`](https://github.com/mastra-ai/mastra/commit/56e55d1e9eb63e7d9e41aa46e012aae471256812), [`ce1e580`](https://github.com/mastra-ai/mastra/commit/ce1e580f6391e94a0c6816a9c5db0a21566a262f), [`b2babfa`](https://github.com/mastra-ai/mastra/commit/b2babfa9e75b22f2759179e71d8473f6dc5421ed), [`d8c3ba5`](https://github.com/mastra-ai/mastra/commit/d8c3ba516f4173282d293f7e64769cfc8738d360), [`a566c4e`](https://github.com/mastra-ai/mastra/commit/a566c4e92d86c1671707c54359b1d33934f7cc13), [`af333aa`](https://github.com/mastra-ai/mastra/commit/af333aa30fe6d1b127024b03a64736c46eddeca2), [`3863c52`](https://github.com/mastra-ai/mastra/commit/3863c52d44b4e5779968b802d977e87adf939d8e), [`6424c7e`](https://github.com/mastra-ai/mastra/commit/6424c7ec38b6921d66212431db1e0958f441b2a7), [`db94750`](https://github.com/mastra-ai/mastra/commit/db94750a41fd29b43eb1f7ce8e97ba8b9978c91b), [`a66a371`](https://github.com/mastra-ai/mastra/commit/a66a3716b00553d7f01842be9deb34f720b10fab), [`779d469`](https://github.com/mastra-ai/mastra/commit/779d469366bb9f7fcb6d1638fdabb9f3acc49218), [`69fc3cd`](https://github.com/mastra-ai/mastra/commit/69fc3cd0fd814901785bdcf49bf536ab1e7fd975)]:
|
|
561
|
+
- @mastra/core@0.16.3
|
|
562
|
+
- @mastra/schema-compat@0.11.3
|
|
563
|
+
|
|
564
|
+
## 0.15.1-alpha.0
|
|
565
|
+
|
|
566
|
+
### Patch Changes
|
|
567
|
+
|
|
568
|
+
- Updated dependencies [[`b4379f7`](https://github.com/mastra-ai/mastra/commit/b4379f703fd74474f253420e8c3a684f2c4b2f8e), [`dd9119b`](https://github.com/mastra-ai/mastra/commit/dd9119b175a8f389082f75c12750e51f96d65dca), [`d34aaa1`](https://github.com/mastra-ai/mastra/commit/d34aaa1da5d3c5f991740f59e2fe6d28d3e2dd91), [`ce1e580`](https://github.com/mastra-ai/mastra/commit/ce1e580f6391e94a0c6816a9c5db0a21566a262f), [`b2babfa`](https://github.com/mastra-ai/mastra/commit/b2babfa9e75b22f2759179e71d8473f6dc5421ed), [`d8c3ba5`](https://github.com/mastra-ai/mastra/commit/d8c3ba516f4173282d293f7e64769cfc8738d360), [`a566c4e`](https://github.com/mastra-ai/mastra/commit/a566c4e92d86c1671707c54359b1d33934f7cc13), [`af333aa`](https://github.com/mastra-ai/mastra/commit/af333aa30fe6d1b127024b03a64736c46eddeca2), [`3863c52`](https://github.com/mastra-ai/mastra/commit/3863c52d44b4e5779968b802d977e87adf939d8e), [`6424c7e`](https://github.com/mastra-ai/mastra/commit/6424c7ec38b6921d66212431db1e0958f441b2a7), [`db94750`](https://github.com/mastra-ai/mastra/commit/db94750a41fd29b43eb1f7ce8e97ba8b9978c91b), [`a66a371`](https://github.com/mastra-ai/mastra/commit/a66a3716b00553d7f01842be9deb34f720b10fab), [`779d469`](https://github.com/mastra-ai/mastra/commit/779d469366bb9f7fcb6d1638fdabb9f3acc49218), [`69fc3cd`](https://github.com/mastra-ai/mastra/commit/69fc3cd0fd814901785bdcf49bf536ab1e7fd975)]:
|
|
569
|
+
- @mastra/core@0.16.3-alpha.0
|
|
570
|
+
- @mastra/schema-compat@0.11.3-alpha.0
|
|
571
|
+
|
|
572
|
+
## 0.15.0
|
|
573
|
+
|
|
574
|
+
### Minor Changes
|
|
575
|
+
|
|
576
|
+
- Update core peerdeps ([#7535](https://github.com/mastra-ai/mastra/pull/7535))
|
|
577
|
+
|
|
578
|
+
### Patch Changes
|
|
579
|
+
|
|
580
|
+
- Call getMemoryMessages even during first turn in a thread when semantic recall scope is resource ([#7529](https://github.com/mastra-ai/mastra/pull/7529))
|
|
581
|
+
|
|
582
|
+
- Updated dependencies [[`47b6dc9`](https://github.com/mastra-ai/mastra/commit/47b6dc94f4976d4f3d3882e8f19eb365bbc5976c), [`827d876`](https://github.com/mastra-ai/mastra/commit/827d8766f36a900afcaf64a040f7ba76249009b3), [`0662d02`](https://github.com/mastra-ai/mastra/commit/0662d02ef16916e67531890639fcd72c69cfb6e2), [`565d65f`](https://github.com/mastra-ai/mastra/commit/565d65fc16314a99f081975ec92f2636dff0c86d), [`6189844`](https://github.com/mastra-ai/mastra/commit/61898448e65bda02bb814fb15801a89dc6476938), [`4da3d68`](https://github.com/mastra-ai/mastra/commit/4da3d68a778e5c4d5a17351ef223289fe2f45a45), [`fd9bbfe`](https://github.com/mastra-ai/mastra/commit/fd9bbfee22484f8493582325f53e8171bf8e682b), [`7eaf1d1`](https://github.com/mastra-ai/mastra/commit/7eaf1d1cec7e828d7a98efc2a748ac395bbdba3b), [`6f046b5`](https://github.com/mastra-ai/mastra/commit/6f046b5ccc5c8721302a9a61d5d16c12374cc8d7), [`d7a8f59`](https://github.com/mastra-ai/mastra/commit/d7a8f59154b0621aec4f41a6b2ea2b3882f03cb7), [`0b0bbb2`](https://github.com/mastra-ai/mastra/commit/0b0bbb24f4198ead69792e92b68a350f52b45cf3), [`d951f41`](https://github.com/mastra-ai/mastra/commit/d951f41771e4e5da8da4b9f870949f9509e38756), [`4dda259`](https://github.com/mastra-ai/mastra/commit/4dda2593b6343f9258671de5fb237aeba3ef6bb7), [`8049e2e`](https://github.com/mastra-ai/mastra/commit/8049e2e8cce80a00353c64894c62b695ac34e35e), [`f3427cd`](https://github.com/mastra-ai/mastra/commit/f3427cdaf9eecd63360dfc897a4acbf5f4143a4e), [`defed1c`](https://github.com/mastra-ai/mastra/commit/defed1ca8040cc8d42e645c5a50a1bc52a4918d7), [`6991ced`](https://github.com/mastra-ai/mastra/commit/6991cedcb5a44a49d9fe58ef67926e1f96ba55b1), [`9cb9c42`](https://github.com/mastra-ai/mastra/commit/9cb9c422854ee81074989dd2d8dccc0500ba8d3e), [`8334859`](https://github.com/mastra-ai/mastra/commit/83348594d4f37b311ba4a94d679c5f8721d796d4), [`05f13b8`](https://github.com/mastra-ai/mastra/commit/05f13b8fb269ccfc4de98e9db58dbe16eae55a5e)]:
|
|
583
|
+
- @mastra/core@0.16.1
|
|
584
|
+
|
|
585
|
+
## 0.15.0-alpha.0
|
|
586
|
+
|
|
587
|
+
### Minor Changes
|
|
588
|
+
|
|
589
|
+
- Update core peerdeps ([#7535](https://github.com/mastra-ai/mastra/pull/7535))
|
|
590
|
+
|
|
591
|
+
### Patch Changes
|
|
592
|
+
|
|
593
|
+
- Call getMemoryMessages even during first turn in a thread when semantic recall scope is resource ([#7529](https://github.com/mastra-ai/mastra/pull/7529))
|
|
594
|
+
|
|
595
|
+
- Updated dependencies [[`0662d02`](https://github.com/mastra-ai/mastra/commit/0662d02ef16916e67531890639fcd72c69cfb6e2), [`6189844`](https://github.com/mastra-ai/mastra/commit/61898448e65bda02bb814fb15801a89dc6476938), [`d7a8f59`](https://github.com/mastra-ai/mastra/commit/d7a8f59154b0621aec4f41a6b2ea2b3882f03cb7), [`4dda259`](https://github.com/mastra-ai/mastra/commit/4dda2593b6343f9258671de5fb237aeba3ef6bb7), [`defed1c`](https://github.com/mastra-ai/mastra/commit/defed1ca8040cc8d42e645c5a50a1bc52a4918d7), [`6991ced`](https://github.com/mastra-ai/mastra/commit/6991cedcb5a44a49d9fe58ef67926e1f96ba55b1), [`9cb9c42`](https://github.com/mastra-ai/mastra/commit/9cb9c422854ee81074989dd2d8dccc0500ba8d3e), [`8334859`](https://github.com/mastra-ai/mastra/commit/83348594d4f37b311ba4a94d679c5f8721d796d4)]:
|
|
596
|
+
- @mastra/core@0.16.1-alpha.0
|
|
597
|
+
|
|
598
|
+
## 0.14.4
|
|
599
|
+
|
|
600
|
+
### Patch Changes
|
|
601
|
+
|
|
602
|
+
- 376913a: Update peerdeps
|
|
603
|
+
- 38020d5: Fix memory pagination not working when using query() method
|
|
604
|
+
|
|
605
|
+
The Memory.query() method was ignoring pagination parameters in the selectBy option, always returning all messages instead of the requested page. This fix ensures pagination works correctly by using storage.getMessagesPaginated() when pagination is requested, while maintaining backward compatibility with storage.getMessages() for non-paginated queries.
|
|
606
|
+
|
|
607
|
+
- Updated dependencies [8fbf79e]
|
|
608
|
+
- Updated dependencies [fd83526]
|
|
609
|
+
- Updated dependencies [d0b90ab]
|
|
610
|
+
- Updated dependencies [6f5eb7a]
|
|
611
|
+
- Updated dependencies [a01cf14]
|
|
612
|
+
- Updated dependencies [a9e50ee]
|
|
613
|
+
- Updated dependencies [5397eb4]
|
|
614
|
+
- Updated dependencies [c9f4e4a]
|
|
615
|
+
- Updated dependencies [0acbc80]
|
|
616
|
+
- @mastra/core@0.16.0
|
|
617
|
+
|
|
618
|
+
## 0.14.4-alpha.0
|
|
619
|
+
|
|
620
|
+
### Patch Changes
|
|
621
|
+
|
|
622
|
+
- 376913a: Update peerdeps
|
|
623
|
+
- 38020d5: Fix memory pagination not working when using query() method
|
|
624
|
+
|
|
625
|
+
The Memory.query() method was ignoring pagination parameters in the selectBy option, always returning all messages instead of the requested page. This fix ensures pagination works correctly by using storage.getMessagesPaginated() when pagination is requested, while maintaining backward compatibility with storage.getMessages() for non-paginated queries.
|
|
626
|
+
|
|
627
|
+
- Updated dependencies [8fbf79e]
|
|
628
|
+
- @mastra/core@0.16.0-alpha.1
|
|
629
|
+
|
|
630
|
+
## 0.14.3
|
|
631
|
+
|
|
632
|
+
### Patch Changes
|
|
633
|
+
|
|
634
|
+
- ab48c97: dependencies updates:
|
|
635
|
+
- Updated dependency [`zod-to-json-schema@^3.24.6` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.6) (from `^3.24.5`, in `dependencies`)
|
|
636
|
+
- de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
|
|
637
|
+
- a5632dd: Deprecate integrations in favor of mcp
|
|
638
|
+
- f0dfcac: updated core peerdep
|
|
639
|
+
- 0ce418a: upgrade ai v5 versions to latest for core and memory
|
|
640
|
+
- Updated dependencies [ab48c97]
|
|
641
|
+
- Updated dependencies [ab48c97]
|
|
642
|
+
- Updated dependencies [85ef90b]
|
|
643
|
+
- Updated dependencies [aedbbfa]
|
|
644
|
+
- Updated dependencies [ff89505]
|
|
645
|
+
- Updated dependencies [637f323]
|
|
646
|
+
- Updated dependencies [de3cbc6]
|
|
647
|
+
- Updated dependencies [c19bcf7]
|
|
648
|
+
- Updated dependencies [4474d04]
|
|
649
|
+
- Updated dependencies [183dc95]
|
|
650
|
+
- Updated dependencies [a1111e2]
|
|
651
|
+
- Updated dependencies [b42a961]
|
|
652
|
+
- Updated dependencies [61debef]
|
|
653
|
+
- Updated dependencies [9beaeff]
|
|
654
|
+
- Updated dependencies [29de0e1]
|
|
655
|
+
- Updated dependencies [f643c65]
|
|
656
|
+
- Updated dependencies [00c74e7]
|
|
657
|
+
- Updated dependencies [fef7375]
|
|
658
|
+
- Updated dependencies [e3d8fea]
|
|
659
|
+
- Updated dependencies [45e4d39]
|
|
660
|
+
- Updated dependencies [9eee594]
|
|
661
|
+
- Updated dependencies [7149d8d]
|
|
662
|
+
- Updated dependencies [822c2e8]
|
|
663
|
+
- Updated dependencies [979912c]
|
|
664
|
+
- Updated dependencies [7dcf4c0]
|
|
665
|
+
- Updated dependencies [4106a58]
|
|
666
|
+
- Updated dependencies [ad78bfc]
|
|
667
|
+
- Updated dependencies [0302f50]
|
|
668
|
+
- Updated dependencies [6ac697e]
|
|
669
|
+
- Updated dependencies [74db265]
|
|
670
|
+
- Updated dependencies [0ce418a]
|
|
671
|
+
- Updated dependencies [af90672]
|
|
672
|
+
- Updated dependencies [8387952]
|
|
673
|
+
- Updated dependencies [7f3b8da]
|
|
674
|
+
- Updated dependencies [905352b]
|
|
675
|
+
- Updated dependencies [599d04c]
|
|
676
|
+
- Updated dependencies [56041d0]
|
|
677
|
+
- Updated dependencies [3412597]
|
|
678
|
+
- Updated dependencies [5eca5d2]
|
|
679
|
+
- Updated dependencies [f2cda47]
|
|
680
|
+
- Updated dependencies [5de1555]
|
|
681
|
+
- Updated dependencies [cfd377a]
|
|
682
|
+
- Updated dependencies [1ed5a3e]
|
|
683
|
+
- @mastra/core@0.15.3
|
|
684
|
+
- @mastra/schema-compat@0.11.2
|
|
685
|
+
|
|
686
|
+
## 0.14.3-alpha.4
|
|
687
|
+
|
|
688
|
+
### Patch Changes
|
|
689
|
+
|
|
690
|
+
- [#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
|
|
691
|
+
|
|
692
|
+
- Updated dependencies [[`7149d8d`](https://github.com/mastra-ai/mastra/commit/7149d8d4bdc1edf0008e0ca9b7925eb0b8b60dbe)]:
|
|
693
|
+
- @mastra/core@0.15.3-alpha.7
|
|
694
|
+
|
|
695
|
+
## 0.14.3-alpha.3
|
|
696
|
+
|
|
697
|
+
### Patch Changes
|
|
698
|
+
|
|
699
|
+
- [#7360](https://github.com/mastra-ai/mastra/pull/7360) [`a5632dd`](https://github.com/mastra-ai/mastra/commit/a5632dd316a6246666662705404bda570b070af1) Thanks [@wardpeet](https://github.com/wardpeet)! - Deprecate integrations in favor of mcp
|
|
700
|
+
|
|
701
|
+
- Updated dependencies [[`c19bcf7`](https://github.com/mastra-ai/mastra/commit/c19bcf7b43542b02157b5e17303e519933a153ab), [`b42a961`](https://github.com/mastra-ai/mastra/commit/b42a961a5aefd19d6e938a7705fc0ecc90e8f756), [`45e4d39`](https://github.com/mastra-ai/mastra/commit/45e4d391a2a09fc70c48e4d60f505586ada1ba0e), [`0302f50`](https://github.com/mastra-ai/mastra/commit/0302f50861a53c66ff28801fc371b37c5f97e41e), [`74db265`](https://github.com/mastra-ai/mastra/commit/74db265b96aa01a72ffd91dcae0bc3b346cca0f2), [`7f3b8da`](https://github.com/mastra-ai/mastra/commit/7f3b8da6dd21c35d3672e44b4f5dd3502b8f8f92), [`905352b`](https://github.com/mastra-ai/mastra/commit/905352bcda134552400eb252bca1cb05a7975c14), [`f2cda47`](https://github.com/mastra-ai/mastra/commit/f2cda47ae911038c5d5489f54c36517d6f15bdcc), [`cfd377a`](https://github.com/mastra-ai/mastra/commit/cfd377a3a33a9c88b644f6540feed9cd9832db47)]:
|
|
702
|
+
- @mastra/core@0.15.3-alpha.6
|
|
703
|
+
- @mastra/schema-compat@0.11.2-alpha.3
|
|
704
|
+
|
|
705
|
+
## 0.14.3-alpha.2
|
|
706
|
+
|
|
707
|
+
### Patch Changes
|
|
708
|
+
|
|
709
|
+
- [#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`.
|
|
710
|
+
|
|
711
|
+
- Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
|
|
712
|
+
- @mastra/core@0.15.3-alpha.5
|
|
713
|
+
- @mastra/schema-compat@0.11.2-alpha.2
|
|
714
|
+
|
|
715
|
+
## 0.14.3-alpha.1
|
|
716
|
+
|
|
717
|
+
### Patch Changes
|
|
718
|
+
|
|
719
|
+
- [#5816](https://github.com/mastra-ai/mastra/pull/5816) [`ab48c97`](https://github.com/mastra-ai/mastra/commit/ab48c979098ea571faf998a55d3a00e7acd7a715) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
|
|
720
|
+
- Updated dependency [`zod-to-json-schema@^3.24.6` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.6) (from `^3.24.5`, in `dependencies`)
|
|
721
|
+
|
|
722
|
+
- [#7219](https://github.com/mastra-ai/mastra/pull/7219) [`0ce418a`](https://github.com/mastra-ai/mastra/commit/0ce418a1ccaa5e125d4483a9651b635046152569) Thanks [@NikAiyer](https://github.com/NikAiyer)! - upgrade ai v5 versions to latest for core and memory
|
|
723
|
+
|
|
724
|
+
- Updated dependencies [[`ab48c97`](https://github.com/mastra-ai/mastra/commit/ab48c979098ea571faf998a55d3a00e7acd7a715), [`ab48c97`](https://github.com/mastra-ai/mastra/commit/ab48c979098ea571faf998a55d3a00e7acd7a715), [`ff89505`](https://github.com/mastra-ai/mastra/commit/ff895057c8c7e91a5535faef46c5e5391085ddfa), [`183dc95`](https://github.com/mastra-ai/mastra/commit/183dc95596f391b977bd1a2c050b8498dac74891), [`a1111e2`](https://github.com/mastra-ai/mastra/commit/a1111e24e705488adfe5e0a6f20c53bddf26cb22), [`61debef`](https://github.com/mastra-ai/mastra/commit/61debefd80ad3a7ed5737e19df6a23d40091689a), [`9beaeff`](https://github.com/mastra-ai/mastra/commit/9beaeffa4a97b1d5fd01a7f8af8708b16067f67c), [`9eee594`](https://github.com/mastra-ai/mastra/commit/9eee594e35e0ca2a650fcc33fa82009a142b9ed0), [`979912c`](https://github.com/mastra-ai/mastra/commit/979912cfd180aad53287cda08af771df26454e2c), [`7dcf4c0`](https://github.com/mastra-ai/mastra/commit/7dcf4c04f44d9345b1f8bc5d41eae3f11ac61611), [`ad78bfc`](https://github.com/mastra-ai/mastra/commit/ad78bfc4ea6a1fff140432bf4f638e01af7af668), [`0ce418a`](https://github.com/mastra-ai/mastra/commit/0ce418a1ccaa5e125d4483a9651b635046152569), [`8387952`](https://github.com/mastra-ai/mastra/commit/838795227b4edf758c84a2adf6f7fba206c27719), [`5eca5d2`](https://github.com/mastra-ai/mastra/commit/5eca5d2655788863ea0442a46c9ef5d3c6dbe0a8)]:
|
|
725
|
+
- @mastra/core@0.15.3-alpha.4
|
|
726
|
+
- @mastra/schema-compat@0.11.2-alpha.1
|
|
727
|
+
|
|
728
|
+
## 0.14.3-alpha.0
|
|
729
|
+
|
|
730
|
+
### Patch Changes
|
|
731
|
+
|
|
732
|
+
- Updated dependencies [[`637f323`](https://github.com/mastra-ai/mastra/commit/637f32371d79a8f78c52c0d53411af0915fcec67), [`29de0e1`](https://github.com/mastra-ai/mastra/commit/29de0e1b0a7173317ae7d1ab0c0993167c659f2b), [`6ac697e`](https://github.com/mastra-ai/mastra/commit/6ac697edcc2435482c247cba615277ec4765dcc4)]:
|
|
733
|
+
- @mastra/schema-compat@0.11.2-alpha.0
|
|
734
|
+
- @mastra/core@0.15.3-alpha.1
|
|
735
|
+
|
|
736
|
+
## 0.14.2
|
|
737
|
+
|
|
738
|
+
### Patch Changes
|
|
739
|
+
|
|
740
|
+
- [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
|
|
741
|
+
|
|
742
|
+
- Updated dependencies [[`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430)]:
|
|
743
|
+
- @mastra/schema-compat@0.11.1
|
|
744
|
+
- @mastra/core@0.15.2
|
|
745
|
+
|
|
746
|
+
## 0.14.1
|
|
747
|
+
|
|
748
|
+
### Patch Changes
|
|
749
|
+
|
|
750
|
+
- [`95b2aa9`](https://github.com/mastra-ai/mastra/commit/95b2aa908230919e67efcac0d69005a2d5745298) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdeps @mastra/core
|
|
751
|
+
|
|
752
|
+
- Updated dependencies []:
|
|
753
|
+
- @mastra/core@0.15.1
|
|
754
|
+
|
|
755
|
+
## 0.14.0
|
|
756
|
+
|
|
757
|
+
### Minor Changes
|
|
758
|
+
|
|
759
|
+
- [#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
|
|
760
|
+
|
|
761
|
+
- [#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
|
|
762
|
+
|
|
763
|
+
### Patch Changes
|
|
764
|
+
|
|
765
|
+
- [#6933](https://github.com/mastra-ai/mastra/pull/6933) [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b) Thanks [@NikAiyer](https://github.com/NikAiyer)! - Add util functions for workflow server handlers and made processor process function async
|
|
766
|
+
|
|
767
|
+
- [#6996](https://github.com/mastra-ai/mastra/pull/6996) [`24d9ee3`](https://github.com/mastra-ai/mastra/commit/24d9ee3db1c09d15f27a5d0971b102abcfcf7dfd) Thanks [@wardpeet](https://github.com/wardpeet)! - Improve type resolving
|
|
768
|
+
|
|
769
|
+
- [#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
|
|
770
|
+
|
|
771
|
+
- 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), [`da58ccc`](https://github.com/mastra-ai/mastra/commit/da58ccc1f2ac33da0cb97b00443fc6208b45bdec), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`94e9f54`](https://github.com/mastra-ai/mastra/commit/94e9f547d66ef7cd01d9075ab53b5ca9a1cae100), [`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), [`a93f3ba`](https://github.com/mastra-ai/mastra/commit/a93f3ba05eef4cf17f876d61d29cf0841a9e70b7), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
|
|
772
|
+
- @mastra/core@0.15.0
|
|
773
|
+
- @mastra/schema-compat@0.11.0
|
|
774
|
+
|
|
775
|
+
## 0.14.0-alpha.3
|
|
776
|
+
|
|
777
|
+
### Minor Changes
|
|
778
|
+
|
|
779
|
+
- [#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
|
|
780
|
+
|
|
781
|
+
### Patch Changes
|
|
782
|
+
|
|
783
|
+
- Updated dependencies [[`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c)]:
|
|
784
|
+
- @mastra/schema-compat@0.11.0-alpha.2
|
|
785
|
+
- @mastra/core@0.15.0-alpha.4
|
|
786
|
+
|
|
787
|
+
## 0.14.0-alpha.2
|
|
788
|
+
|
|
789
|
+
### Minor Changes
|
|
790
|
+
|
|
791
|
+
- [#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
|
|
792
|
+
|
|
793
|
+
### Patch Changes
|
|
794
|
+
|
|
795
|
+
- Updated dependencies [[`da58ccc`](https://github.com/mastra-ai/mastra/commit/da58ccc1f2ac33da0cb97b00443fc6208b45bdec)]:
|
|
796
|
+
- @mastra/schema-compat@0.10.6-alpha.1
|
|
797
|
+
- @mastra/core@0.15.0-alpha.3
|
|
798
|
+
|
|
799
|
+
## 0.13.2-alpha.1
|
|
800
|
+
|
|
801
|
+
### Patch Changes
|
|
802
|
+
|
|
803
|
+
- [#6996](https://github.com/mastra-ai/mastra/pull/6996) [`24d9ee3`](https://github.com/mastra-ai/mastra/commit/24d9ee3db1c09d15f27a5d0971b102abcfcf7dfd) Thanks [@wardpeet](https://github.com/wardpeet)! - Improve type resolving
|
|
804
|
+
|
|
805
|
+
- [#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
|
|
806
|
+
|
|
807
|
+
- 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), [`94e9f54`](https://github.com/mastra-ai/mastra/commit/94e9f547d66ef7cd01d9075ab53b5ca9a1cae100), [`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), [`a93f3ba`](https://github.com/mastra-ai/mastra/commit/a93f3ba05eef4cf17f876d61d29cf0841a9e70b7)]:
|
|
808
|
+
- @mastra/core@0.14.2-alpha.1
|
|
809
|
+
- @mastra/schema-compat@0.10.6-alpha.0
|
|
810
|
+
|
|
811
|
+
## 0.13.2-alpha.0
|
|
812
|
+
|
|
813
|
+
### Patch Changes
|
|
814
|
+
|
|
815
|
+
- [#6933](https://github.com/mastra-ai/mastra/pull/6933) [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b) Thanks [@NikAiyer](https://github.com/NikAiyer)! - Add util functions for workflow server handlers and made processor process function async
|
|
816
|
+
|
|
817
|
+
- Updated dependencies [[`0778757`](https://github.com/mastra-ai/mastra/commit/07787570e4addbd501522037bd2542c3d9e26822), [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b), [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
|
|
818
|
+
- @mastra/core@0.14.2-alpha.0
|
|
819
|
+
|
|
820
|
+
## 0.13.1
|
|
821
|
+
|
|
822
|
+
### Patch Changes
|
|
823
|
+
|
|
824
|
+
- [#6919](https://github.com/mastra-ai/mastra/pull/6919) [`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
|
|
825
|
+
- Updated dependency [`ai@^4.3.19` ↗︎](https://www.npmjs.com/package/ai/v/4.3.19) (from `^4.3.16`, in `dependencies`)
|
|
826
|
+
- Updated dependency [`ai-v5@npm:ai@5.0.15` ↗︎](https://www.npmjs.com/package/ai-v5/v/5.0.15) (from `npm:ai@5.0.0`, in `dependencies`)
|
|
827
|
+
|
|
828
|
+
- [#6921](https://github.com/mastra-ai/mastra/pull/6921) [`c4f2605`](https://github.com/mastra-ai/mastra/commit/c4f2605fa00e796a26c6f5fc3cf8f5552f77d617) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
|
|
829
|
+
- Updated dependency [`redis@^5.8.2` ↗︎](https://www.npmjs.com/package/redis/v/5.8.2) (from `^5.8.1`, in `dependencies`)
|
|
830
|
+
- Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`0f00e17`](https://github.com/mastra-ai/mastra/commit/0f00e172953ccdccadb35ed3d70f5e4d89115869), [`217cd7a`](https://github.com/mastra-ai/mastra/commit/217cd7a4ce171e9a575c41bb8c83300f4db03236), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
|
|
831
|
+
- @mastra/core@0.14.1
|
|
832
|
+
|
|
833
|
+
## 0.13.1-alpha.0
|
|
834
|
+
|
|
835
|
+
### Patch Changes
|
|
836
|
+
|
|
837
|
+
- [#6919](https://github.com/mastra-ai/mastra/pull/6919) [`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
|
|
838
|
+
- Updated dependency [`ai@^4.3.19` ↗︎](https://www.npmjs.com/package/ai/v/4.3.19) (from `^4.3.16`, in `dependencies`)
|
|
839
|
+
- Updated dependency [`ai-v5@npm:ai@5.0.15` ↗︎](https://www.npmjs.com/package/ai-v5/v/5.0.15) (from `npm:ai@5.0.0`, in `dependencies`)
|
|
840
|
+
|
|
841
|
+
- [#6921](https://github.com/mastra-ai/mastra/pull/6921) [`c4f2605`](https://github.com/mastra-ai/mastra/commit/c4f2605fa00e796a26c6f5fc3cf8f5552f77d617) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
|
|
842
|
+
- Updated dependency [`redis@^5.8.2` ↗︎](https://www.npmjs.com/package/redis/v/5.8.2) (from `^5.8.1`, in `dependencies`)
|
|
843
|
+
- Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
|
|
844
|
+
- @mastra/core@0.14.1-alpha.0
|
|
845
|
+
|
|
846
|
+
## 0.13.0
|
|
847
|
+
|
|
848
|
+
### Minor Changes
|
|
849
|
+
|
|
850
|
+
- 03997ae: Update peer deps of core
|
|
851
|
+
|
|
852
|
+
### Patch Changes
|
|
853
|
+
|
|
854
|
+
- 8a41506: dependencies updates:
|
|
855
|
+
- Updated dependency [`redis@^5.8.1` ↗︎](https://www.npmjs.com/package/redis/v/5.8.1) (from `^5.8.0`, in `dependencies`)
|
|
856
|
+
- 2454423: Agentic loop and streaming workflow: generateVNext and streamVNext
|
|
857
|
+
- Updated dependencies [227c7e6]
|
|
858
|
+
- Updated dependencies [12cae67]
|
|
859
|
+
- Updated dependencies [fd3a3eb]
|
|
860
|
+
- Updated dependencies [6faaee5]
|
|
861
|
+
- Updated dependencies [4232b14]
|
|
862
|
+
- Updated dependencies [a89de7e]
|
|
863
|
+
- Updated dependencies [5a37d0c]
|
|
864
|
+
- Updated dependencies [4bde0cb]
|
|
865
|
+
- Updated dependencies [cf4f357]
|
|
866
|
+
- Updated dependencies [ad888a2]
|
|
867
|
+
- Updated dependencies [481751d]
|
|
868
|
+
- Updated dependencies [2454423]
|
|
869
|
+
- Updated dependencies [194e395]
|
|
870
|
+
- Updated dependencies [a722c0b]
|
|
871
|
+
- Updated dependencies [c30bca8]
|
|
872
|
+
- Updated dependencies [3b5fec7]
|
|
873
|
+
- Updated dependencies [a8f129d]
|
|
874
|
+
- @mastra/core@0.14.0
|
|
875
|
+
|
|
876
|
+
## 0.13.0-alpha.1
|
|
877
|
+
|
|
878
|
+
### Minor Changes
|
|
879
|
+
|
|
880
|
+
- 03997ae: Update peer deps of core
|
|
881
|
+
|
|
882
|
+
### Patch Changes
|
|
883
|
+
|
|
884
|
+
- @mastra/core@0.14.0-alpha.7
|
|
885
|
+
|
|
886
|
+
## 0.12.3-alpha.0
|
|
887
|
+
|
|
888
|
+
### Patch Changes
|
|
889
|
+
|
|
890
|
+
- 8a41506: dependencies updates:
|
|
891
|
+
- Updated dependency [`redis@^5.8.1` ↗︎](https://www.npmjs.com/package/redis/v/5.8.1) (from `^5.8.0`, in `dependencies`)
|
|
892
|
+
- 2454423: generateVNext and streamVNext
|
|
893
|
+
- a741dde: generateVNext plumbing
|
|
894
|
+
- e2ed127: Memory tests checkin
|
|
895
|
+
- Updated dependencies [0a7f675]
|
|
896
|
+
- Updated dependencies [12cae67]
|
|
897
|
+
- Updated dependencies [5a37d0c]
|
|
898
|
+
- Updated dependencies [4bde0cb]
|
|
899
|
+
- Updated dependencies [1a80071]
|
|
900
|
+
- Updated dependencies [36a3be8]
|
|
901
|
+
- Updated dependencies [361757b]
|
|
902
|
+
- Updated dependencies [2bb9955]
|
|
903
|
+
- Updated dependencies [2454423]
|
|
904
|
+
- Updated dependencies [a44d91e]
|
|
905
|
+
- Updated dependencies [dfb91e9]
|
|
906
|
+
- Updated dependencies [a741dde]
|
|
907
|
+
- Updated dependencies [7cb3fc0]
|
|
908
|
+
- Updated dependencies [195eabb]
|
|
909
|
+
- Updated dependencies [b78b95b]
|
|
910
|
+
- @mastra/core@0.14.0-alpha.4
|
|
911
|
+
|
|
912
|
+
## 0.12.2
|
|
913
|
+
|
|
914
|
+
### Patch Changes
|
|
915
|
+
|
|
916
|
+
- da62f49: When using a schema for working memory, make that the tools schema so the agent better understands the schema.
|
|
917
|
+
- 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
|
|
918
|
+
- Updated dependencies [d5330bf]
|
|
919
|
+
- Updated dependencies [2e74797]
|
|
920
|
+
- Updated dependencies [8388649]
|
|
921
|
+
- Updated dependencies [a239d41]
|
|
922
|
+
- Updated dependencies [dd94a26]
|
|
923
|
+
- Updated dependencies [3ba6772]
|
|
924
|
+
- Updated dependencies [b5cf2a3]
|
|
925
|
+
- Updated dependencies [2fff911]
|
|
926
|
+
- Updated dependencies [b32c50d]
|
|
927
|
+
- Updated dependencies [63449d0]
|
|
928
|
+
- Updated dependencies [121a3f8]
|
|
929
|
+
- Updated dependencies [ec510e7]
|
|
930
|
+
- Updated dependencies [ae2eb63]
|
|
931
|
+
- @mastra/core@0.13.2
|
|
932
|
+
- @mastra/schema-compat@0.10.7
|
|
933
|
+
|
|
934
|
+
## 0.12.2-alpha.2
|
|
935
|
+
|
|
936
|
+
### Patch Changes
|
|
937
|
+
|
|
938
|
+
- Updated dependencies [d5330bf]
|
|
939
|
+
- Updated dependencies [a239d41]
|
|
940
|
+
- Updated dependencies [b32c50d]
|
|
941
|
+
- Updated dependencies [121a3f8]
|
|
942
|
+
- Updated dependencies [ec510e7]
|
|
943
|
+
- Updated dependencies [ae2eb63]
|
|
944
|
+
- @mastra/core@0.13.2-alpha.2
|
|
945
|
+
- @mastra/schema-compat@0.10.7-alpha.1
|
|
946
|
+
|
|
947
|
+
## 0.12.2-alpha.1
|
|
948
|
+
|
|
949
|
+
### Patch Changes
|
|
950
|
+
|
|
951
|
+
- da62f49: When using a schema for working memory, make that the tools schema so the agent better understands the schema.
|
|
952
|
+
- Updated dependencies [2e74797]
|
|
953
|
+
- Updated dependencies [63449d0]
|
|
954
|
+
- @mastra/core@0.13.2-alpha.1
|
|
955
|
+
|
|
956
|
+
## 0.12.2-alpha.0
|
|
957
|
+
|
|
958
|
+
### Patch Changes
|
|
959
|
+
|
|
960
|
+
- 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
|
|
961
|
+
- Updated dependencies [8388649]
|
|
962
|
+
- Updated dependencies [dd94a26]
|
|
963
|
+
- Updated dependencies [3ba6772]
|
|
964
|
+
- Updated dependencies [2fff911]
|
|
965
|
+
- @mastra/core@0.13.2-alpha.0
|
|
966
|
+
|
|
967
|
+
## 0.12.1
|
|
968
|
+
|
|
969
|
+
### Patch Changes
|
|
970
|
+
|
|
971
|
+
- 7d53af4: dependencies updates:
|
|
972
|
+
- Updated dependency [`redis@^5.7.0` ↗︎](https://www.npmjs.com/package/redis/v/5.7.0) (from `^5.6.0`, in `dependencies`)
|
|
973
|
+
- e1a2ef1: dependencies updates:
|
|
974
|
+
- Updated dependency [`@upstash/redis@^1.35.3` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.3) (from `^1.35.1`, in `dependencies`)
|
|
975
|
+
- f082460: dependencies updates:
|
|
976
|
+
- Updated dependency [`redis@^5.8.0` ↗︎](https://www.npmjs.com/package/redis/v/5.8.0) (from `^5.7.0`, in `dependencies`)
|
|
977
|
+
- e202b82: Add getThreadsByResourceIdPaginated to the Memory Class
|
|
978
|
+
- 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
|
|
979
|
+
- Updated dependencies [cb36de0]
|
|
980
|
+
- Updated dependencies [d0496e6]
|
|
981
|
+
- Updated dependencies [a82b851]
|
|
982
|
+
- Updated dependencies [ea0c5f2]
|
|
983
|
+
- Updated dependencies [41a0a0e]
|
|
984
|
+
- Updated dependencies [2871020]
|
|
985
|
+
- Updated dependencies [94f4812]
|
|
986
|
+
- Updated dependencies [e202b82]
|
|
987
|
+
- Updated dependencies [e00f6a0]
|
|
988
|
+
- Updated dependencies [4a406ec]
|
|
989
|
+
- Updated dependencies [b0e43c1]
|
|
990
|
+
- Updated dependencies [5d377e5]
|
|
991
|
+
- Updated dependencies [1fb812e]
|
|
992
|
+
- Updated dependencies [35c5798]
|
|
993
|
+
- @mastra/core@0.13.0
|
|
994
|
+
|
|
995
|
+
## 0.12.1-alpha.2
|
|
996
|
+
|
|
997
|
+
### Patch Changes
|
|
998
|
+
|
|
999
|
+
- e1a2ef1: dependencies updates:
|
|
1000
|
+
- Updated dependency [`@upstash/redis@^1.35.3` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.3) (from `^1.35.1`, in `dependencies`)
|
|
1001
|
+
- f082460: dependencies updates:
|
|
1002
|
+
- Updated dependency [`redis@^5.8.0` ↗︎](https://www.npmjs.com/package/redis/v/5.8.0) (from `^5.7.0`, in `dependencies`)
|
|
1003
|
+
- 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
|
|
1004
|
+
- Updated dependencies [cb36de0]
|
|
1005
|
+
- Updated dependencies [a82b851]
|
|
1006
|
+
- Updated dependencies [41a0a0e]
|
|
1007
|
+
- Updated dependencies [2871020]
|
|
1008
|
+
- Updated dependencies [4a406ec]
|
|
1009
|
+
- Updated dependencies [5d377e5]
|
|
1010
|
+
- @mastra/core@0.13.0-alpha.2
|
|
1011
|
+
|
|
1012
|
+
## 0.12.1-alpha.1
|
|
1013
|
+
|
|
1014
|
+
### Patch Changes
|
|
1015
|
+
|
|
1016
|
+
- 7d53af4: dependencies updates:
|
|
1017
|
+
- Updated dependency [`redis@^5.7.0` ↗︎](https://www.npmjs.com/package/redis/v/5.7.0) (from `^5.6.0`, in `dependencies`)
|
|
1018
|
+
- Updated dependencies [ea0c5f2]
|
|
1019
|
+
- Updated dependencies [b0e43c1]
|
|
1020
|
+
- Updated dependencies [1fb812e]
|
|
1021
|
+
- Updated dependencies [35c5798]
|
|
1022
|
+
- @mastra/core@0.13.0-alpha.1
|
|
1023
|
+
|
|
1024
|
+
## 0.12.1-alpha.0
|
|
1025
|
+
|
|
1026
|
+
### Patch Changes
|
|
1027
|
+
|
|
1028
|
+
- e202b82: Add getThreadsByResourceIdPaginated to the Memory Class
|
|
1029
|
+
- Updated dependencies [94f4812]
|
|
1030
|
+
- Updated dependencies [e202b82]
|
|
1031
|
+
- Updated dependencies [e00f6a0]
|
|
1032
|
+
- @mastra/core@0.12.2-alpha.0
|
|
1033
|
+
|
|
1034
|
+
## 0.12.0
|
|
1035
|
+
|
|
1036
|
+
### Minor Changes
|
|
1037
|
+
|
|
1038
|
+
- f42c4c2: update peer deps for packages to latest core range
|
|
1039
|
+
|
|
1040
|
+
### Patch Changes
|
|
1041
|
+
|
|
1042
|
+
- 674a348: dependencies updates:
|
|
1043
|
+
- Updated dependency [`@upstash/redis@^1.35.1` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.1) (from `^1.35.0`, in `dependencies`)
|
|
1044
|
+
- cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
|
|
1045
|
+
- ff9c125: enhance thread retrieval with sorting options in libsql and pg
|
|
1046
|
+
- b8efbb9: feat: add flexible deleteMessages method to memory API
|
|
1047
|
+
- Added `memory.deleteMessages(input)` method that accepts multiple input types:
|
|
1048
|
+
- Single message ID as string: `deleteMessages('msg-123')`
|
|
1049
|
+
- Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
|
|
1050
|
+
- Message object with id property: `deleteMessages({ id: 'msg-123' })`
|
|
1051
|
+
- Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
|
|
1052
|
+
- Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
|
|
1053
|
+
- Added REST API endpoint: `POST /api/memory/messages/delete`
|
|
1054
|
+
- Updated client SDK: `thread.deleteMessages()` accepts all input types
|
|
1055
|
+
- Updates thread timestamps when messages are deleted
|
|
1056
|
+
- Added comprehensive test coverage and documentation
|
|
1057
|
+
|
|
1058
|
+
- ad8a1d8: Fix inheriting storage from Mastra instance in Memory
|
|
1059
|
+
- Updated dependencies [510e2c8]
|
|
1060
|
+
- Updated dependencies [2f72fb2]
|
|
1061
|
+
- Updated dependencies [27cc97a]
|
|
1062
|
+
- Updated dependencies [3f89307]
|
|
1063
|
+
- Updated dependencies [9eda7d4]
|
|
1064
|
+
- Updated dependencies [9d49408]
|
|
1065
|
+
- Updated dependencies [41daa63]
|
|
1066
|
+
- Updated dependencies [ad0a58b]
|
|
1067
|
+
- Updated dependencies [254a36b]
|
|
1068
|
+
- Updated dependencies [2ecf658]
|
|
1069
|
+
- Updated dependencies [7a7754f]
|
|
1070
|
+
- Updated dependencies [fc92d80]
|
|
1071
|
+
- Updated dependencies [e0f73c6]
|
|
1072
|
+
- Updated dependencies [0b89602]
|
|
1073
|
+
- Updated dependencies [4d37822]
|
|
1074
|
+
- Updated dependencies [23a6a7c]
|
|
1075
|
+
- Updated dependencies [cda801d]
|
|
1076
|
+
- Updated dependencies [a77c823]
|
|
1077
|
+
- Updated dependencies [ff9c125]
|
|
1078
|
+
- Updated dependencies [09bca64]
|
|
1079
|
+
- Updated dependencies [b8efbb9]
|
|
1080
|
+
- Updated dependencies [71466e7]
|
|
1081
|
+
- Updated dependencies [0c99fbe]
|
|
1082
|
+
- @mastra/core@0.12.0
|
|
1083
|
+
|
|
1084
|
+
## 0.12.0-alpha.3
|
|
1085
|
+
|
|
1086
|
+
### Minor Changes
|
|
1087
|
+
|
|
1088
|
+
- f42c4c2: update peer deps for packages to latest core range
|
|
1089
|
+
|
|
1090
|
+
### Patch Changes
|
|
1091
|
+
|
|
1092
|
+
- @mastra/core@0.12.0-alpha.5
|
|
1093
|
+
|
|
1094
|
+
## 0.11.6-alpha.2
|
|
1095
|
+
|
|
1096
|
+
### Patch Changes
|
|
1097
|
+
|
|
1098
|
+
- ff9c125: enhance thread retrieval with sorting options in libsql and pg
|
|
1099
|
+
- b8efbb9: feat: add flexible deleteMessages method to memory API
|
|
1100
|
+
- Added `memory.deleteMessages(input)` method that accepts multiple input types:
|
|
1101
|
+
- Single message ID as string: `deleteMessages('msg-123')`
|
|
1102
|
+
- Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
|
|
1103
|
+
- Message object with id property: `deleteMessages({ id: 'msg-123' })`
|
|
1104
|
+
- Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
|
|
1105
|
+
- Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
|
|
1106
|
+
- Added REST API endpoint: `POST /api/memory/messages/delete`
|
|
1107
|
+
- Updated client SDK: `thread.deleteMessages()` accepts all input types
|
|
1108
|
+
- Updates thread timestamps when messages are deleted
|
|
1109
|
+
- Added comprehensive test coverage and documentation
|
|
1110
|
+
|
|
1111
|
+
- Updated dependencies [27cc97a]
|
|
1112
|
+
- Updated dependencies [41daa63]
|
|
1113
|
+
- Updated dependencies [254a36b]
|
|
1114
|
+
- Updated dependencies [0b89602]
|
|
1115
|
+
- Updated dependencies [4d37822]
|
|
1116
|
+
- Updated dependencies [ff9c125]
|
|
1117
|
+
- Updated dependencies [b8efbb9]
|
|
1118
|
+
- Updated dependencies [71466e7]
|
|
1119
|
+
- Updated dependencies [0c99fbe]
|
|
1120
|
+
- @mastra/core@0.12.0-alpha.2
|
|
1121
|
+
|
|
1122
|
+
## 0.11.6-alpha.1
|
|
1123
|
+
|
|
1124
|
+
### Patch Changes
|
|
1125
|
+
|
|
1126
|
+
- cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
|
|
1127
|
+
- Updated dependencies [e0f73c6]
|
|
1128
|
+
- Updated dependencies [cda801d]
|
|
1129
|
+
- Updated dependencies [a77c823]
|
|
1130
|
+
- @mastra/core@0.12.0-alpha.1
|
|
1131
|
+
|
|
1132
|
+
## 0.11.6-alpha.0
|
|
1133
|
+
|
|
1134
|
+
### Patch Changes
|
|
1135
|
+
|
|
1136
|
+
- 674a348: dependencies updates:
|
|
1137
|
+
- Updated dependency [`@upstash/redis@^1.35.1` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.1) (from `^1.35.0`, in `dependencies`)
|
|
1138
|
+
- ad8a1d8: Fix inheriting storage from Mastra instance in Memory
|
|
1139
|
+
- Updated dependencies [510e2c8]
|
|
1140
|
+
- Updated dependencies [2f72fb2]
|
|
1141
|
+
- Updated dependencies [3f89307]
|
|
1142
|
+
- Updated dependencies [9eda7d4]
|
|
1143
|
+
- Updated dependencies [9d49408]
|
|
1144
|
+
- Updated dependencies [2ecf658]
|
|
1145
|
+
- Updated dependencies [7a7754f]
|
|
1146
|
+
- Updated dependencies [fc92d80]
|
|
1147
|
+
- Updated dependencies [23a6a7c]
|
|
1148
|
+
- Updated dependencies [09bca64]
|
|
1149
|
+
- @mastra/core@0.12.0-alpha.0
|
|
1150
|
+
|
|
1151
|
+
## 0.11.5
|
|
1152
|
+
|
|
1153
|
+
### Patch Changes
|
|
1154
|
+
|
|
1155
|
+
- ce088f5: Update all peerdeps to latest core
|
|
1156
|
+
- @mastra/core@0.11.1
|
|
1157
|
+
|
|
1158
|
+
## 0.11.4
|
|
1159
|
+
|
|
1160
|
+
### Patch Changes
|
|
1161
|
+
|
|
1162
|
+
- 138f4a2: dependencies updates:
|
|
1163
|
+
- Updated dependency [`redis@^5.6.0` ↗︎](https://www.npmjs.com/package/redis/v/5.6.0) (from `^4.7.1`, in `dependencies`)
|
|
1164
|
+
- Updated dependencies [f248d53]
|
|
1165
|
+
- Updated dependencies [2affc57]
|
|
1166
|
+
- Updated dependencies [66e13e3]
|
|
1167
|
+
- Updated dependencies [edd9482]
|
|
1168
|
+
- Updated dependencies [18344d7]
|
|
1169
|
+
- Updated dependencies [9d372c2]
|
|
1170
|
+
- Updated dependencies [40c2525]
|
|
1171
|
+
- Updated dependencies [e473f27]
|
|
1172
|
+
- Updated dependencies [032cb66]
|
|
1173
|
+
- Updated dependencies [703ac71]
|
|
1174
|
+
- Updated dependencies [a723d69]
|
|
1175
|
+
- Updated dependencies [7827943]
|
|
1176
|
+
- Updated dependencies [5889a31]
|
|
1177
|
+
- Updated dependencies [bf1e7e7]
|
|
1178
|
+
- Updated dependencies [65e3395]
|
|
1179
|
+
- Updated dependencies [4933192]
|
|
1180
|
+
- Updated dependencies [d1c77a4]
|
|
1181
|
+
- Updated dependencies [bea9dd1]
|
|
1182
|
+
- Updated dependencies [dcd4802]
|
|
1183
|
+
- Updated dependencies [cbddd18]
|
|
1184
|
+
- Updated dependencies [7ba91fa]
|
|
1185
|
+
- @mastra/core@0.11.0
|
|
1186
|
+
|
|
1187
|
+
## 0.11.4-alpha.0
|
|
1188
|
+
|
|
1189
|
+
### Patch Changes
|
|
1190
|
+
|
|
1191
|
+
- 138f4a2: dependencies updates:
|
|
1192
|
+
- Updated dependency [`redis@^5.6.0` ↗︎](https://www.npmjs.com/package/redis/v/5.6.0) (from `^4.7.1`, in `dependencies`)
|
|
1193
|
+
- Updated dependencies [7827943]
|
|
1194
|
+
- Updated dependencies [bf1e7e7]
|
|
1195
|
+
- Updated dependencies [cbddd18]
|
|
1196
|
+
- @mastra/core@0.11.0-alpha.0
|
|
1197
|
+
|
|
1198
|
+
## 0.11.3
|
|
1199
|
+
|
|
1200
|
+
### Patch Changes
|
|
1201
|
+
|
|
1202
|
+
- 4b20131: Fixed an issue where per-resource semantic recall wouldn't always be enabled properly in agent tool calls
|
|
1203
|
+
- 2ba5b76: Allow passing jsonSchema into workingMemory schema
|
|
1204
|
+
- c3a30de: added new experimental vnext working memory
|
|
1205
|
+
- 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
|
|
1206
|
+
- Updated dependencies [0b56518]
|
|
1207
|
+
- Updated dependencies [db5cc15]
|
|
1208
|
+
- Updated dependencies [2ba5b76]
|
|
1209
|
+
- Updated dependencies [5237998]
|
|
1210
|
+
- Updated dependencies [c3a30de]
|
|
1211
|
+
- Updated dependencies [37c1acd]
|
|
1212
|
+
- Updated dependencies [1aa60b1]
|
|
1213
|
+
- Updated dependencies [89ec9d4]
|
|
1214
|
+
- Updated dependencies [cf3a184]
|
|
1215
|
+
- Updated dependencies [d6bfd60]
|
|
1216
|
+
- Updated dependencies [626b0f4]
|
|
1217
|
+
- Updated dependencies [c22a91f]
|
|
1218
|
+
- Updated dependencies [f7403ab]
|
|
1219
|
+
- Updated dependencies [6c89d7f]
|
|
1220
|
+
- @mastra/core@0.10.15
|
|
1221
|
+
|
|
1222
|
+
## 0.11.3-alpha.1
|
|
1223
|
+
|
|
1224
|
+
### Patch Changes
|
|
1225
|
+
|
|
1226
|
+
- 2ba5b76: Allow passing jsonSchema into workingMemory schema
|
|
1227
|
+
- c3a30de: added new experimental vnext working memory
|
|
1228
|
+
- Updated dependencies [0b56518]
|
|
1229
|
+
- Updated dependencies [2ba5b76]
|
|
1230
|
+
- Updated dependencies [c3a30de]
|
|
1231
|
+
- Updated dependencies [cf3a184]
|
|
1232
|
+
- Updated dependencies [d6bfd60]
|
|
1233
|
+
- @mastra/core@0.10.15-alpha.1
|
|
1234
|
+
|
|
1235
|
+
## 0.11.3-alpha.0
|
|
1236
|
+
|
|
1237
|
+
### Patch Changes
|
|
1238
|
+
|
|
1239
|
+
- 4b20131: Fixed an issue where per-resource semantic recall wouldn't always be enabled properly in agent tool calls
|
|
1240
|
+
- 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
|
|
1241
|
+
- Updated dependencies [db5cc15]
|
|
1242
|
+
- Updated dependencies [5237998]
|
|
1243
|
+
- Updated dependencies [37c1acd]
|
|
1244
|
+
- Updated dependencies [1aa60b1]
|
|
1245
|
+
- Updated dependencies [89ec9d4]
|
|
1246
|
+
- Updated dependencies [626b0f4]
|
|
1247
|
+
- Updated dependencies [c22a91f]
|
|
1248
|
+
- Updated dependencies [f7403ab]
|
|
1249
|
+
- Updated dependencies [6c89d7f]
|
|
1250
|
+
- @mastra/core@0.10.15-alpha.0
|
|
1251
|
+
|
|
1252
|
+
## 0.11.2
|
|
1253
|
+
|
|
1254
|
+
### Patch Changes
|
|
1255
|
+
|
|
1256
|
+
- fb2a1b9: dependencies updates:
|
|
1257
|
+
- Updated dependency [`pg@^8.16.3` ↗︎](https://www.npmjs.com/package/pg/v/8.16.3) (from `^8.16.0`, in `dependencies`)
|
|
1258
|
+
- bc2bbdc: dependencies updates:
|
|
1259
|
+
- Updated dependency [`pg-pool@^3.10.1` ↗︎](https://www.npmjs.com/package/pg-pool/v/3.10.1) (from `^3.10.0`, in `dependencies`)
|
|
1260
|
+
- Updated dependencies [2873c7f]
|
|
1261
|
+
- Updated dependencies [1c1c6a1]
|
|
1262
|
+
- Updated dependencies [f8ce2cc]
|
|
1263
|
+
- Updated dependencies [8c846b6]
|
|
1264
|
+
- Updated dependencies [c7bbf1e]
|
|
1265
|
+
- Updated dependencies [8722d53]
|
|
1266
|
+
- Updated dependencies [565cc0c]
|
|
1267
|
+
- Updated dependencies [b790fd1]
|
|
1268
|
+
- Updated dependencies [132027f]
|
|
1269
|
+
- Updated dependencies [0c85311]
|
|
1270
|
+
- Updated dependencies [d7ed04d]
|
|
1271
|
+
- Updated dependencies [cb16baf]
|
|
1272
|
+
- Updated dependencies [f36e4f1]
|
|
1273
|
+
- Updated dependencies [7f6e403]
|
|
1274
|
+
- @mastra/core@0.10.11
|
|
1275
|
+
|
|
1276
|
+
## 0.11.2-alpha.1
|
|
1277
|
+
|
|
1278
|
+
### Patch Changes
|
|
1279
|
+
|
|
1280
|
+
- bc2bbdc: dependencies updates:
|
|
1281
|
+
- Updated dependency [`pg-pool@^3.10.1` ↗︎](https://www.npmjs.com/package/pg-pool/v/3.10.1) (from `^3.10.0`, in `dependencies`)
|
|
1282
|
+
- Updated dependencies [2873c7f]
|
|
1283
|
+
- Updated dependencies [1c1c6a1]
|
|
1284
|
+
- Updated dependencies [565cc0c]
|
|
1285
|
+
- @mastra/core@0.10.11-alpha.2
|
|
1286
|
+
|
|
1287
|
+
## 0.11.2-alpha.0
|
|
1288
|
+
|
|
1289
|
+
### Patch Changes
|
|
1290
|
+
|
|
1291
|
+
- fb2a1b9: dependencies updates:
|
|
1292
|
+
- Updated dependency [`pg@^8.16.3` ↗︎](https://www.npmjs.com/package/pg/v/8.16.3) (from `^8.16.0`, in `dependencies`)
|
|
1293
|
+
- Updated dependencies [f8ce2cc]
|
|
1294
|
+
- Updated dependencies [8c846b6]
|
|
1295
|
+
- Updated dependencies [b790fd1]
|
|
1296
|
+
- Updated dependencies [d7ed04d]
|
|
1297
|
+
- Updated dependencies [f36e4f1]
|
|
1298
|
+
- @mastra/core@0.10.11-alpha.0
|
|
1299
|
+
|
|
1300
|
+
## 0.11.1
|
|
1301
|
+
|
|
1302
|
+
### Patch Changes
|
|
1303
|
+
|
|
1304
|
+
- 81a1b3b: Update peerdeps
|
|
1305
|
+
- b7852ed: [MASTRA-4139] make private functions protected in memory
|
|
1306
|
+
- Updated dependencies [9dda1ac]
|
|
1307
|
+
- Updated dependencies [c984582]
|
|
1308
|
+
- Updated dependencies [7e801dd]
|
|
1309
|
+
- Updated dependencies [a606c75]
|
|
1310
|
+
- Updated dependencies [7aa70a4]
|
|
1311
|
+
- Updated dependencies [764f86a]
|
|
1312
|
+
- Updated dependencies [1760a1c]
|
|
1313
|
+
- Updated dependencies [038e5ae]
|
|
1314
|
+
- Updated dependencies [7dda16a]
|
|
1315
|
+
- Updated dependencies [5ebfcdd]
|
|
1316
|
+
- Updated dependencies [b2d0c91]
|
|
1317
|
+
- Updated dependencies [4e809ad]
|
|
1318
|
+
- Updated dependencies [57929df]
|
|
1319
|
+
- Updated dependencies [b7852ed]
|
|
1320
|
+
- Updated dependencies [6320a61]
|
|
1321
|
+
- @mastra/core@0.10.9
|
|
1322
|
+
|
|
1323
|
+
## 0.11.1-alpha.0
|
|
1324
|
+
|
|
1325
|
+
### Patch Changes
|
|
1326
|
+
|
|
1327
|
+
- 81a1b3b: Update peerdeps
|
|
1328
|
+
- b7852ed: [MASTRA-4139] make private functions protected in memory
|
|
1329
|
+
- Updated dependencies [9dda1ac]
|
|
1330
|
+
- Updated dependencies [c984582]
|
|
1331
|
+
- Updated dependencies [7e801dd]
|
|
1332
|
+
- Updated dependencies [a606c75]
|
|
1333
|
+
- Updated dependencies [7aa70a4]
|
|
1334
|
+
- Updated dependencies [764f86a]
|
|
1335
|
+
- Updated dependencies [1760a1c]
|
|
1336
|
+
- Updated dependencies [038e5ae]
|
|
1337
|
+
- Updated dependencies [7dda16a]
|
|
1338
|
+
- Updated dependencies [5ebfcdd]
|
|
1339
|
+
- Updated dependencies [b2d0c91]
|
|
1340
|
+
- Updated dependencies [4e809ad]
|
|
1341
|
+
- Updated dependencies [57929df]
|
|
1342
|
+
- Updated dependencies [b7852ed]
|
|
1343
|
+
- Updated dependencies [6320a61]
|
|
1344
|
+
- @mastra/core@0.10.9-alpha.0
|
|
1345
|
+
|
|
1346
|
+
## 0.11.0
|
|
1347
|
+
|
|
1348
|
+
### Minor Changes
|
|
1349
|
+
|
|
1350
|
+
- 8a3bfd2: Update peerdeps to latest core
|
|
1351
|
+
|
|
1352
|
+
### Patch Changes
|
|
1353
|
+
|
|
1354
|
+
- 8e1b6e9: dependencies updates:
|
|
1355
|
+
- Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
|
|
1356
|
+
- 15e9d26: Added per-resource working memory for LibSQL, Upstash, and PG
|
|
1357
|
+
- d8f2d19: Add updateMessages API to storage classes (only support for PG and LibSQL for now) and to memory class. Additionally allow for metadata to be saved in the content field of a message.
|
|
1358
|
+
- a8b194f: Fix double tool call for working memory
|
|
1359
|
+
- Updated dependencies [15e9d26]
|
|
1360
|
+
- Updated dependencies [d1baedb]
|
|
1361
|
+
- Updated dependencies [d8f2d19]
|
|
1362
|
+
- Updated dependencies [4d21bf2]
|
|
1363
|
+
- Updated dependencies [07d6d88]
|
|
1364
|
+
- Updated dependencies [9d52b17]
|
|
1365
|
+
- Updated dependencies [2097952]
|
|
1366
|
+
- Updated dependencies [792c4c0]
|
|
1367
|
+
- Updated dependencies [5d74aab]
|
|
1368
|
+
- Updated dependencies [a8b194f]
|
|
1369
|
+
- Updated dependencies [4fb0cc2]
|
|
1370
|
+
- Updated dependencies [d2a7a31]
|
|
1371
|
+
- Updated dependencies [502fe05]
|
|
1372
|
+
- Updated dependencies [144eb0b]
|
|
1373
|
+
- Updated dependencies [8ba1b51]
|
|
1374
|
+
- Updated dependencies [4efcfa0]
|
|
1375
|
+
- Updated dependencies [0e17048]
|
|
1376
|
+
- @mastra/core@0.10.7
|
|
1377
|
+
|
|
1378
|
+
## 0.11.0-alpha.3
|
|
1379
|
+
|
|
1380
|
+
### Patch Changes
|
|
1381
|
+
|
|
1382
|
+
- a8b194f: Fix double tool call for working memory
|
|
1383
|
+
- Updated dependencies [a8b194f]
|
|
1384
|
+
- @mastra/core@0.10.7-alpha.4
|
|
1385
|
+
|
|
1386
|
+
## 0.11.0-alpha.2
|
|
1387
|
+
|
|
1388
|
+
### Minor Changes
|
|
1389
|
+
|
|
1390
|
+
- 8a3bfd2: Update peerdeps to latest core
|
|
1391
|
+
|
|
1392
|
+
### Patch Changes
|
|
1393
|
+
|
|
1394
|
+
- Updated dependencies [792c4c0]
|
|
1395
|
+
- Updated dependencies [502fe05]
|
|
1396
|
+
- Updated dependencies [4efcfa0]
|
|
1397
|
+
- @mastra/core@0.10.7-alpha.3
|
|
1398
|
+
|
|
1399
|
+
## 0.10.5-alpha.1
|
|
1400
|
+
|
|
1401
|
+
### Patch Changes
|
|
1402
|
+
|
|
1403
|
+
- 8e1b6e9: dependencies updates:
|
|
1404
|
+
- Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
|
|
1405
|
+
- 15e9d26: Added per-resource working memory for LibSQL, Upstash, and PG
|
|
1406
|
+
- Updated dependencies [15e9d26]
|
|
1407
|
+
- Updated dependencies [07d6d88]
|
|
1408
|
+
- Updated dependencies [5d74aab]
|
|
1409
|
+
- Updated dependencies [144eb0b]
|
|
1410
|
+
- @mastra/core@0.10.7-alpha.2
|
|
1411
|
+
|
|
1412
|
+
## 0.10.5-alpha.0
|
|
1413
|
+
|
|
1414
|
+
### Patch Changes
|
|
1415
|
+
|
|
1416
|
+
- d8f2d19: Add updateMessages API to storage classes (only support for PG and LibSQL for now) and to memory class. Additionally allow for metadata to be saved in the content field of a message.
|
|
1417
|
+
- Updated dependencies [d8f2d19]
|
|
1418
|
+
- Updated dependencies [9d52b17]
|
|
1419
|
+
- Updated dependencies [8ba1b51]
|
|
1420
|
+
- @mastra/core@0.10.7-alpha.0
|
|
1421
|
+
|
|
1422
|
+
## 0.10.4
|
|
1423
|
+
|
|
1424
|
+
### Patch Changes
|
|
1425
|
+
|
|
1426
|
+
- 4051477: dependencies updates:
|
|
1427
|
+
- Added dependency [`zod-to-json-schema@^3.24.5` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.5) (to `dependencies`)
|
|
1428
|
+
- 63f6b7d: dependencies updates:
|
|
1429
|
+
- Updated dependency [`@upstash/redis@^1.35.0` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.0) (from `^1.34.5`, in `dependencies`)
|
|
1430
|
+
- Updated dependency [`ai@^4.3.16` ↗︎](https://www.npmjs.com/package/ai/v/4.3.16) (from `^4.2.2`, in `dependencies`)
|
|
1431
|
+
- Updated dependency [`js-tiktoken@^1.0.20` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.20) (from `^1.0.19`, in `dependencies`)
|
|
1432
|
+
- Updated dependency [`pg@^8.16.0` ↗︎](https://www.npmjs.com/package/pg/v/8.16.0) (from `^8.13.3`, in `dependencies`)
|
|
1433
|
+
- Updated dependency [`pg-pool@^3.10.0` ↗︎](https://www.npmjs.com/package/pg-pool/v/3.10.0) (from `^3.7.1`, in `dependencies`)
|
|
1434
|
+
- Updated dependency [`postgres@^3.4.7` ↗︎](https://www.npmjs.com/package/postgres/v/3.4.7) (from `^3.4.5`, in `dependencies`)
|
|
1435
|
+
- Updated dependency [`redis@^4.7.1` ↗︎](https://www.npmjs.com/package/redis/v/4.7.1) (from `^4.7.0`, in `dependencies`)
|
|
1436
|
+
- Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
|
|
1437
|
+
- d70c420: fix(core, memory): fix fetchMemory regression
|
|
1438
|
+
- 2a16996: Working Memory Schema and Template
|
|
1439
|
+
- Updated dependencies [63f6b7d]
|
|
1440
|
+
- Updated dependencies [12a95fc]
|
|
1441
|
+
- Updated dependencies [4b0f8a6]
|
|
1442
|
+
- Updated dependencies [51264a5]
|
|
1443
|
+
- Updated dependencies [8e6f677]
|
|
1444
|
+
- Updated dependencies [d70c420]
|
|
1445
|
+
- Updated dependencies [ee9af57]
|
|
1446
|
+
- Updated dependencies [36f1c36]
|
|
1447
|
+
- Updated dependencies [2a16996]
|
|
1448
|
+
- Updated dependencies [10d352e]
|
|
1449
|
+
- Updated dependencies [9589624]
|
|
1450
|
+
- Updated dependencies [53d3c37]
|
|
1451
|
+
- Updated dependencies [751c894]
|
|
1452
|
+
- Updated dependencies [577ce3a]
|
|
1453
|
+
- Updated dependencies [9260b3a]
|
|
1454
|
+
- @mastra/core@0.10.6
|
|
1455
|
+
|
|
1456
|
+
## 0.10.4-alpha.1
|
|
1457
|
+
|
|
1458
|
+
### Patch Changes
|
|
1459
|
+
|
|
1460
|
+
- 4051477: dependencies updates:
|
|
1461
|
+
- Added dependency [`zod-to-json-schema@^3.24.5` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.5) (to `dependencies`)
|
|
1462
|
+
- d70c420: fix(core, memory): fix fetchMemory regression
|
|
1463
|
+
- 2a16996: Working Memory Schema and Template
|
|
1464
|
+
- Updated dependencies [d70c420]
|
|
1465
|
+
- Updated dependencies [2a16996]
|
|
1466
|
+
- @mastra/core@0.10.6-alpha.3
|
|
1467
|
+
|
|
1468
|
+
## 0.10.4-alpha.0
|
|
1469
|
+
|
|
1470
|
+
### Patch Changes
|
|
1471
|
+
|
|
1472
|
+
- 63f6b7d: dependencies updates:
|
|
1473
|
+
- Updated dependency [`@upstash/redis@^1.35.0` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.0) (from `^1.34.5`, in `dependencies`)
|
|
1474
|
+
- Updated dependency [`ai@^4.3.16` ↗︎](https://www.npmjs.com/package/ai/v/4.3.16) (from `^4.2.2`, in `dependencies`)
|
|
1475
|
+
- Updated dependency [`js-tiktoken@^1.0.20` ↗︎](https://www.npmjs.com/package/js-tiktoken/v/1.0.20) (from `^1.0.19`, in `dependencies`)
|
|
1476
|
+
- Updated dependency [`pg@^8.16.0` ↗︎](https://www.npmjs.com/package/pg/v/8.16.0) (from `^8.13.3`, in `dependencies`)
|
|
1477
|
+
- Updated dependency [`pg-pool@^3.10.0` ↗︎](https://www.npmjs.com/package/pg-pool/v/3.10.0) (from `^3.7.1`, in `dependencies`)
|
|
1478
|
+
- Updated dependency [`postgres@^3.4.7` ↗︎](https://www.npmjs.com/package/postgres/v/3.4.7) (from `^3.4.5`, in `dependencies`)
|
|
1479
|
+
- Updated dependency [`redis@^4.7.1` ↗︎](https://www.npmjs.com/package/redis/v/4.7.1) (from `^4.7.0`, in `dependencies`)
|
|
1480
|
+
- Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
|
|
1481
|
+
- Updated dependencies [63f6b7d]
|
|
1482
|
+
- Updated dependencies [36f1c36]
|
|
1483
|
+
- Updated dependencies [10d352e]
|
|
1484
|
+
- Updated dependencies [53d3c37]
|
|
1485
|
+
- @mastra/core@0.10.6-alpha.0
|
|
1486
|
+
|
|
1487
|
+
## 0.10.3
|
|
1488
|
+
|
|
1489
|
+
### Patch Changes
|
|
1490
|
+
|
|
1491
|
+
- 1ccccff: dependencies updates:
|
|
1492
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
1493
|
+
- 1ccccff: dependencies updates:
|
|
1494
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
1495
|
+
- a382d3b: Fix token limiter estimations after recent MessageList work changed message structure
|
|
1496
|
+
- 48eddb9: update filter logic in Memory class to support semantic recall search scope
|
|
1497
|
+
- 66f4424: Update peerdeps
|
|
1498
|
+
- Updated dependencies [d1ed912]
|
|
1499
|
+
- Updated dependencies [f6fd25f]
|
|
1500
|
+
- Updated dependencies [dffb67b]
|
|
1501
|
+
- Updated dependencies [f1f1f1b]
|
|
1502
|
+
- Updated dependencies [925ab94]
|
|
1503
|
+
- Updated dependencies [f9816ae]
|
|
1504
|
+
- Updated dependencies [82090c1]
|
|
1505
|
+
- Updated dependencies [1b443fd]
|
|
1506
|
+
- Updated dependencies [ce97900]
|
|
1507
|
+
- Updated dependencies [f1309d3]
|
|
1508
|
+
- Updated dependencies [14a2566]
|
|
1509
|
+
- Updated dependencies [f7f8293]
|
|
1510
|
+
- Updated dependencies [48eddb9]
|
|
1511
|
+
- @mastra/core@0.10.4
|
|
1512
|
+
|
|
1513
|
+
## 0.10.3-alpha.2
|
|
1514
|
+
|
|
1515
|
+
### Patch Changes
|
|
1516
|
+
|
|
1517
|
+
- 66f4424: Update peerdeps
|
|
1518
|
+
|
|
1519
|
+
## 0.10.3-alpha.1
|
|
1520
|
+
|
|
1521
|
+
### Patch Changes
|
|
1522
|
+
|
|
1523
|
+
- 48eddb9: update filter logic in Memory class to support semantic recall search scope
|
|
1524
|
+
- Updated dependencies [48eddb9]
|
|
1525
|
+
- @mastra/core@0.10.4-alpha.2
|
|
1526
|
+
|
|
1527
|
+
## 0.10.3-alpha.0
|
|
1528
|
+
|
|
1529
|
+
### Patch Changes
|
|
1530
|
+
|
|
1531
|
+
- 1ccccff: dependencies updates:
|
|
1532
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
1533
|
+
- 1ccccff: dependencies updates:
|
|
1534
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
1535
|
+
- a382d3b: Fix token limiter estimations after recent MessageList work changed message structure
|
|
1536
|
+
- Updated dependencies [f6fd25f]
|
|
1537
|
+
- Updated dependencies [dffb67b]
|
|
1538
|
+
- Updated dependencies [f1309d3]
|
|
1539
|
+
- Updated dependencies [f7f8293]
|
|
1540
|
+
- @mastra/core@0.10.4-alpha.1
|
|
1541
|
+
|
|
1542
|
+
## 0.10.2
|
|
1543
|
+
|
|
1544
|
+
### Patch Changes
|
|
1545
|
+
|
|
1546
|
+
- e5dc18d: Added a backwards compatible layer to begin storing/retrieving UIMessages in storage instead of CoreMessages
|
|
1547
|
+
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
1548
|
+
- f0d559f: Fix peerdeps for alpha channel
|
|
1549
|
+
- Updated dependencies [ee77e78]
|
|
1550
|
+
- Updated dependencies [592a2db]
|
|
1551
|
+
- Updated dependencies [e5dc18d]
|
|
1552
|
+
- Updated dependencies [ab5adbe]
|
|
1553
|
+
- Updated dependencies [1e8bb40]
|
|
1554
|
+
- Updated dependencies [1b5fc55]
|
|
1555
|
+
- Updated dependencies [195c428]
|
|
1556
|
+
- Updated dependencies [f73e11b]
|
|
1557
|
+
- Updated dependencies [37643b8]
|
|
1558
|
+
- Updated dependencies [99fd6cf]
|
|
1559
|
+
- Updated dependencies [c5bf1ce]
|
|
1560
|
+
- Updated dependencies [add596e]
|
|
1561
|
+
- Updated dependencies [8dc94d8]
|
|
1562
|
+
- Updated dependencies [ecebbeb]
|
|
1563
|
+
- Updated dependencies [79d5145]
|
|
1564
|
+
- Updated dependencies [12b7002]
|
|
1565
|
+
- Updated dependencies [2901125]
|
|
1566
|
+
- @mastra/core@0.10.2
|
|
1567
|
+
|
|
1568
|
+
## 0.10.2-alpha.2
|
|
1569
|
+
|
|
1570
|
+
### Patch Changes
|
|
1571
|
+
|
|
1572
|
+
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
1573
|
+
- Updated dependencies [c5bf1ce]
|
|
1574
|
+
- Updated dependencies [12b7002]
|
|
1575
|
+
- @mastra/core@0.10.2-alpha.4
|
|
1576
|
+
|
|
1577
|
+
## 0.10.2-alpha.1
|
|
1578
|
+
|
|
1579
|
+
### Patch Changes
|
|
1580
|
+
|
|
1581
|
+
- f0d559f: Fix peerdeps for alpha channel
|
|
1582
|
+
- Updated dependencies [1e8bb40]
|
|
1583
|
+
- @mastra/core@0.10.2-alpha.2
|
|
1584
|
+
|
|
1585
|
+
## 0.10.2-alpha.0
|
|
1586
|
+
|
|
1587
|
+
### Patch Changes
|
|
1588
|
+
|
|
1589
|
+
- e5dc18d: Added a backwards compatible layer to begin storing/retrieving UIMessages in storage instead of CoreMessages
|
|
1590
|
+
- Updated dependencies [592a2db]
|
|
1591
|
+
- Updated dependencies [e5dc18d]
|
|
1592
|
+
- @mastra/core@0.10.2-alpha.0
|
|
1593
|
+
|
|
1594
|
+
## 0.10.1
|
|
1595
|
+
|
|
1596
|
+
### Patch Changes
|
|
1597
|
+
|
|
1598
|
+
- d70b807: Improve storage.init
|
|
1599
|
+
- Updated dependencies [d70b807]
|
|
1600
|
+
- Updated dependencies [6d16390]
|
|
1601
|
+
- Updated dependencies [1e4a421]
|
|
1602
|
+
- Updated dependencies [200d0da]
|
|
1603
|
+
- Updated dependencies [bf5f17b]
|
|
1604
|
+
- Updated dependencies [5343f93]
|
|
1605
|
+
- Updated dependencies [38aee50]
|
|
1606
|
+
- Updated dependencies [5c41100]
|
|
1607
|
+
- Updated dependencies [d6a759b]
|
|
1608
|
+
- Updated dependencies [6015bdf]
|
|
1609
|
+
- @mastra/core@0.10.1
|
|
1610
|
+
|
|
1611
|
+
## 0.10.1-alpha.0
|
|
1612
|
+
|
|
1613
|
+
### Patch Changes
|
|
1614
|
+
|
|
1615
|
+
- d70b807: Improve storage.init
|
|
1616
|
+
- Updated dependencies [d70b807]
|
|
1617
|
+
- @mastra/core@0.10.1-alpha.3
|
|
1618
|
+
|
|
1619
|
+
## 0.10.0
|
|
1620
|
+
|
|
1621
|
+
### Minor Changes
|
|
1622
|
+
|
|
1623
|
+
- 83da932: Move @mastra/core to peerdeps
|
|
1624
|
+
- 0dcb9f0: Memory breaking changes: storage, vector, and embedder are now required. Working memory text streaming has been removed, only tool calling is supported for working memory updates now. Default settings have changed (lastMessages: 40->10, semanticRecall: true->false, threads.generateTitle: true->false)
|
|
1625
|
+
|
|
1626
|
+
### Patch Changes
|
|
1627
|
+
|
|
1628
|
+
- 3cd7aee: [MASTRA-3439] Working Memory tool call fix: Updated saveMessages to filter out workingmemory content from messages, rather than skip message completely
|
|
1629
|
+
- Updated dependencies [b3a3d63]
|
|
1630
|
+
- Updated dependencies [344f453]
|
|
1631
|
+
- Updated dependencies [0a3ae6d]
|
|
1632
|
+
- Updated dependencies [95911be]
|
|
1633
|
+
- Updated dependencies [f53a6ac]
|
|
1634
|
+
- Updated dependencies [5eb5a99]
|
|
1635
|
+
- Updated dependencies [7e632c5]
|
|
1636
|
+
- Updated dependencies [1e9fbfa]
|
|
1637
|
+
- Updated dependencies [eabdcd9]
|
|
1638
|
+
- Updated dependencies [90be034]
|
|
1639
|
+
- Updated dependencies [99f050a]
|
|
1640
|
+
- Updated dependencies [d0ee3c6]
|
|
1641
|
+
- Updated dependencies [b2ae5aa]
|
|
1642
|
+
- Updated dependencies [23f258c]
|
|
1643
|
+
- Updated dependencies [a7292b0]
|
|
1644
|
+
- Updated dependencies [0dcb9f0]
|
|
1645
|
+
- Updated dependencies [2672a05]
|
|
1646
|
+
- @mastra/core@0.10.0
|
|
1647
|
+
|
|
1648
|
+
## 0.4.0-alpha.1
|
|
1649
|
+
|
|
1650
|
+
### Minor Changes
|
|
1651
|
+
|
|
1652
|
+
- 83da932: Move @mastra/core to peerdeps
|
|
1653
|
+
- 0dcb9f0: Memory breaking changes: storage, vector, and embedder are now required. Working memory text streaming has been removed, only tool calling is supported for working memory updates now. Default settings have changed (lastMessages: 40->10, semanticRecall: true->false, threads.generateTitle: true->false)
|
|
1654
|
+
|
|
1655
|
+
### Patch Changes
|
|
1656
|
+
|
|
1657
|
+
- Updated dependencies [b3a3d63]
|
|
1658
|
+
- Updated dependencies [344f453]
|
|
1659
|
+
- Updated dependencies [0a3ae6d]
|
|
1660
|
+
- Updated dependencies [95911be]
|
|
1661
|
+
- Updated dependencies [5eb5a99]
|
|
1662
|
+
- Updated dependencies [7e632c5]
|
|
1663
|
+
- Updated dependencies [1e9fbfa]
|
|
1664
|
+
- Updated dependencies [b2ae5aa]
|
|
1665
|
+
- Updated dependencies [a7292b0]
|
|
1666
|
+
- Updated dependencies [0dcb9f0]
|
|
1667
|
+
- @mastra/core@0.10.0-alpha.1
|
|
1668
|
+
|
|
1669
|
+
## 0.3.5-alpha.0
|
|
1670
|
+
|
|
1671
|
+
### Patch Changes
|
|
1672
|
+
|
|
1673
|
+
- 3cd7aee: [MASTRA-3439] Working Memory tool call fix: Updated saveMessages to filter out workingmemory content from messages, rather than skip message completely
|
|
1674
|
+
- Updated dependencies [f53a6ac]
|
|
1675
|
+
- Updated dependencies [eabdcd9]
|
|
1676
|
+
- Updated dependencies [90be034]
|
|
1677
|
+
- Updated dependencies [99f050a]
|
|
1678
|
+
- Updated dependencies [d0ee3c6]
|
|
1679
|
+
- Updated dependencies [23f258c]
|
|
1680
|
+
- Updated dependencies [2672a05]
|
|
1681
|
+
- @mastra/core@0.9.5-alpha.0
|
|
1682
|
+
|
|
1683
|
+
## 0.3.4
|
|
1684
|
+
|
|
1685
|
+
### Patch Changes
|
|
1686
|
+
|
|
1687
|
+
- Updated dependencies [396be50]
|
|
1688
|
+
- Updated dependencies [ab80e7e]
|
|
1689
|
+
- Updated dependencies [c3bd795]
|
|
1690
|
+
- Updated dependencies [da082f8]
|
|
1691
|
+
- Updated dependencies [a5810ce]
|
|
1692
|
+
- Updated dependencies [3e9c131]
|
|
1693
|
+
- Updated dependencies [3171b5b]
|
|
1694
|
+
- Updated dependencies [973e5ac]
|
|
1695
|
+
- Updated dependencies [daf942f]
|
|
1696
|
+
- Updated dependencies [0b8b868]
|
|
1697
|
+
- Updated dependencies [9e1eff5]
|
|
1698
|
+
- Updated dependencies [6fa1ad1]
|
|
1699
|
+
- Updated dependencies [c28d7a0]
|
|
1700
|
+
- Updated dependencies [edf1e88]
|
|
1701
|
+
- @mastra/core@0.9.4
|
|
1702
|
+
|
|
1703
|
+
## 0.3.4-alpha.4
|
|
1704
|
+
|
|
1705
|
+
### Patch Changes
|
|
1706
|
+
|
|
1707
|
+
- Updated dependencies [3e9c131]
|
|
1708
|
+
- @mastra/core@0.9.4-alpha.4
|
|
1709
|
+
|
|
1710
|
+
## 0.3.4-alpha.3
|
|
1711
|
+
|
|
1712
|
+
### Patch Changes
|
|
1713
|
+
|
|
1714
|
+
- Updated dependencies [396be50]
|
|
1715
|
+
- Updated dependencies [c3bd795]
|
|
1716
|
+
- Updated dependencies [da082f8]
|
|
1717
|
+
- Updated dependencies [a5810ce]
|
|
1718
|
+
- @mastra/core@0.9.4-alpha.3
|
|
1719
|
+
|
|
1720
|
+
## 0.3.4-alpha.2
|
|
1721
|
+
|
|
1722
|
+
### Patch Changes
|
|
1723
|
+
|
|
1724
|
+
- Updated dependencies [3171b5b]
|
|
1725
|
+
- Updated dependencies [973e5ac]
|
|
1726
|
+
- Updated dependencies [9e1eff5]
|
|
1727
|
+
- @mastra/core@0.9.4-alpha.2
|
|
1728
|
+
|
|
1729
|
+
## 0.3.4-alpha.1
|
|
1730
|
+
|
|
1731
|
+
### Patch Changes
|
|
1732
|
+
|
|
1733
|
+
- Updated dependencies [ab80e7e]
|
|
1734
|
+
- Updated dependencies [6fa1ad1]
|
|
1735
|
+
- Updated dependencies [c28d7a0]
|
|
1736
|
+
- Updated dependencies [edf1e88]
|
|
1737
|
+
- @mastra/core@0.9.4-alpha.1
|
|
1738
|
+
|
|
1739
|
+
## 0.3.4-alpha.0
|
|
1740
|
+
|
|
1741
|
+
### Patch Changes
|
|
1742
|
+
|
|
1743
|
+
- Updated dependencies [daf942f]
|
|
1744
|
+
- Updated dependencies [0b8b868]
|
|
1745
|
+
- @mastra/core@0.9.4-alpha.0
|
|
1746
|
+
|
|
1747
|
+
## 0.3.3
|
|
1748
|
+
|
|
1749
|
+
### Patch Changes
|
|
1750
|
+
|
|
1751
|
+
- Updated dependencies [e450778]
|
|
1752
|
+
- Updated dependencies [8902157]
|
|
1753
|
+
- Updated dependencies [ca0dc88]
|
|
1754
|
+
- Updated dependencies [526c570]
|
|
1755
|
+
- Updated dependencies [d7a6a33]
|
|
1756
|
+
- Updated dependencies [9cd1a46]
|
|
1757
|
+
- Updated dependencies [b5d2de0]
|
|
1758
|
+
- Updated dependencies [644f8ad]
|
|
1759
|
+
- Updated dependencies [70dbf51]
|
|
1760
|
+
- @mastra/core@0.9.3
|
|
1761
|
+
|
|
1762
|
+
## 0.3.3-alpha.1
|
|
1763
|
+
|
|
1764
|
+
### Patch Changes
|
|
1765
|
+
|
|
1766
|
+
- Updated dependencies [e450778]
|
|
1767
|
+
- Updated dependencies [8902157]
|
|
1768
|
+
- Updated dependencies [ca0dc88]
|
|
1769
|
+
- Updated dependencies [9cd1a46]
|
|
1770
|
+
- Updated dependencies [70dbf51]
|
|
1771
|
+
- @mastra/core@0.9.3-alpha.1
|
|
1772
|
+
|
|
1773
|
+
## 0.3.3-alpha.0
|
|
1774
|
+
|
|
1775
|
+
### Patch Changes
|
|
1776
|
+
|
|
1777
|
+
- Updated dependencies [526c570]
|
|
1778
|
+
- Updated dependencies [b5d2de0]
|
|
1779
|
+
- Updated dependencies [644f8ad]
|
|
1780
|
+
- @mastra/core@0.9.3-alpha.0
|
|
1781
|
+
|
|
1782
|
+
## 0.3.2
|
|
1783
|
+
|
|
1784
|
+
### Patch Changes
|
|
1785
|
+
|
|
1786
|
+
- 2cf3b8f: dependencies updates:
|
|
1787
|
+
- Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
|
|
1788
|
+
- 67e14dd: Allow for textpart message content to be embedded into vectors
|
|
1789
|
+
- 544767d: Improved token estimation in TokenLimiter from 96% accuracy back to 99%
|
|
1790
|
+
- 17826a9: Added a breaking change warning about deprecated working memory "use: 'text-stream'" which is being fully replaced by "use: 'tool-call'"
|
|
1791
|
+
- Updated dependencies [6052aa6]
|
|
1792
|
+
- Updated dependencies [967b41c]
|
|
1793
|
+
- Updated dependencies [3d2fb5c]
|
|
1794
|
+
- Updated dependencies [26738f4]
|
|
1795
|
+
- Updated dependencies [4155f47]
|
|
1796
|
+
- Updated dependencies [7eeb2bc]
|
|
1797
|
+
- Updated dependencies [b804723]
|
|
1798
|
+
- Updated dependencies [8607972]
|
|
1799
|
+
- Updated dependencies [ccef9f9]
|
|
1800
|
+
- Updated dependencies [0097d50]
|
|
1801
|
+
- Updated dependencies [7eeb2bc]
|
|
1802
|
+
- Updated dependencies [17826a9]
|
|
1803
|
+
- Updated dependencies [7d8b7c7]
|
|
1804
|
+
- Updated dependencies [fba031f]
|
|
1805
|
+
- Updated dependencies [3a5f1e1]
|
|
1806
|
+
- Updated dependencies [51e6923]
|
|
1807
|
+
- Updated dependencies [8398d89]
|
|
1808
|
+
- @mastra/core@0.9.2
|
|
1809
|
+
|
|
1810
|
+
## 0.3.2-alpha.7
|
|
1811
|
+
|
|
1812
|
+
### Patch Changes
|
|
1813
|
+
|
|
1814
|
+
- 67e14dd: Allow for textpart message content to be embedded into vectors
|
|
1815
|
+
- Updated dependencies [6052aa6]
|
|
1816
|
+
- Updated dependencies [7d8b7c7]
|
|
1817
|
+
- Updated dependencies [3a5f1e1]
|
|
1818
|
+
- Updated dependencies [8398d89]
|
|
1819
|
+
- @mastra/core@0.9.2-alpha.6
|
|
1820
|
+
|
|
1821
|
+
## 0.3.2-alpha.6
|
|
1822
|
+
|
|
1823
|
+
### Patch Changes
|
|
1824
|
+
|
|
1825
|
+
- 544767d: Improved token estimation in TokenLimiter from 96% accuracy back to 99%
|
|
1826
|
+
|
|
1827
|
+
## 0.3.2-alpha.5
|
|
1828
|
+
|
|
1829
|
+
### Patch Changes
|
|
1830
|
+
|
|
1831
|
+
- Updated dependencies [3d2fb5c]
|
|
1832
|
+
- Updated dependencies [7eeb2bc]
|
|
1833
|
+
- Updated dependencies [8607972]
|
|
1834
|
+
- Updated dependencies [7eeb2bc]
|
|
1835
|
+
- Updated dependencies [fba031f]
|
|
1836
|
+
- @mastra/core@0.9.2-alpha.5
|
|
1837
|
+
|
|
1838
|
+
## 0.3.2-alpha.4
|
|
1839
|
+
|
|
1840
|
+
### Patch Changes
|
|
1841
|
+
|
|
1842
|
+
- Updated dependencies [ccef9f9]
|
|
1843
|
+
- Updated dependencies [51e6923]
|
|
1844
|
+
- @mastra/core@0.9.2-alpha.4
|
|
1845
|
+
|
|
1846
|
+
## 0.3.2-alpha.3
|
|
1847
|
+
|
|
1848
|
+
### Patch Changes
|
|
1849
|
+
|
|
1850
|
+
- 17826a9: Added a breaking change warning about deprecated working memory "use: 'text-stream'" which is being fully replaced by "use: 'tool-call'"
|
|
1851
|
+
- Updated dependencies [967b41c]
|
|
1852
|
+
- Updated dependencies [4155f47]
|
|
1853
|
+
- Updated dependencies [17826a9]
|
|
1854
|
+
- @mastra/core@0.9.2-alpha.3
|
|
1855
|
+
|
|
1856
|
+
## 0.3.2-alpha.2
|
|
1857
|
+
|
|
1858
|
+
### Patch Changes
|
|
1859
|
+
|
|
1860
|
+
- Updated dependencies [26738f4]
|
|
1861
|
+
- @mastra/core@0.9.2-alpha.2
|
|
1862
|
+
|
|
1863
|
+
## 0.3.2-alpha.1
|
|
1864
|
+
|
|
1865
|
+
### Patch Changes
|
|
1866
|
+
|
|
1867
|
+
- Updated dependencies [b804723]
|
|
1868
|
+
- @mastra/core@0.9.2-alpha.1
|
|
1869
|
+
|
|
1870
|
+
## 0.3.2-alpha.0
|
|
1871
|
+
|
|
1872
|
+
### Patch Changes
|
|
1873
|
+
|
|
1874
|
+
- Updated dependencies [0097d50]
|
|
1875
|
+
- @mastra/core@0.9.2-alpha.0
|
|
1876
|
+
|
|
1877
|
+
## 0.3.1
|
|
1878
|
+
|
|
1879
|
+
### Patch Changes
|
|
1880
|
+
|
|
1881
|
+
- 20275d4: Adding warnings for current implicit Memory default options as they will be changing soon in a breaking change. Also added memory to create-mastra w/ new defaults so new projects don't see these warnings
|
|
1882
|
+
- Updated dependencies [405b63d]
|
|
1883
|
+
- Updated dependencies [81fb7f6]
|
|
1884
|
+
- Updated dependencies [20275d4]
|
|
1885
|
+
- Updated dependencies [7d1892c]
|
|
1886
|
+
- Updated dependencies [a90a082]
|
|
1887
|
+
- Updated dependencies [2d17c73]
|
|
1888
|
+
- Updated dependencies [61e92f5]
|
|
1889
|
+
- Updated dependencies [35955b0]
|
|
1890
|
+
- Updated dependencies [6262bd5]
|
|
1891
|
+
- Updated dependencies [c1409ef]
|
|
1892
|
+
- Updated dependencies [3e7b69d]
|
|
1893
|
+
- Updated dependencies [e4943b8]
|
|
1894
|
+
- Updated dependencies [11d4485]
|
|
1895
|
+
- Updated dependencies [479f490]
|
|
1896
|
+
- Updated dependencies [c23a81c]
|
|
1897
|
+
- Updated dependencies [2d4001d]
|
|
1898
|
+
- Updated dependencies [c71013a]
|
|
1899
|
+
- Updated dependencies [1d3b1cd]
|
|
1900
|
+
- @mastra/core@0.9.1
|
|
1901
|
+
|
|
1902
|
+
## 0.3.1-alpha.8
|
|
1903
|
+
|
|
1904
|
+
### Patch Changes
|
|
1905
|
+
|
|
1906
|
+
- Updated dependencies [2d17c73]
|
|
1907
|
+
- @mastra/core@0.9.1-alpha.8
|
|
1908
|
+
|
|
1909
|
+
## 0.3.1-alpha.7
|
|
1910
|
+
|
|
1911
|
+
### Patch Changes
|
|
1912
|
+
|
|
1913
|
+
- Updated dependencies [1d3b1cd]
|
|
1914
|
+
- @mastra/core@0.9.1-alpha.7
|
|
1915
|
+
|
|
1916
|
+
## 0.3.1-alpha.6
|
|
1917
|
+
|
|
1918
|
+
### Patch Changes
|
|
1919
|
+
|
|
1920
|
+
- Updated dependencies [c23a81c]
|
|
1921
|
+
- @mastra/core@0.9.1-alpha.6
|
|
1922
|
+
|
|
1923
|
+
## 0.3.1-alpha.5
|
|
1924
|
+
|
|
1925
|
+
### Patch Changes
|
|
1926
|
+
|
|
1927
|
+
- Updated dependencies [3e7b69d]
|
|
1928
|
+
- @mastra/core@0.9.1-alpha.5
|
|
1929
|
+
|
|
1930
|
+
## 0.3.1-alpha.4
|
|
1931
|
+
|
|
1932
|
+
### Patch Changes
|
|
1933
|
+
|
|
1934
|
+
- Updated dependencies [e4943b8]
|
|
1935
|
+
- Updated dependencies [479f490]
|
|
1936
|
+
- @mastra/core@0.9.1-alpha.4
|
|
1937
|
+
|
|
1938
|
+
## 0.3.1-alpha.3
|
|
1939
|
+
|
|
1940
|
+
### Patch Changes
|
|
1941
|
+
|
|
1942
|
+
- Updated dependencies [6262bd5]
|
|
1943
|
+
- @mastra/core@0.9.1-alpha.3
|
|
1944
|
+
|
|
1945
|
+
## 0.3.1-alpha.2
|
|
1946
|
+
|
|
1947
|
+
### Patch Changes
|
|
1948
|
+
|
|
1949
|
+
- Updated dependencies [405b63d]
|
|
1950
|
+
- Updated dependencies [61e92f5]
|
|
1951
|
+
- Updated dependencies [c71013a]
|
|
1952
|
+
- @mastra/core@0.9.1-alpha.2
|
|
1953
|
+
|
|
1954
|
+
## 0.3.1-alpha.1
|
|
1955
|
+
|
|
1956
|
+
### Patch Changes
|
|
1957
|
+
|
|
1958
|
+
- 20275d4: Adding warnings for current implicit Memory default options as they will be changing soon in a breaking change. Also added memory to create-mastra w/ new defaults so new projects don't see these warnings
|
|
1959
|
+
- Updated dependencies [20275d4]
|
|
1960
|
+
- Updated dependencies [7d1892c]
|
|
1961
|
+
- Updated dependencies [a90a082]
|
|
1962
|
+
- Updated dependencies [35955b0]
|
|
1963
|
+
- Updated dependencies [c1409ef]
|
|
1964
|
+
- Updated dependencies [11d4485]
|
|
1965
|
+
- Updated dependencies [2d4001d]
|
|
1966
|
+
- @mastra/core@0.9.1-alpha.1
|
|
1967
|
+
|
|
1968
|
+
## 0.3.1-alpha.0
|
|
1969
|
+
|
|
1970
|
+
### Patch Changes
|
|
1971
|
+
|
|
1972
|
+
- Updated dependencies [81fb7f6]
|
|
1973
|
+
- @mastra/core@0.9.1-alpha.0
|
|
1974
|
+
|
|
1975
|
+
## 0.3.0
|
|
1976
|
+
|
|
1977
|
+
### Minor Changes
|
|
1978
|
+
|
|
1979
|
+
- fe3ae4d: Remove \_\_ functions in storage and move to storage proxy to make sure init is called
|
|
1980
|
+
|
|
1981
|
+
### Patch Changes
|
|
1982
|
+
|
|
1983
|
+
- 000a6d4: Fixed an issue where the TokenLimiter message processor was adding new messages into the remembered messages array
|
|
1984
|
+
- 71d9444: updated savemessage to not use mutation when hiding working memory
|
|
1985
|
+
- 5c6825c: [MASTRA-2782] removed tiktoken from memory chunktext
|
|
1986
|
+
- 6f92295: Fixed an issue where some user messages and llm messages would have the exact same createdAt date, leading to incorrect message ordering. Added a fix for new messages as well as any that were saved before the fix in the wrong order
|
|
1987
|
+
- Updated dependencies [000a6d4]
|
|
1988
|
+
- Updated dependencies [08bb78e]
|
|
1989
|
+
- Updated dependencies [ed2f549]
|
|
1990
|
+
- Updated dependencies [7e92011]
|
|
1991
|
+
- Updated dependencies [9ee4293]
|
|
1992
|
+
- Updated dependencies [03f3cd0]
|
|
1993
|
+
- Updated dependencies [c0f22b4]
|
|
1994
|
+
- Updated dependencies [71d9444]
|
|
1995
|
+
- Updated dependencies [157c741]
|
|
1996
|
+
- Updated dependencies [8a8a73b]
|
|
1997
|
+
- Updated dependencies [0a033fa]
|
|
1998
|
+
- Updated dependencies [fe3ae4d]
|
|
1999
|
+
- Updated dependencies [9c26508]
|
|
2000
|
+
- Updated dependencies [0f4eae3]
|
|
2001
|
+
- Updated dependencies [16a8648]
|
|
2002
|
+
- Updated dependencies [6f92295]
|
|
2003
|
+
- @mastra/core@0.9.0
|
|
2004
|
+
|
|
2005
|
+
## 0.3.0-alpha.9
|
|
2006
|
+
|
|
2007
|
+
### Patch Changes
|
|
2008
|
+
|
|
2009
|
+
- 000a6d4: Fixed an issue where the TokenLimiter message processor was adding new messages into the remembered messages array
|
|
2010
|
+
- Updated dependencies [000a6d4]
|
|
2011
|
+
- Updated dependencies [ed2f549]
|
|
2012
|
+
- Updated dependencies [c0f22b4]
|
|
2013
|
+
- Updated dependencies [0a033fa]
|
|
2014
|
+
- Updated dependencies [9c26508]
|
|
2015
|
+
- Updated dependencies [0f4eae3]
|
|
2016
|
+
- Updated dependencies [16a8648]
|
|
2017
|
+
- @mastra/core@0.9.0-alpha.8
|
|
2018
|
+
|
|
2019
|
+
## 0.3.0-alpha.8
|
|
2020
|
+
|
|
2021
|
+
### Patch Changes
|
|
2022
|
+
|
|
2023
|
+
- 71d9444: updated savemessage to not use mutation when hiding working memory
|
|
2024
|
+
- Updated dependencies [71d9444]
|
|
2025
|
+
- @mastra/core@0.9.0-alpha.7
|
|
2026
|
+
|
|
2027
|
+
## 0.3.0-alpha.7
|
|
2028
|
+
|
|
2029
|
+
### Patch Changes
|
|
2030
|
+
|
|
2031
|
+
- Updated dependencies [157c741]
|
|
2032
|
+
- @mastra/core@0.9.0-alpha.6
|
|
2033
|
+
|
|
2034
|
+
## 0.3.0-alpha.6
|
|
2035
|
+
|
|
2036
|
+
### Patch Changes
|
|
2037
|
+
|
|
2038
|
+
- Updated dependencies [08bb78e]
|
|
2039
|
+
- @mastra/core@0.9.0-alpha.5
|
|
2040
|
+
|
|
2041
|
+
## 0.3.0-alpha.5
|
|
2042
|
+
|
|
2043
|
+
### Patch Changes
|
|
2044
|
+
|
|
2045
|
+
- Updated dependencies [7e92011]
|
|
2046
|
+
- @mastra/core@0.9.0-alpha.4
|
|
2047
|
+
|
|
2048
|
+
## 0.3.0-alpha.4
|
|
2049
|
+
|
|
2050
|
+
### Minor Changes
|
|
2051
|
+
|
|
2052
|
+
- fe3ae4d: Remove \_\_ functions in storage and move to storage proxy to make sure init is called
|
|
2053
|
+
|
|
2054
|
+
### Patch Changes
|
|
2055
|
+
|
|
2056
|
+
- Updated dependencies [fe3ae4d]
|
|
2057
|
+
- @mastra/core@0.9.0-alpha.3
|
|
2058
|
+
|
|
2059
|
+
## 0.2.11-alpha.3
|
|
2060
|
+
|
|
2061
|
+
### Patch Changes
|
|
2062
|
+
|
|
2063
|
+
- Updated dependencies [9ee4293]
|
|
2064
|
+
- @mastra/core@0.8.4-alpha.2
|
|
2065
|
+
|
|
2066
|
+
## 0.2.11-alpha.2
|
|
2067
|
+
|
|
2068
|
+
### Patch Changes
|
|
2069
|
+
|
|
2070
|
+
- 5c6825c: [MASTRA-2782] removed tiktoken from memory chunktext
|
|
2071
|
+
|
|
2072
|
+
## 0.2.11-alpha.1
|
|
2073
|
+
|
|
2074
|
+
### Patch Changes
|
|
2075
|
+
|
|
2076
|
+
- 6f92295: Fixed an issue where some user messages and llm messages would have the exact same createdAt date, leading to incorrect message ordering. Added a fix for new messages as well as any that were saved before the fix in the wrong order
|
|
2077
|
+
- Updated dependencies [8a8a73b]
|
|
2078
|
+
- Updated dependencies [6f92295]
|
|
2079
|
+
- @mastra/core@0.8.4-alpha.1
|
|
2080
|
+
|
|
2081
|
+
## 0.2.11-alpha.0
|
|
2082
|
+
|
|
2083
|
+
### Patch Changes
|
|
2084
|
+
|
|
2085
|
+
- Updated dependencies [03f3cd0]
|
|
2086
|
+
- @mastra/core@0.8.4-alpha.0
|
|
2087
|
+
|
|
2088
|
+
## 0.2.10
|
|
2089
|
+
|
|
2090
|
+
### Patch Changes
|
|
2091
|
+
|
|
2092
|
+
- f6f7345: Added missing createdAt field to UI messages in memory
|
|
2093
|
+
- 359b089: Allowed explicitly disabling vector/embedder in Memory by passing vector: false or options.semanticRecall: false
|
|
2094
|
+
- 37bb612: Add Elastic-2.0 licensing for packages
|
|
2095
|
+
- Updated dependencies [d72318f]
|
|
2096
|
+
- Updated dependencies [0bcc862]
|
|
2097
|
+
- Updated dependencies [10a8caf]
|
|
2098
|
+
- Updated dependencies [359b089]
|
|
2099
|
+
- Updated dependencies [32e7b71]
|
|
2100
|
+
- Updated dependencies [37bb612]
|
|
2101
|
+
- Updated dependencies [7f1b291]
|
|
2102
|
+
- @mastra/core@0.8.3
|
|
2103
|
+
|
|
2104
|
+
## 0.2.10-alpha.5
|
|
2105
|
+
|
|
2106
|
+
### Patch Changes
|
|
2107
|
+
|
|
2108
|
+
- Updated dependencies [d72318f]
|
|
2109
|
+
- @mastra/core@0.8.3-alpha.5
|
|
2110
|
+
|
|
2111
|
+
## 0.2.10-alpha.4
|
|
2112
|
+
|
|
2113
|
+
### Patch Changes
|
|
2114
|
+
|
|
2115
|
+
- Updated dependencies [7f1b291]
|
|
2116
|
+
- @mastra/core@0.8.3-alpha.4
|
|
2117
|
+
|
|
2118
|
+
## 0.2.10-alpha.3
|
|
2119
|
+
|
|
2120
|
+
### Patch Changes
|
|
2121
|
+
|
|
2122
|
+
- Updated dependencies [10a8caf]
|
|
2123
|
+
- @mastra/core@0.8.3-alpha.3
|
|
2124
|
+
|
|
2125
|
+
## 0.2.10-alpha.2
|
|
2126
|
+
|
|
2127
|
+
### Patch Changes
|
|
2128
|
+
|
|
2129
|
+
- Updated dependencies [0bcc862]
|
|
2130
|
+
- @mastra/core@0.8.3-alpha.2
|
|
2131
|
+
|
|
2132
|
+
## 0.2.10-alpha.1
|
|
2133
|
+
|
|
2134
|
+
### Patch Changes
|
|
2135
|
+
|
|
2136
|
+
- 37bb612: Add Elastic-2.0 licensing for packages
|
|
2137
|
+
- Updated dependencies [32e7b71]
|
|
2138
|
+
- Updated dependencies [37bb612]
|
|
2139
|
+
- @mastra/core@0.8.3-alpha.1
|
|
2140
|
+
|
|
2141
|
+
## 0.2.10-alpha.0
|
|
2142
|
+
|
|
2143
|
+
### Patch Changes
|
|
2144
|
+
|
|
2145
|
+
- f6f7345: Added missing createdAt field to UI messages in memory
|
|
2146
|
+
- 359b089: Allowed explicitly disabling vector/embedder in Memory by passing vector: false or options.semanticRecall: false
|
|
2147
|
+
- Updated dependencies [359b089]
|
|
2148
|
+
- @mastra/core@0.8.3-alpha.0
|
|
2149
|
+
|
|
2150
|
+
## 0.2.9
|
|
2151
|
+
|
|
2152
|
+
### Patch Changes
|
|
2153
|
+
|
|
2154
|
+
- Updated dependencies [a06aadc]
|
|
2155
|
+
- @mastra/core@0.8.2
|
|
2156
|
+
|
|
2157
|
+
## 0.2.9-alpha.0
|
|
2158
|
+
|
|
2159
|
+
### Patch Changes
|
|
2160
|
+
|
|
2161
|
+
- Updated dependencies [a06aadc]
|
|
2162
|
+
- @mastra/core@0.8.2-alpha.0
|
|
2163
|
+
|
|
2164
|
+
## 0.2.8
|
|
2165
|
+
|
|
2166
|
+
### Patch Changes
|
|
2167
|
+
|
|
2168
|
+
- Updated dependencies [99e2998]
|
|
2169
|
+
- Updated dependencies [8fdb414]
|
|
2170
|
+
- @mastra/core@0.8.1
|
|
2171
|
+
|
|
2172
|
+
## 0.2.8-alpha.0
|
|
2173
|
+
|
|
2174
|
+
### Patch Changes
|
|
2175
|
+
|
|
2176
|
+
- Updated dependencies [99e2998]
|
|
2177
|
+
- Updated dependencies [8fdb414]
|
|
2178
|
+
- @mastra/core@0.8.1-alpha.0
|
|
2179
|
+
|
|
2180
|
+
## 0.2.7
|
|
2181
|
+
|
|
2182
|
+
### Patch Changes
|
|
2183
|
+
|
|
2184
|
+
- 5ae0180: Removed prefixed doc references
|
|
2185
|
+
- 93875ed: Improved the performance of Memory semantic recall by 2 to 3 times when using pg by making tweaks to @mastra/memory @mastra/core and @mastra/pg
|
|
2186
|
+
- 3e72f94: Updated the internal working memory system to use MD for formatting instead of nested XML - this is more token efficient and makes it more obvious that it's unstructured text
|
|
2187
|
+
- a0967a0: Added new "Memory Processor" feature to @mastra/core and @mastra/memory, allowing devs to modify Mastra Memory before it's sent to the LLM
|
|
2188
|
+
- 7599d77: fix(deps): update ai sdk to ^4.2.2
|
|
2189
|
+
- 0118361: Add resourceId to memory metadata
|
|
2190
|
+
- Updated dependencies [56c31b7]
|
|
2191
|
+
- Updated dependencies [619c39d]
|
|
2192
|
+
- Updated dependencies [5ae0180]
|
|
2193
|
+
- Updated dependencies [fe56be0]
|
|
2194
|
+
- Updated dependencies [93875ed]
|
|
2195
|
+
- Updated dependencies [107bcfe]
|
|
2196
|
+
- Updated dependencies [9bfa12b]
|
|
2197
|
+
- Updated dependencies [515ebfb]
|
|
2198
|
+
- Updated dependencies [5b4e19f]
|
|
2199
|
+
- Updated dependencies [dbbbf80]
|
|
2200
|
+
- Updated dependencies [a0967a0]
|
|
2201
|
+
- Updated dependencies [fca3b21]
|
|
2202
|
+
- Updated dependencies [88fa727]
|
|
2203
|
+
- Updated dependencies [f37f535]
|
|
2204
|
+
- Updated dependencies [a3f0e90]
|
|
2205
|
+
- Updated dependencies [4d67826]
|
|
2206
|
+
- Updated dependencies [6330967]
|
|
2207
|
+
- Updated dependencies [8393832]
|
|
2208
|
+
- Updated dependencies [6330967]
|
|
2209
|
+
- Updated dependencies [99d43b9]
|
|
2210
|
+
- Updated dependencies [d7e08e8]
|
|
2211
|
+
- Updated dependencies [febc8a6]
|
|
2212
|
+
- Updated dependencies [7599d77]
|
|
2213
|
+
- Updated dependencies [0118361]
|
|
2214
|
+
- Updated dependencies [619c39d]
|
|
2215
|
+
- Updated dependencies [cafae83]
|
|
2216
|
+
- Updated dependencies [8076ecf]
|
|
2217
|
+
- Updated dependencies [8df4a77]
|
|
2218
|
+
- Updated dependencies [304397c]
|
|
2219
|
+
- @mastra/core@0.8.0
|
|
2220
|
+
|
|
2221
|
+
## 0.2.7-alpha.8
|
|
2222
|
+
|
|
2223
|
+
### Patch Changes
|
|
2224
|
+
|
|
2225
|
+
- Updated dependencies [8df4a77]
|
|
2226
|
+
- @mastra/core@0.8.0-alpha.8
|
|
2227
|
+
|
|
2228
|
+
## 0.2.7-alpha.7
|
|
2229
|
+
|
|
2230
|
+
### Patch Changes
|
|
2231
|
+
|
|
2232
|
+
- Updated dependencies [febc8a6]
|
|
2233
|
+
- @mastra/core@0.8.0-alpha.7
|
|
2234
|
+
|
|
2235
|
+
## 0.2.7-alpha.6
|
|
2236
|
+
|
|
2237
|
+
### Patch Changes
|
|
2238
|
+
|
|
2239
|
+
- Updated dependencies [a3f0e90]
|
|
2240
|
+
- @mastra/core@0.8.0-alpha.6
|
|
2241
|
+
|
|
2242
|
+
## 0.2.7-alpha.5
|
|
2243
|
+
|
|
2244
|
+
### Patch Changes
|
|
2245
|
+
|
|
2246
|
+
- 93875ed: Improved the performance of Memory semantic recall by 2 to 3 times when using pg by making tweaks to @mastra/memory @mastra/core and @mastra/pg
|
|
2247
|
+
- Updated dependencies [93875ed]
|
|
2248
|
+
- @mastra/core@0.8.0-alpha.5
|
|
2249
|
+
|
|
2250
|
+
## 0.2.7-alpha.4
|
|
2251
|
+
|
|
2252
|
+
### Patch Changes
|
|
2253
|
+
|
|
2254
|
+
- Updated dependencies [d7e08e8]
|
|
2255
|
+
- @mastra/core@0.8.0-alpha.4
|
|
2256
|
+
- @mastra/rag@0.1.15-alpha.4
|
|
2257
|
+
|
|
2258
|
+
## 0.2.7-alpha.3
|
|
2259
|
+
|
|
2260
|
+
### Patch Changes
|
|
2261
|
+
|
|
2262
|
+
- 5ae0180: Removed prefixed doc references
|
|
2263
|
+
- 3e72f94: Updated the internal working memory system to use MD for formatting instead of nested XML - this is more token efficient and makes it more obvious that it's unstructured text
|
|
2264
|
+
- Updated dependencies [5ae0180]
|
|
2265
|
+
- Updated dependencies [9bfa12b]
|
|
2266
|
+
- Updated dependencies [515ebfb]
|
|
2267
|
+
- Updated dependencies [88fa727]
|
|
2268
|
+
- Updated dependencies [f37f535]
|
|
2269
|
+
- Updated dependencies [4d67826]
|
|
2270
|
+
- Updated dependencies [6330967]
|
|
2271
|
+
- Updated dependencies [8393832]
|
|
2272
|
+
- Updated dependencies [6330967]
|
|
2273
|
+
- @mastra/core@0.8.0-alpha.3
|
|
2274
|
+
- @mastra/rag@0.1.15-alpha.3
|
|
2275
|
+
|
|
2276
|
+
## 0.2.7-alpha.2
|
|
2277
|
+
|
|
2278
|
+
### Patch Changes
|
|
2279
|
+
|
|
2280
|
+
- Updated dependencies [56c31b7]
|
|
2281
|
+
- Updated dependencies [dbbbf80]
|
|
2282
|
+
- Updated dependencies [99d43b9]
|
|
2283
|
+
- @mastra/core@0.8.0-alpha.2
|
|
2284
|
+
- @mastra/rag@0.1.15-alpha.2
|
|
2285
|
+
|
|
2286
|
+
## 0.2.7-alpha.1
|
|
2287
|
+
|
|
2288
|
+
### Patch Changes
|
|
2289
|
+
|
|
2290
|
+
- a0967a0: Added new "Memory Processor" feature to @mastra/core and @mastra/memory, allowing devs to modify Mastra Memory before it's sent to the LLM
|
|
2291
|
+
- 0118361: Add resourceId to memory metadata
|
|
2292
|
+
- Updated dependencies [619c39d]
|
|
2293
|
+
- Updated dependencies [fe56be0]
|
|
2294
|
+
- Updated dependencies [a0967a0]
|
|
2295
|
+
- Updated dependencies [e47f529]
|
|
2296
|
+
- Updated dependencies [fca3b21]
|
|
2297
|
+
- Updated dependencies [0118361]
|
|
2298
|
+
- Updated dependencies [619c39d]
|
|
2299
|
+
- @mastra/core@0.8.0-alpha.1
|
|
2300
|
+
- @mastra/rag@0.1.15-alpha.1
|
|
2301
|
+
|
|
2302
|
+
## 0.2.7-alpha.0
|
|
2303
|
+
|
|
2304
|
+
### Patch Changes
|
|
2305
|
+
|
|
2306
|
+
- 7599d77: fix(deps): update ai sdk to ^4.2.2
|
|
2307
|
+
- Updated dependencies [107bcfe]
|
|
2308
|
+
- Updated dependencies [5b4e19f]
|
|
2309
|
+
- Updated dependencies [7599d77]
|
|
2310
|
+
- Updated dependencies [cafae83]
|
|
2311
|
+
- Updated dependencies [8076ecf]
|
|
2312
|
+
- Updated dependencies [304397c]
|
|
2313
|
+
- @mastra/core@0.7.1-alpha.0
|
|
2314
|
+
- @mastra/rag@0.1.15-alpha.0
|
|
2315
|
+
|
|
2316
|
+
## 0.2.6
|
|
2317
|
+
|
|
2318
|
+
### Patch Changes
|
|
2319
|
+
|
|
2320
|
+
- 05095e9: Fixed an issue where very long messages would cause Memory semantic recall to throw errors
|
|
2321
|
+
- 394dfad: Removed working memory tool calls from thread history after the working memory has been updated. This is to prevent updates from polluting the context history and confusing agents. They should only see the most recent copy of working memory.
|
|
2322
|
+
Also made memory.getWorkingMemory() public since it's useful for testing, debugging, and building UIs.
|
|
2323
|
+
- Updated dependencies [b4fbc59]
|
|
2324
|
+
- Updated dependencies [a838fde]
|
|
2325
|
+
- Updated dependencies [a8bd4cf]
|
|
2326
|
+
- Updated dependencies [7a3eeb0]
|
|
2327
|
+
- Updated dependencies [0b54522]
|
|
2328
|
+
- Updated dependencies [b3b34f5]
|
|
2329
|
+
- Updated dependencies [1af25d5]
|
|
2330
|
+
- Updated dependencies [a4686e8]
|
|
2331
|
+
- Updated dependencies [6530ad1]
|
|
2332
|
+
- Updated dependencies [27439ad]
|
|
2333
|
+
- @mastra/core@0.7.0
|
|
2334
|
+
- @mastra/rag@0.1.14
|
|
2335
|
+
|
|
2336
|
+
## 0.2.6-alpha.4
|
|
2337
|
+
|
|
2338
|
+
### Patch Changes
|
|
2339
|
+
|
|
2340
|
+
- 394dfad: Removed working memory tool calls from thread history after the working memory has been updated. This is to prevent updates from polluting the context history and confusing agents. They should only see the most recent copy of working memory.
|
|
2341
|
+
Also made memory.getWorkingMemory() public since it's useful for testing, debugging, and building UIs.
|
|
2342
|
+
|
|
2343
|
+
## 0.2.6-alpha.3
|
|
2344
|
+
|
|
2345
|
+
### Patch Changes
|
|
2346
|
+
|
|
2347
|
+
- 05095e9: Fixed an issue where very long messages would cause Memory semantic recall to throw errors
|
|
2348
|
+
- Updated dependencies [b3b34f5]
|
|
2349
|
+
- Updated dependencies [a4686e8]
|
|
2350
|
+
- @mastra/core@0.7.0-alpha.3
|
|
2351
|
+
- @mastra/rag@0.1.14-alpha.3
|
|
2352
|
+
|
|
2353
|
+
## 0.2.6-alpha.2
|
|
2354
|
+
|
|
2355
|
+
### Patch Changes
|
|
2356
|
+
|
|
2357
|
+
- Updated dependencies [a838fde]
|
|
2358
|
+
- Updated dependencies [a8bd4cf]
|
|
2359
|
+
- Updated dependencies [7a3eeb0]
|
|
2360
|
+
- Updated dependencies [6530ad1]
|
|
2361
|
+
- @mastra/core@0.7.0-alpha.2
|
|
2362
|
+
|
|
2363
|
+
## 0.2.6-alpha.1
|
|
2364
|
+
|
|
2365
|
+
### Patch Changes
|
|
2366
|
+
|
|
2367
|
+
- Updated dependencies [0b54522]
|
|
2368
|
+
- Updated dependencies [1af25d5]
|
|
2369
|
+
- Updated dependencies [27439ad]
|
|
2370
|
+
- @mastra/core@0.7.0-alpha.1
|
|
2371
|
+
|
|
2372
|
+
## 0.2.6-alpha.0
|
|
2373
|
+
|
|
2374
|
+
### Patch Changes
|
|
2375
|
+
|
|
2376
|
+
- Updated dependencies [b4fbc59]
|
|
2377
|
+
- @mastra/core@0.6.5-alpha.0
|
|
2378
|
+
|
|
2379
|
+
## 0.2.5
|
|
2380
|
+
|
|
2381
|
+
### Patch Changes
|
|
2382
|
+
|
|
2383
|
+
- Updated dependencies [6794797]
|
|
2384
|
+
- Updated dependencies [fb68a80]
|
|
2385
|
+
- Updated dependencies [b56a681]
|
|
2386
|
+
- Updated dependencies [248cb07]
|
|
2387
|
+
- @mastra/core@0.6.4
|
|
2388
|
+
|
|
2389
|
+
## 0.2.5-alpha.1
|
|
2390
|
+
|
|
2391
|
+
### Patch Changes
|
|
2392
|
+
|
|
2393
|
+
- Updated dependencies [6794797]
|
|
2394
|
+
- @mastra/core@0.6.4-alpha.1
|
|
2395
|
+
|
|
2396
|
+
## 0.2.5-alpha.0
|
|
2397
|
+
|
|
2398
|
+
### Patch Changes
|
|
2399
|
+
|
|
2400
|
+
- Updated dependencies [fb68a80]
|
|
2401
|
+
- Updated dependencies [b56a681]
|
|
2402
|
+
- Updated dependencies [248cb07]
|
|
2403
|
+
- @mastra/core@0.6.4-alpha.0
|
|
2404
|
+
|
|
2405
|
+
## 0.2.4
|
|
2406
|
+
|
|
2407
|
+
### Patch Changes
|
|
2408
|
+
|
|
2409
|
+
- 404640e: AgentNetwork changeset
|
|
2410
|
+
- Updated dependencies [404640e]
|
|
2411
|
+
- Updated dependencies [3bce733]
|
|
2412
|
+
- @mastra/core@0.6.3
|
|
2413
|
+
|
|
2414
|
+
## 0.2.4-alpha.1
|
|
2415
|
+
|
|
2416
|
+
### Patch Changes
|
|
2417
|
+
|
|
2418
|
+
- Updated dependencies [3bce733]
|
|
2419
|
+
- @mastra/core@0.6.3-alpha.1
|
|
2420
|
+
|
|
2421
|
+
## 0.2.4-alpha.0
|
|
2422
|
+
|
|
2423
|
+
### Patch Changes
|
|
2424
|
+
|
|
2425
|
+
- 404640e: AgentNetwork changeset
|
|
2426
|
+
- Updated dependencies [404640e]
|
|
2427
|
+
- @mastra/core@0.6.3-alpha.0
|
|
2428
|
+
|
|
2429
|
+
## 0.2.3
|
|
2430
|
+
|
|
2431
|
+
### Patch Changes
|
|
2432
|
+
|
|
2433
|
+
- Updated dependencies [beaf1c2]
|
|
2434
|
+
- Updated dependencies [3084e13]
|
|
2435
|
+
- @mastra/core@0.6.2
|
|
2436
|
+
|
|
2437
|
+
## 0.2.3-alpha.0
|
|
2438
|
+
|
|
2439
|
+
### Patch Changes
|
|
2440
|
+
|
|
2441
|
+
- Updated dependencies [beaf1c2]
|
|
2442
|
+
- Updated dependencies [3084e13]
|
|
2443
|
+
- @mastra/core@0.6.2-alpha.0
|
|
2444
|
+
|
|
2445
|
+
## 0.2.2
|
|
2446
|
+
|
|
2447
|
+
### Patch Changes
|
|
2448
|
+
|
|
2449
|
+
- Updated dependencies [fc2f89c]
|
|
2450
|
+
- Updated dependencies [dfbb131]
|
|
2451
|
+
- Updated dependencies [f4854ee]
|
|
2452
|
+
- Updated dependencies [afaf73f]
|
|
2453
|
+
- Updated dependencies [0850b4c]
|
|
2454
|
+
- Updated dependencies [7bcfaee]
|
|
2455
|
+
- Updated dependencies [44631b1]
|
|
2456
|
+
- Updated dependencies [9116d70]
|
|
2457
|
+
- Updated dependencies [6e559a0]
|
|
2458
|
+
- Updated dependencies [5f43505]
|
|
2459
|
+
- @mastra/core@0.6.1
|
|
2460
|
+
|
|
2461
|
+
## 0.2.2-alpha.2
|
|
2462
|
+
|
|
2463
|
+
### Patch Changes
|
|
2464
|
+
|
|
2465
|
+
- Updated dependencies [fc2f89c]
|
|
2466
|
+
- Updated dependencies [dfbb131]
|
|
2467
|
+
- Updated dependencies [0850b4c]
|
|
2468
|
+
- Updated dependencies [9116d70]
|
|
2469
|
+
- @mastra/core@0.6.1-alpha.2
|
|
2470
|
+
|
|
2471
|
+
## 0.2.2-alpha.1
|
|
2472
|
+
|
|
2473
|
+
### Patch Changes
|
|
2474
|
+
|
|
2475
|
+
- Updated dependencies [f4854ee]
|
|
2476
|
+
- Updated dependencies [afaf73f]
|
|
2477
|
+
- Updated dependencies [44631b1]
|
|
2478
|
+
- Updated dependencies [6e559a0]
|
|
2479
|
+
- Updated dependencies [5f43505]
|
|
2480
|
+
- @mastra/core@0.6.1-alpha.1
|
|
2481
|
+
|
|
2482
|
+
## 0.2.2-alpha.0
|
|
2483
|
+
|
|
2484
|
+
### Patch Changes
|
|
2485
|
+
|
|
2486
|
+
- Updated dependencies [7bcfaee]
|
|
2487
|
+
- @mastra/core@0.6.1-alpha.0
|
|
2488
|
+
|
|
2489
|
+
## 0.2.1
|
|
2490
|
+
|
|
2491
|
+
### Patch Changes
|
|
2492
|
+
|
|
2493
|
+
- 3729dbd: Fixed a bug where useChat with client side tool calling and Memory would not work. Added docs for using Memory with useChat()
|
|
2494
|
+
- Updated dependencies [16b98d9]
|
|
2495
|
+
- Updated dependencies [1c8cda4]
|
|
2496
|
+
- Updated dependencies [95b4144]
|
|
2497
|
+
- Updated dependencies [3729dbd]
|
|
2498
|
+
- Updated dependencies [c2144f4]
|
|
2499
|
+
- @mastra/core@0.6.0
|
|
2500
|
+
|
|
2501
|
+
## 0.2.1-alpha.1
|
|
2502
|
+
|
|
2503
|
+
### Patch Changes
|
|
2504
|
+
|
|
2505
|
+
- Updated dependencies [16b98d9]
|
|
2506
|
+
- Updated dependencies [1c8cda4]
|
|
2507
|
+
- Updated dependencies [95b4144]
|
|
2508
|
+
- Updated dependencies [c2144f4]
|
|
2509
|
+
- @mastra/core@0.6.0-alpha.1
|
|
2510
|
+
|
|
2511
|
+
## 0.2.1-alpha.0
|
|
2512
|
+
|
|
2513
|
+
### Patch Changes
|
|
2514
|
+
|
|
2515
|
+
- 3729dbd: Fixed a bug where useChat with client side tool calling and Memory would not work. Added docs for using Memory with useChat()
|
|
2516
|
+
- Updated dependencies [3729dbd]
|
|
2517
|
+
- @mastra/core@0.5.1-alpha.0
|
|
2518
|
+
|
|
2519
|
+
## 0.2.0
|
|
2520
|
+
|
|
2521
|
+
### Minor Changes
|
|
2522
|
+
|
|
2523
|
+
- 59df7b6: Added a new option to use tool-calls for saving working memory: new Memory({ workingMemory: { enabled: true, use: "tool-call" } }). This is to support response methods like toDataStream where masking working memory chunks would be more resource intensive and complex.
|
|
2524
|
+
To support this `memory` is now passed into tool execute args.
|
|
2525
|
+
|
|
2526
|
+
### Patch Changes
|
|
2527
|
+
|
|
2528
|
+
- c151ae6: Fixed an issue where models that don't support structured output would error when generating a thread title. Added an option to disable thread title llm generation `new Memory({ threads: { generateTitle: false }})`
|
|
2529
|
+
- f2301de: Added the ability to ensure the accessed thread in memory.query() is for the right resource id. ex memory.query({ threadId, resourceId }). If the resourceId doesn't own the thread it will throw an error.
|
|
2530
|
+
- fd4a1d7: Update cjs bundling to make sure files are split
|
|
2531
|
+
- Updated dependencies [a910463]
|
|
2532
|
+
- Updated dependencies [59df7b6]
|
|
2533
|
+
- Updated dependencies [22643eb]
|
|
2534
|
+
- Updated dependencies [6feb23f]
|
|
2535
|
+
- Updated dependencies [f2d6727]
|
|
2536
|
+
- Updated dependencies [7a7a547]
|
|
2537
|
+
- Updated dependencies [29f3a82]
|
|
2538
|
+
- Updated dependencies [3d0e290]
|
|
2539
|
+
- Updated dependencies [e9fbac5]
|
|
2540
|
+
- Updated dependencies [301e4ee]
|
|
2541
|
+
- Updated dependencies [ee667a2]
|
|
2542
|
+
- Updated dependencies [dfbe4e9]
|
|
2543
|
+
- Updated dependencies [dab255b]
|
|
2544
|
+
- Updated dependencies [1e8bcbc]
|
|
2545
|
+
- Updated dependencies [f6678e4]
|
|
2546
|
+
- Updated dependencies [9e81f35]
|
|
2547
|
+
- Updated dependencies [c93798b]
|
|
2548
|
+
- Updated dependencies [a85ab24]
|
|
2549
|
+
- Updated dependencies [dbd9f2d]
|
|
2550
|
+
- Updated dependencies [59df7b6]
|
|
2551
|
+
- Updated dependencies [caefaa2]
|
|
2552
|
+
- Updated dependencies [c151ae6]
|
|
2553
|
+
- Updated dependencies [52e0418]
|
|
2554
|
+
- Updated dependencies [d79aedf]
|
|
2555
|
+
- Updated dependencies [03236ec]
|
|
2556
|
+
- Updated dependencies [3764e71]
|
|
2557
|
+
- Updated dependencies [df982db]
|
|
2558
|
+
- Updated dependencies [a171b37]
|
|
2559
|
+
- Updated dependencies [506f1d5]
|
|
2560
|
+
- Updated dependencies [02ffb7b]
|
|
2561
|
+
- Updated dependencies [0461849]
|
|
2562
|
+
- Updated dependencies [2259379]
|
|
2563
|
+
- Updated dependencies [aeb5e36]
|
|
2564
|
+
- Updated dependencies [f2301de]
|
|
2565
|
+
- Updated dependencies [358f069]
|
|
2566
|
+
- Updated dependencies [fd4a1d7]
|
|
2567
|
+
- Updated dependencies [c139344]
|
|
2568
|
+
- @mastra/core@0.5.0
|
|
2569
|
+
|
|
2570
|
+
## 0.2.0-alpha.12
|
|
2571
|
+
|
|
2572
|
+
### Patch Changes
|
|
2573
|
+
|
|
2574
|
+
- Updated dependencies [a85ab24]
|
|
2575
|
+
- @mastra/core@0.5.0-alpha.12
|
|
2576
|
+
|
|
2577
|
+
## 0.2.0-alpha.11
|
|
2578
|
+
|
|
2579
|
+
### Patch Changes
|
|
2580
|
+
|
|
2581
|
+
- fd4a1d7: Update cjs bundling to make sure files are split
|
|
2582
|
+
- Updated dependencies [7a7a547]
|
|
2583
|
+
- Updated dependencies [c93798b]
|
|
2584
|
+
- Updated dependencies [dbd9f2d]
|
|
2585
|
+
- Updated dependencies [a171b37]
|
|
2586
|
+
- Updated dependencies [fd4a1d7]
|
|
2587
|
+
- @mastra/core@0.5.0-alpha.11
|
|
2588
|
+
|
|
2589
|
+
## 0.2.0-alpha.10
|
|
2590
|
+
|
|
2591
|
+
### Patch Changes
|
|
2592
|
+
|
|
2593
|
+
- Updated dependencies [a910463]
|
|
2594
|
+
- @mastra/core@0.5.0-alpha.10
|
|
2595
|
+
|
|
2596
|
+
## 0.2.0-alpha.9
|
|
2597
|
+
|
|
2598
|
+
### Patch Changes
|
|
2599
|
+
|
|
2600
|
+
- f2301de: Added the ability to ensure the accessed thread in memory.query() is for the right resource id. ex memory.query({ threadId, resourceId }). If the resourceId doesn't own the thread it will throw an error.
|
|
2601
|
+
- Updated dependencies [e9fbac5]
|
|
2602
|
+
- Updated dependencies [1e8bcbc]
|
|
2603
|
+
- Updated dependencies [aeb5e36]
|
|
2604
|
+
- Updated dependencies [f2301de]
|
|
2605
|
+
- @mastra/core@0.5.0-alpha.9
|
|
2606
|
+
|
|
2607
|
+
## 0.2.0-alpha.8
|
|
2608
|
+
|
|
2609
|
+
### Patch Changes
|
|
2610
|
+
|
|
2611
|
+
- Updated dependencies [506f1d5]
|
|
2612
|
+
- @mastra/core@0.5.0-alpha.8
|
|
2613
|
+
|
|
2614
|
+
## 0.2.0-alpha.7
|
|
2615
|
+
|
|
2616
|
+
### Patch Changes
|
|
2617
|
+
|
|
2618
|
+
- Updated dependencies [ee667a2]
|
|
2619
|
+
- @mastra/core@0.5.0-alpha.7
|
|
2620
|
+
|
|
2621
|
+
## 0.2.0-alpha.6
|
|
2622
|
+
|
|
2623
|
+
### Patch Changes
|
|
2624
|
+
|
|
2625
|
+
- Updated dependencies [f6678e4]
|
|
2626
|
+
- @mastra/core@0.5.0-alpha.6
|
|
2627
|
+
|
|
2628
|
+
## 0.2.0-alpha.5
|
|
2629
|
+
|
|
2630
|
+
### Patch Changes
|
|
2631
|
+
|
|
2632
|
+
- c151ae6: Fixed an issue where models that don't support structured output would error when generating a thread title. Added an option to disable thread title llm generation `new Memory({ threads: { generateTitle: false }})`
|
|
2633
|
+
- Updated dependencies [22643eb]
|
|
2634
|
+
- Updated dependencies [6feb23f]
|
|
2635
|
+
- Updated dependencies [f2d6727]
|
|
2636
|
+
- Updated dependencies [301e4ee]
|
|
2637
|
+
- Updated dependencies [dfbe4e9]
|
|
2638
|
+
- Updated dependencies [9e81f35]
|
|
2639
|
+
- Updated dependencies [caefaa2]
|
|
2640
|
+
- Updated dependencies [c151ae6]
|
|
2641
|
+
- Updated dependencies [52e0418]
|
|
2642
|
+
- Updated dependencies [03236ec]
|
|
2643
|
+
- Updated dependencies [3764e71]
|
|
2644
|
+
- Updated dependencies [df982db]
|
|
2645
|
+
- Updated dependencies [0461849]
|
|
2646
|
+
- Updated dependencies [2259379]
|
|
2647
|
+
- Updated dependencies [358f069]
|
|
2648
|
+
- @mastra/core@0.5.0-alpha.5
|
|
2649
|
+
|
|
2650
|
+
## 0.2.0-alpha.4
|
|
2651
|
+
|
|
2652
|
+
### Patch Changes
|
|
2653
|
+
|
|
2654
|
+
- Updated dependencies [d79aedf]
|
|
2655
|
+
- @mastra/core@0.5.0-alpha.4
|
|
2656
|
+
|
|
2657
|
+
## 0.2.0-alpha.3
|
|
2658
|
+
|
|
2659
|
+
### Patch Changes
|
|
2660
|
+
|
|
2661
|
+
- Updated dependencies [3d0e290]
|
|
2662
|
+
- @mastra/core@0.5.0-alpha.3
|
|
2663
|
+
|
|
2664
|
+
## 0.2.0-alpha.2
|
|
2665
|
+
|
|
2666
|
+
### Patch Changes
|
|
2667
|
+
|
|
2668
|
+
- Updated dependencies [02ffb7b]
|
|
2669
|
+
- @mastra/core@0.5.0-alpha.2
|
|
2670
|
+
|
|
2671
|
+
## 0.2.0-alpha.1
|
|
2672
|
+
|
|
2673
|
+
### Patch Changes
|
|
2674
|
+
|
|
2675
|
+
- Updated dependencies [dab255b]
|
|
2676
|
+
- @mastra/core@0.5.0-alpha.1
|
|
2677
|
+
|
|
2678
|
+
## 0.2.0-alpha.0
|
|
2679
|
+
|
|
2680
|
+
### Minor Changes
|
|
2681
|
+
|
|
2682
|
+
- 59df7b6: Added a new option to use tool-calls for saving working memory: new Memory({ workingMemory: { enabled: true, use: "tool-call" } }). This is to support response methods like toDataStream where masking working memory chunks would be more resource intensive and complex.
|
|
2683
|
+
To support this `memory` is now passed into tool execute args.
|
|
2684
|
+
|
|
2685
|
+
### Patch Changes
|
|
2686
|
+
|
|
2687
|
+
- Updated dependencies [59df7b6]
|
|
2688
|
+
- Updated dependencies [29f3a82]
|
|
2689
|
+
- Updated dependencies [59df7b6]
|
|
2690
|
+
- Updated dependencies [c139344]
|
|
2691
|
+
- @mastra/core@0.5.0-alpha.0
|
|
2692
|
+
|
|
2693
|
+
## 0.1.7
|
|
2694
|
+
|
|
2695
|
+
### Patch Changes
|
|
2696
|
+
|
|
2697
|
+
- Updated dependencies [1da20e7]
|
|
2698
|
+
- @mastra/core@0.4.4
|
|
2699
|
+
|
|
2700
|
+
## 0.1.7-alpha.0
|
|
2701
|
+
|
|
2702
|
+
### Patch Changes
|
|
2703
|
+
|
|
2704
|
+
- Updated dependencies [1da20e7]
|
|
2705
|
+
- @mastra/core@0.4.4-alpha.0
|
|
2706
|
+
|
|
2707
|
+
## 0.1.6
|
|
2708
|
+
|
|
2709
|
+
### Patch Changes
|
|
2710
|
+
|
|
2711
|
+
- 0fd78ac: Update vector store functions to use object params
|
|
2712
|
+
- bb4f447: Add support for commonjs
|
|
2713
|
+
- Updated dependencies [0d185b1]
|
|
2714
|
+
- Updated dependencies [ed55f1d]
|
|
2715
|
+
- Updated dependencies [06aa827]
|
|
2716
|
+
- Updated dependencies [0fd78ac]
|
|
2717
|
+
- Updated dependencies [2512a93]
|
|
2718
|
+
- Updated dependencies [e62de74]
|
|
2719
|
+
- Updated dependencies [0d25b75]
|
|
2720
|
+
- Updated dependencies [fd14a3f]
|
|
2721
|
+
- Updated dependencies [8d13b14]
|
|
2722
|
+
- Updated dependencies [3f369a2]
|
|
2723
|
+
- Updated dependencies [3ee4831]
|
|
2724
|
+
- Updated dependencies [4d4e1e1]
|
|
2725
|
+
- Updated dependencies [bb4f447]
|
|
2726
|
+
- Updated dependencies [108793c]
|
|
2727
|
+
- Updated dependencies [5f28f44]
|
|
2728
|
+
- Updated dependencies [dabecf4]
|
|
2729
|
+
- @mastra/core@0.4.3
|
|
2730
|
+
|
|
2731
|
+
## 0.1.6-alpha.4
|
|
2732
|
+
|
|
2733
|
+
### Patch Changes
|
|
2734
|
+
|
|
2735
|
+
- Updated dependencies [dabecf4]
|
|
2736
|
+
- @mastra/core@0.4.3-alpha.4
|
|
2737
|
+
|
|
2738
|
+
## 0.1.6-alpha.3
|
|
2739
|
+
|
|
2740
|
+
### Patch Changes
|
|
2741
|
+
|
|
2742
|
+
- 0fd78ac: Update vector store functions to use object params
|
|
2743
|
+
- bb4f447: Add support for commonjs
|
|
2744
|
+
- Updated dependencies [0fd78ac]
|
|
2745
|
+
- Updated dependencies [0d25b75]
|
|
2746
|
+
- Updated dependencies [fd14a3f]
|
|
2747
|
+
- Updated dependencies [3f369a2]
|
|
2748
|
+
- Updated dependencies [4d4e1e1]
|
|
2749
|
+
- Updated dependencies [bb4f447]
|
|
2750
|
+
- @mastra/core@0.4.3-alpha.3
|
|
2751
|
+
|
|
2752
|
+
## 0.1.6-alpha.2
|
|
2753
|
+
|
|
2754
|
+
### Patch Changes
|
|
2755
|
+
|
|
2756
|
+
- Updated dependencies [2512a93]
|
|
2757
|
+
- Updated dependencies [e62de74]
|
|
2758
|
+
- @mastra/core@0.4.3-alpha.2
|
|
2759
|
+
|
|
2760
|
+
## 0.1.6-alpha.1
|
|
2761
|
+
|
|
2762
|
+
### Patch Changes
|
|
2763
|
+
|
|
2764
|
+
- Updated dependencies [0d185b1]
|
|
2765
|
+
- Updated dependencies [ed55f1d]
|
|
2766
|
+
- Updated dependencies [8d13b14]
|
|
2767
|
+
- Updated dependencies [3ee4831]
|
|
2768
|
+
- Updated dependencies [108793c]
|
|
2769
|
+
- Updated dependencies [5f28f44]
|
|
2770
|
+
- @mastra/core@0.4.3-alpha.1
|
|
2771
|
+
|
|
2772
|
+
## 0.1.6-alpha.0
|
|
2773
|
+
|
|
2774
|
+
### Patch Changes
|
|
2775
|
+
|
|
2776
|
+
- Updated dependencies [06aa827]
|
|
2777
|
+
- @mastra/core@0.4.3-alpha.0
|
|
2778
|
+
|
|
2779
|
+
## 0.1.5
|
|
2780
|
+
|
|
2781
|
+
### Patch Changes
|
|
2782
|
+
|
|
2783
|
+
- Updated dependencies [7fceae1]
|
|
2784
|
+
- Updated dependencies [8d94c3e]
|
|
2785
|
+
- Updated dependencies [99dcdb5]
|
|
2786
|
+
- Updated dependencies [6cb63e0]
|
|
2787
|
+
- Updated dependencies [f626fbb]
|
|
2788
|
+
- Updated dependencies [e752340]
|
|
2789
|
+
- Updated dependencies [eb91535]
|
|
2790
|
+
- @mastra/core@0.4.2
|
|
2791
|
+
|
|
2792
|
+
## 0.1.5-alpha.2
|
|
2793
|
+
|
|
2794
|
+
### Patch Changes
|
|
2795
|
+
|
|
2796
|
+
- Updated dependencies [8d94c3e]
|
|
2797
|
+
- Updated dependencies [99dcdb5]
|
|
2798
|
+
- Updated dependencies [e752340]
|
|
2799
|
+
- Updated dependencies [eb91535]
|
|
2800
|
+
- @mastra/core@0.4.2-alpha.2
|
|
2801
|
+
|
|
2802
|
+
## 0.1.5-alpha.1
|
|
2803
|
+
|
|
2804
|
+
### Patch Changes
|
|
2805
|
+
|
|
2806
|
+
- Updated dependencies [6cb63e0]
|
|
2807
|
+
- @mastra/core@0.4.2-alpha.1
|
|
2808
|
+
|
|
2809
|
+
## 0.1.5-alpha.0
|
|
2810
|
+
|
|
2811
|
+
### Patch Changes
|
|
2812
|
+
|
|
2813
|
+
- Updated dependencies [7fceae1]
|
|
2814
|
+
- Updated dependencies [f626fbb]
|
|
2815
|
+
- @mastra/core@0.4.2-alpha.0
|
|
2816
|
+
|
|
2817
|
+
## 0.1.4
|
|
2818
|
+
|
|
2819
|
+
### Patch Changes
|
|
2820
|
+
|
|
2821
|
+
- ce44b9b: Fixed a bug where embeddings were being created for memory even when semanticRecall was turned off
|
|
2822
|
+
- Updated dependencies [ce44b9b]
|
|
2823
|
+
- Updated dependencies [967da43]
|
|
2824
|
+
- Updated dependencies [b405f08]
|
|
2825
|
+
- @mastra/core@0.4.1
|
|
2826
|
+
|
|
2827
|
+
## 0.1.3
|
|
2828
|
+
|
|
2829
|
+
### Patch Changes
|
|
2830
|
+
|
|
2831
|
+
- Updated dependencies [2fc618f]
|
|
2832
|
+
- Updated dependencies [fe0fd01]
|
|
2833
|
+
- @mastra/core@0.4.0
|
|
2834
|
+
|
|
2835
|
+
## 0.1.3-alpha.1
|
|
2836
|
+
|
|
2837
|
+
### Patch Changes
|
|
2838
|
+
|
|
2839
|
+
- Updated dependencies [fe0fd01]
|
|
2840
|
+
- @mastra/core@0.4.0-alpha.1
|
|
2841
|
+
|
|
2842
|
+
## 0.1.3-alpha.0
|
|
2843
|
+
|
|
2844
|
+
### Patch Changes
|
|
2845
|
+
|
|
2846
|
+
- Updated dependencies [2fc618f]
|
|
2847
|
+
- @mastra/core@0.4.0-alpha.0
|
|
2848
|
+
|
|
2849
|
+
## 0.1.2
|
|
2850
|
+
|
|
2851
|
+
### Patch Changes
|
|
2852
|
+
|
|
2853
|
+
- Updated dependencies [f205ede]
|
|
2854
|
+
- @mastra/core@0.3.0
|
|
2855
|
+
|
|
2856
|
+
## 0.1.1
|
|
2857
|
+
|
|
2858
|
+
### Patch Changes
|
|
2859
|
+
|
|
2860
|
+
- 91ef439: Add eslint and ran autofix
|
|
2861
|
+
- Updated dependencies [d59f1a8]
|
|
2862
|
+
- Updated dependencies [91ef439]
|
|
2863
|
+
- Updated dependencies [4a25be4]
|
|
2864
|
+
- Updated dependencies [bf2e88f]
|
|
2865
|
+
- Updated dependencies [2f0d707]
|
|
2866
|
+
- Updated dependencies [aac1667]
|
|
2867
|
+
- @mastra/core@0.2.1
|
|
2868
|
+
|
|
2869
|
+
## 0.1.1-alpha.0
|
|
2870
|
+
|
|
2871
|
+
### Patch Changes
|
|
2872
|
+
|
|
2873
|
+
- 91ef439: Add eslint and ran autofix
|
|
2874
|
+
- Updated dependencies [d59f1a8]
|
|
2875
|
+
- Updated dependencies [91ef439]
|
|
2876
|
+
- Updated dependencies [4a25be4]
|
|
2877
|
+
- Updated dependencies [bf2e88f]
|
|
2878
|
+
- Updated dependencies [2f0d707]
|
|
2879
|
+
- Updated dependencies [aac1667]
|
|
2880
|
+
- @mastra/core@0.2.1-alpha.0
|
|
2881
|
+
|
|
2882
|
+
## 0.1.0
|
|
2883
|
+
|
|
2884
|
+
### Minor Changes
|
|
2885
|
+
|
|
2886
|
+
- 5916f9d: Update deps from fixed to ^
|
|
2887
|
+
- 30322ce: Added new Memory API for managed agent memory via MastraStorage and MastraVector classes
|
|
2888
|
+
- d7d465a: Breaking change for Memory: embeddings: {} has been replaced with embedder: new OpenAIEmbedder() (or whichever embedder you want - check the docs)
|
|
2889
|
+
- cb290ee: Reworked the Memory public API to have more intuitive and simple property names
|
|
2890
|
+
- 8b416d9: Breaking changes
|
|
2891
|
+
- 27275c9: Added new short term "working" memory for agents. Also added a "maskStreamTags" helper to assist in hiding working memory xml blocks in streamed responses
|
|
2892
|
+
|
|
2893
|
+
### Patch Changes
|
|
2894
|
+
|
|
2895
|
+
- 8ae2bbc: Dane publishing
|
|
2896
|
+
- e9d1b47: Rename Memory options historySearch to semanticRecall, rename embeddingOptions to embedding
|
|
2897
|
+
- bdaf834: publish packages
|
|
2898
|
+
- 837a288: MAJOR Revamp of tools, workflows, syncs.
|
|
2899
|
+
- b97ca96: Tracing into default storage
|
|
2900
|
+
- 033eda6: More fixes for refactor
|
|
2901
|
+
- 0b74006: Workflow updates
|
|
2902
|
+
- 3220d26: Fix lastStep error in agent stream
|
|
2903
|
+
- 9c10484: update all packages
|
|
2904
|
+
- 70dabd9: Fix broken publish
|
|
2905
|
+
- c35aa18: bug: not all models support multiple system messages
|
|
2906
|
+
- 0bd142c: Fixes learned from docs
|
|
2907
|
+
- 9625602: Use mastra core splitted bundles in other packages
|
|
2908
|
+
- b898fad: Fix get context window in memory
|
|
2909
|
+
- 002d6d8: add memory to playground agent
|
|
2910
|
+
- cf6d825: Fixed a bug where 0 values in memory configs were falling back to default val. Removed a noisy log. Removed a deprecated option
|
|
2911
|
+
- 10870bc: Added a default vector db (libsql) and embedder (fastembed) so that new Memory() can be initialized with zero config
|
|
2912
|
+
- a870123: Added local embedder class that uses fastembed-js, a Typescript/NodeJS implementation of @Qdrant/fastembed
|
|
2913
|
+
- 7f5b1b2: @mastra/memory tsup bundling
|
|
2914
|
+
- ccf115c: Fixed incomplete tool call errors when including memory message history in context
|
|
2915
|
+
- b5393f1: New example: Dane and many fixes to make it work
|
|
2916
|
+
- 67637ba: Fixed storage bugs related to the new Memory API
|
|
2917
|
+
- 836f4e3: Fixed some issues with memory, added Upstash as a memory provider. Silenced dev logs in core
|
|
2918
|
+
- 01502b0: fix thread title containing unnecessary text and removed unnecessary logs in memory
|
|
2919
|
+
- 4f1d1a1: Enforce types ann cleanup package.json
|
|
2920
|
+
- ee4de15: Dane fixes
|
|
2921
|
+
- Updated dependencies [f537e33]
|
|
2922
|
+
- Updated dependencies [6f2c0f5]
|
|
2923
|
+
- Updated dependencies [e4d4ede]
|
|
2924
|
+
- Updated dependencies [0be7181]
|
|
2925
|
+
- Updated dependencies [dd6d87f]
|
|
2926
|
+
- Updated dependencies [9029796]
|
|
2927
|
+
- Updated dependencies [6fa4bd2]
|
|
2928
|
+
- Updated dependencies [f031a1f]
|
|
2929
|
+
- Updated dependencies [8151f44]
|
|
2930
|
+
- Updated dependencies [d7d465a]
|
|
2931
|
+
- Updated dependencies [4d4f6b6]
|
|
2932
|
+
- Updated dependencies [73d112c]
|
|
2933
|
+
- Updated dependencies [592e3cf]
|
|
2934
|
+
- Updated dependencies [9d1796d]
|
|
2935
|
+
- Updated dependencies [e897f1c]
|
|
2936
|
+
- Updated dependencies [4a54c82]
|
|
2937
|
+
- Updated dependencies [3967e69]
|
|
2938
|
+
- Updated dependencies [8ae2bbc]
|
|
2939
|
+
- Updated dependencies [e9d1b47]
|
|
2940
|
+
- Updated dependencies [016493a]
|
|
2941
|
+
- Updated dependencies [bc40916]
|
|
2942
|
+
- Updated dependencies [93a3719]
|
|
2943
|
+
- Updated dependencies [7d83b92]
|
|
2944
|
+
- Updated dependencies [9fb3039]
|
|
2945
|
+
- Updated dependencies [d5e12de]
|
|
2946
|
+
- Updated dependencies [e1dd94a]
|
|
2947
|
+
- Updated dependencies [07c069d]
|
|
2948
|
+
- Updated dependencies [5cdfb88]
|
|
2949
|
+
- Updated dependencies [837a288]
|
|
2950
|
+
- Updated dependencies [685108a]
|
|
2951
|
+
- Updated dependencies [c8ff2f5]
|
|
2952
|
+
- Updated dependencies [5fdc87c]
|
|
2953
|
+
- Updated dependencies [ae7bf94]
|
|
2954
|
+
- Updated dependencies [8e7814f]
|
|
2955
|
+
- Updated dependencies [66a03ec]
|
|
2956
|
+
- Updated dependencies [7d87a15]
|
|
2957
|
+
- Updated dependencies [b97ca96]
|
|
2958
|
+
- Updated dependencies [23dcb23]
|
|
2959
|
+
- Updated dependencies [033eda6]
|
|
2960
|
+
- Updated dependencies [8105fae]
|
|
2961
|
+
- Updated dependencies [e097800]
|
|
2962
|
+
- Updated dependencies [1944807]
|
|
2963
|
+
- Updated dependencies [30322ce]
|
|
2964
|
+
- Updated dependencies [1874f40]
|
|
2965
|
+
- Updated dependencies [685108a]
|
|
2966
|
+
- Updated dependencies [f7d1131]
|
|
2967
|
+
- Updated dependencies [79acad0]
|
|
2968
|
+
- Updated dependencies [7a19083]
|
|
2969
|
+
- Updated dependencies [382f4dc]
|
|
2970
|
+
- Updated dependencies [1ebd071]
|
|
2971
|
+
- Updated dependencies [0b74006]
|
|
2972
|
+
- Updated dependencies [2f17a5f]
|
|
2973
|
+
- Updated dependencies [f368477]
|
|
2974
|
+
- Updated dependencies [7892533]
|
|
2975
|
+
- Updated dependencies [9c10484]
|
|
2976
|
+
- Updated dependencies [b726bf5]
|
|
2977
|
+
- Updated dependencies [70dabd9]
|
|
2978
|
+
- Updated dependencies [21fe536]
|
|
2979
|
+
- Updated dependencies [176bc42]
|
|
2980
|
+
- Updated dependencies [401a4d9]
|
|
2981
|
+
- Updated dependencies [2e099d2]
|
|
2982
|
+
- Updated dependencies [0b826f6]
|
|
2983
|
+
- Updated dependencies [d68b532]
|
|
2984
|
+
- Updated dependencies [75bf3f0]
|
|
2985
|
+
- Updated dependencies [e6d8055]
|
|
2986
|
+
- Updated dependencies [e2e76de]
|
|
2987
|
+
- Updated dependencies [ccbc581]
|
|
2988
|
+
- Updated dependencies [5950de5]
|
|
2989
|
+
- Updated dependencies [fe3dcb0]
|
|
2990
|
+
- Updated dependencies [78eec7c]
|
|
2991
|
+
- Updated dependencies [a8a459a]
|
|
2992
|
+
- Updated dependencies [0be7181]
|
|
2993
|
+
- Updated dependencies [7b87567]
|
|
2994
|
+
- Updated dependencies [b524c22]
|
|
2995
|
+
- Updated dependencies [d7d465a]
|
|
2996
|
+
- Updated dependencies [df843d3]
|
|
2997
|
+
- Updated dependencies [4534e77]
|
|
2998
|
+
- Updated dependencies [d6d8159]
|
|
2999
|
+
- Updated dependencies [0bd142c]
|
|
3000
|
+
- Updated dependencies [9625602]
|
|
3001
|
+
- Updated dependencies [72d1990]
|
|
3002
|
+
- Updated dependencies [f6ba259]
|
|
3003
|
+
- Updated dependencies [2712098]
|
|
3004
|
+
- Updated dependencies [eedb829]
|
|
3005
|
+
- Updated dependencies [5285356]
|
|
3006
|
+
- Updated dependencies [74b3078]
|
|
3007
|
+
- Updated dependencies [cb290ee]
|
|
3008
|
+
- Updated dependencies [b4d7416]
|
|
3009
|
+
- Updated dependencies [e608d8c]
|
|
3010
|
+
- Updated dependencies [06b2c0a]
|
|
3011
|
+
- Updated dependencies [002d6d8]
|
|
3012
|
+
- Updated dependencies [e448a26]
|
|
3013
|
+
- Updated dependencies [8b416d9]
|
|
3014
|
+
- Updated dependencies [fd494a3]
|
|
3015
|
+
- Updated dependencies [dc90663]
|
|
3016
|
+
- Updated dependencies [c872875]
|
|
3017
|
+
- Updated dependencies [3c4488b]
|
|
3018
|
+
- Updated dependencies [a7b016d]
|
|
3019
|
+
- Updated dependencies [fd75f3c]
|
|
3020
|
+
- Updated dependencies [7f24c29]
|
|
3021
|
+
- Updated dependencies [2017553]
|
|
3022
|
+
- Updated dependencies [a10b7a3]
|
|
3023
|
+
- Updated dependencies [cf6d825]
|
|
3024
|
+
- Updated dependencies [963c15a]
|
|
3025
|
+
- Updated dependencies [7365b6c]
|
|
3026
|
+
- Updated dependencies [5ee67d3]
|
|
3027
|
+
- Updated dependencies [d38f7a6]
|
|
3028
|
+
- Updated dependencies [38b7f66]
|
|
3029
|
+
- Updated dependencies [2fa7f53]
|
|
3030
|
+
- Updated dependencies [1420ae2]
|
|
3031
|
+
- Updated dependencies [f6da688]
|
|
3032
|
+
- Updated dependencies [3700be1]
|
|
3033
|
+
- Updated dependencies [9ade36e]
|
|
3034
|
+
- Updated dependencies [10870bc]
|
|
3035
|
+
- Updated dependencies [2b01511]
|
|
3036
|
+
- Updated dependencies [a870123]
|
|
3037
|
+
- Updated dependencies [ccf115c]
|
|
3038
|
+
- Updated dependencies [04434b6]
|
|
3039
|
+
- Updated dependencies [5811de6]
|
|
3040
|
+
- Updated dependencies [9f3ab05]
|
|
3041
|
+
- Updated dependencies [66a5392]
|
|
3042
|
+
- Updated dependencies [4b1ce2c]
|
|
3043
|
+
- Updated dependencies [14064f2]
|
|
3044
|
+
- Updated dependencies [f5dfa20]
|
|
3045
|
+
- Updated dependencies [327ece7]
|
|
3046
|
+
- Updated dependencies [da2e8d3]
|
|
3047
|
+
- Updated dependencies [95a4697]
|
|
3048
|
+
- Updated dependencies [d5fccfb]
|
|
3049
|
+
- Updated dependencies [3427b95]
|
|
3050
|
+
- Updated dependencies [538a136]
|
|
3051
|
+
- Updated dependencies [e66643a]
|
|
3052
|
+
- Updated dependencies [b5393f1]
|
|
3053
|
+
- Updated dependencies [d2cd535]
|
|
3054
|
+
- Updated dependencies [c2dd6b5]
|
|
3055
|
+
- Updated dependencies [67637ba]
|
|
3056
|
+
- Updated dependencies [836f4e3]
|
|
3057
|
+
- Updated dependencies [5ee2e78]
|
|
3058
|
+
- Updated dependencies [cd02c56]
|
|
3059
|
+
- Updated dependencies [01502b0]
|
|
3060
|
+
- Updated dependencies [16e5b04]
|
|
3061
|
+
- Updated dependencies [d9c8dd0]
|
|
3062
|
+
- Updated dependencies [9fb59d6]
|
|
3063
|
+
- Updated dependencies [a9345f9]
|
|
3064
|
+
- Updated dependencies [99f1847]
|
|
3065
|
+
- Updated dependencies [04f3171]
|
|
3066
|
+
- Updated dependencies [8769a62]
|
|
3067
|
+
- Updated dependencies [d5ec619]
|
|
3068
|
+
- Updated dependencies [27275c9]
|
|
3069
|
+
- Updated dependencies [ae7bf94]
|
|
3070
|
+
- Updated dependencies [4f1d1a1]
|
|
3071
|
+
- Updated dependencies [ee4de15]
|
|
3072
|
+
- Updated dependencies [202d404]
|
|
3073
|
+
- Updated dependencies [a221426]
|
|
3074
|
+
- @mastra/core@0.2.0
|
|
3075
|
+
|
|
3076
|
+
## 0.1.0-alpha.92
|
|
3077
|
+
|
|
3078
|
+
### Patch Changes
|
|
3079
|
+
|
|
3080
|
+
- ccf115c: Fixed incomplete tool call errors when including memory message history in context
|
|
3081
|
+
- Updated dependencies [016493a]
|
|
3082
|
+
- Updated dependencies [382f4dc]
|
|
3083
|
+
- Updated dependencies [176bc42]
|
|
3084
|
+
- Updated dependencies [d68b532]
|
|
3085
|
+
- Updated dependencies [fe3dcb0]
|
|
3086
|
+
- Updated dependencies [e448a26]
|
|
3087
|
+
- Updated dependencies [fd75f3c]
|
|
3088
|
+
- Updated dependencies [ccf115c]
|
|
3089
|
+
- Updated dependencies [a221426]
|
|
3090
|
+
- @mastra/core@0.2.0-alpha.110
|
|
3091
|
+
|
|
3092
|
+
## 0.1.0-alpha.91
|
|
3093
|
+
|
|
3094
|
+
### Patch Changes
|
|
3095
|
+
|
|
3096
|
+
- Updated dependencies [d5fccfb]
|
|
3097
|
+
- @mastra/core@0.2.0-alpha.109
|
|
3098
|
+
|
|
3099
|
+
## 0.1.0-alpha.90
|
|
3100
|
+
|
|
3101
|
+
### Patch Changes
|
|
3102
|
+
|
|
3103
|
+
- Updated dependencies [5ee67d3]
|
|
3104
|
+
- Updated dependencies [95a4697]
|
|
3105
|
+
- @mastra/core@0.2.0-alpha.108
|
|
3106
|
+
|
|
3107
|
+
## 0.1.0-alpha.89
|
|
3108
|
+
|
|
3109
|
+
### Patch Changes
|
|
3110
|
+
|
|
3111
|
+
- Updated dependencies [66a5392]
|
|
3112
|
+
- @mastra/core@0.2.0-alpha.107
|
|
3113
|
+
|
|
3114
|
+
## 0.1.0-alpha.88
|
|
3115
|
+
|
|
3116
|
+
### Patch Changes
|
|
3117
|
+
|
|
3118
|
+
- Updated dependencies [6f2c0f5]
|
|
3119
|
+
- Updated dependencies [a8a459a]
|
|
3120
|
+
- @mastra/core@0.2.0-alpha.106
|
|
3121
|
+
|
|
3122
|
+
## 0.1.0-alpha.87
|
|
3123
|
+
|
|
3124
|
+
### Patch Changes
|
|
3125
|
+
|
|
3126
|
+
- Updated dependencies [1420ae2]
|
|
3127
|
+
- Updated dependencies [99f1847]
|
|
3128
|
+
- @mastra/core@0.2.0-alpha.105
|
|
3129
|
+
|
|
3130
|
+
## 0.1.0-alpha.86
|
|
3131
|
+
|
|
3132
|
+
### Patch Changes
|
|
3133
|
+
|
|
3134
|
+
- b97ca96: Tracing into default storage
|
|
3135
|
+
- cf6d825: Fixed a bug where 0 values in memory configs were falling back to default val. Removed a noisy log. Removed a deprecated option
|
|
3136
|
+
- 10870bc: Added a default vector db (libsql) and embedder (fastembed) so that new Memory() can be initialized with zero config
|
|
3137
|
+
- Updated dependencies [5fdc87c]
|
|
3138
|
+
- Updated dependencies [b97ca96]
|
|
3139
|
+
- Updated dependencies [72d1990]
|
|
3140
|
+
- Updated dependencies [cf6d825]
|
|
3141
|
+
- Updated dependencies [10870bc]
|
|
3142
|
+
- @mastra/core@0.2.0-alpha.104
|
|
3143
|
+
|
|
3144
|
+
## 0.1.0-alpha.85
|
|
3145
|
+
|
|
3146
|
+
### Patch Changes
|
|
3147
|
+
|
|
3148
|
+
- Updated dependencies [4534e77]
|
|
3149
|
+
- @mastra/core@0.2.0-alpha.103
|
|
3150
|
+
|
|
3151
|
+
## 0.1.0-alpha.84
|
|
3152
|
+
|
|
3153
|
+
### Patch Changes
|
|
3154
|
+
|
|
3155
|
+
- Updated dependencies [a9345f9]
|
|
3156
|
+
- @mastra/core@0.2.0-alpha.102
|
|
3157
|
+
|
|
3158
|
+
## 0.1.0-alpha.83
|
|
3159
|
+
|
|
3160
|
+
### Patch Changes
|
|
3161
|
+
|
|
3162
|
+
- 4f1d1a1: Enforce types ann cleanup package.json
|
|
3163
|
+
- Updated dependencies [66a03ec]
|
|
3164
|
+
- Updated dependencies [4f1d1a1]
|
|
3165
|
+
- @mastra/core@0.2.0-alpha.101
|
|
3166
|
+
|
|
3167
|
+
## 0.1.0-alpha.82
|
|
3168
|
+
|
|
3169
|
+
### Patch Changes
|
|
3170
|
+
|
|
3171
|
+
- Updated dependencies [9d1796d]
|
|
3172
|
+
- @mastra/core@0.2.0-alpha.100
|
|
3173
|
+
|
|
3174
|
+
## 0.1.0-alpha.81
|
|
3175
|
+
|
|
3176
|
+
### Patch Changes
|
|
3177
|
+
|
|
3178
|
+
- Updated dependencies [7d83b92]
|
|
3179
|
+
- @mastra/core@0.2.0-alpha.99
|
|
3180
|
+
|
|
3181
|
+
## 0.1.0-alpha.80
|
|
3182
|
+
|
|
3183
|
+
### Patch Changes
|
|
3184
|
+
|
|
3185
|
+
- 70dabd9: Fix broken publish
|
|
3186
|
+
- Updated dependencies [70dabd9]
|
|
3187
|
+
- Updated dependencies [202d404]
|
|
3188
|
+
- @mastra/core@0.2.0-alpha.98
|
|
3189
|
+
|
|
3190
|
+
## 0.1.0-alpha.79
|
|
3191
|
+
|
|
3192
|
+
### Patch Changes
|
|
3193
|
+
|
|
3194
|
+
- a870123: Added local embedder class that uses fastembed-js, a Typescript/NodeJS implementation of @Qdrant/fastembed
|
|
3195
|
+
- Updated dependencies [07c069d]
|
|
3196
|
+
- Updated dependencies [7892533]
|
|
3197
|
+
- Updated dependencies [e6d8055]
|
|
3198
|
+
- Updated dependencies [5950de5]
|
|
3199
|
+
- Updated dependencies [df843d3]
|
|
3200
|
+
- Updated dependencies [a870123]
|
|
3201
|
+
- @mastra/core@0.2.0-alpha.97
|
|
3202
|
+
|
|
3203
|
+
## 0.1.0-alpha.78
|
|
3204
|
+
|
|
3205
|
+
### Patch Changes
|
|
3206
|
+
|
|
3207
|
+
- Updated dependencies [74b3078]
|
|
3208
|
+
- @mastra/core@0.2.0-alpha.96
|
|
3209
|
+
|
|
3210
|
+
## 0.1.0-alpha.77
|
|
3211
|
+
|
|
3212
|
+
### Patch Changes
|
|
3213
|
+
|
|
3214
|
+
- Updated dependencies [9fb59d6]
|
|
3215
|
+
- @mastra/core@0.2.0-alpha.95
|
|
3216
|
+
|
|
3217
|
+
## 0.1.0-alpha.76
|
|
3218
|
+
|
|
3219
|
+
### Minor Changes
|
|
3220
|
+
|
|
3221
|
+
- 8b416d9: Breaking changes
|
|
3222
|
+
|
|
3223
|
+
### Patch Changes
|
|
3224
|
+
|
|
3225
|
+
- 9c10484: update all packages
|
|
3226
|
+
- Updated dependencies [9c10484]
|
|
3227
|
+
- Updated dependencies [8b416d9]
|
|
3228
|
+
- @mastra/core@0.2.0-alpha.94
|
|
3229
|
+
|
|
3230
|
+
## 0.1.0-alpha.75
|
|
3231
|
+
|
|
3232
|
+
### Patch Changes
|
|
3233
|
+
|
|
3234
|
+
- Updated dependencies [5285356]
|
|
3235
|
+
- @mastra/core@0.2.0-alpha.93
|
|
3236
|
+
|
|
3237
|
+
## 0.1.0-alpha.74
|
|
3238
|
+
|
|
3239
|
+
### Patch Changes
|
|
3240
|
+
|
|
3241
|
+
- Updated dependencies [4d4f6b6]
|
|
3242
|
+
- @mastra/core@0.2.0-alpha.92
|
|
3243
|
+
|
|
3244
|
+
## 0.1.0-alpha.73
|
|
3245
|
+
|
|
3246
|
+
### Minor Changes
|
|
3247
|
+
|
|
3248
|
+
- d7d465a: Breaking change for Memory: embeddings: {} has been replaced with embedder: new OpenAIEmbedder() (or whichever embedder you want - check the docs)
|
|
3249
|
+
|
|
3250
|
+
### Patch Changes
|
|
3251
|
+
|
|
3252
|
+
- Updated dependencies [d7d465a]
|
|
3253
|
+
- Updated dependencies [d7d465a]
|
|
3254
|
+
- Updated dependencies [2017553]
|
|
3255
|
+
- Updated dependencies [a10b7a3]
|
|
3256
|
+
- Updated dependencies [16e5b04]
|
|
3257
|
+
- @mastra/core@0.2.0-alpha.91
|
|
3258
|
+
|
|
3259
|
+
## 0.1.0-alpha.72
|
|
3260
|
+
|
|
3261
|
+
### Patch Changes
|
|
3262
|
+
|
|
3263
|
+
- Updated dependencies [8151f44]
|
|
3264
|
+
- Updated dependencies [e897f1c]
|
|
3265
|
+
- Updated dependencies [3700be1]
|
|
3266
|
+
- @mastra/core@0.2.0-alpha.90
|
|
3267
|
+
|
|
3268
|
+
## 0.1.0-alpha.71
|
|
3269
|
+
|
|
3270
|
+
### Minor Changes
|
|
3271
|
+
|
|
3272
|
+
- 27275c9: Added new short term "working" memory for agents. Also added a "maskStreamTags" helper to assist in hiding working memory xml blocks in streamed responses
|
|
3273
|
+
|
|
3274
|
+
### Patch Changes
|
|
3275
|
+
|
|
3276
|
+
- Updated dependencies [27275c9]
|
|
3277
|
+
- @mastra/core@0.2.0-alpha.89
|
|
3278
|
+
|
|
3279
|
+
## 0.1.0-alpha.70
|
|
3280
|
+
|
|
3281
|
+
### Patch Changes
|
|
3282
|
+
|
|
3283
|
+
- Updated dependencies [ccbc581]
|
|
3284
|
+
- @mastra/core@0.2.0-alpha.88
|
|
3285
|
+
|
|
3286
|
+
## 0.1.0-alpha.69
|
|
3287
|
+
|
|
3288
|
+
### Patch Changes
|
|
3289
|
+
|
|
3290
|
+
- Updated dependencies [7365b6c]
|
|
3291
|
+
- @mastra/core@0.2.0-alpha.87
|
|
3292
|
+
|
|
3293
|
+
## 0.1.0-alpha.68
|
|
3294
|
+
|
|
3295
|
+
### Minor Changes
|
|
3296
|
+
|
|
3297
|
+
- 5916f9d: Update deps from fixed to ^
|
|
3298
|
+
|
|
3299
|
+
### Patch Changes
|
|
3300
|
+
|
|
3301
|
+
- 67637ba: Fixed storage bugs related to the new Memory API
|
|
3302
|
+
- Updated dependencies [6fa4bd2]
|
|
3303
|
+
- Updated dependencies [e2e76de]
|
|
3304
|
+
- Updated dependencies [7f24c29]
|
|
3305
|
+
- Updated dependencies [67637ba]
|
|
3306
|
+
- Updated dependencies [04f3171]
|
|
3307
|
+
- @mastra/core@0.2.0-alpha.86
|
|
3308
|
+
|
|
3309
|
+
## 0.1.0-alpha.67
|
|
3310
|
+
|
|
3311
|
+
### Patch Changes
|
|
3312
|
+
|
|
3313
|
+
- e9d1b47: Rename Memory options historySearch to semanticRecall, rename embeddingOptions to embedding
|
|
3314
|
+
- Updated dependencies [e9d1b47]
|
|
3315
|
+
- @mastra/core@0.2.0-alpha.85
|
|
3316
|
+
|
|
3317
|
+
## 0.1.0-alpha.66
|
|
3318
|
+
|
|
3319
|
+
### Minor Changes
|
|
3320
|
+
|
|
3321
|
+
- cb290ee: Reworked the Memory public API to have more intuitive and simple property names
|
|
3322
|
+
|
|
3323
|
+
### Patch Changes
|
|
3324
|
+
|
|
3325
|
+
- Updated dependencies [2f17a5f]
|
|
3326
|
+
- Updated dependencies [cb290ee]
|
|
3327
|
+
- Updated dependencies [b4d7416]
|
|
3328
|
+
- Updated dependencies [38b7f66]
|
|
3329
|
+
- @mastra/core@0.2.0-alpha.84
|
|
3330
|
+
|
|
3331
|
+
## 0.1.0-alpha.65
|
|
3332
|
+
|
|
3333
|
+
### Minor Changes
|
|
3334
|
+
|
|
3335
|
+
- 30322ce: Added new Memory API for managed agent memory via MastraStorage and MastraVector classes
|
|
3336
|
+
|
|
3337
|
+
### Patch Changes
|
|
3338
|
+
|
|
3339
|
+
- c35aa18: bug: not all models support multiple system messages
|
|
3340
|
+
- 9625602: Use mastra core splitted bundles in other packages
|
|
3341
|
+
- Updated dependencies [30322ce]
|
|
3342
|
+
- Updated dependencies [78eec7c]
|
|
3343
|
+
- Updated dependencies [9625602]
|
|
3344
|
+
- Updated dependencies [8769a62]
|
|
3345
|
+
- @mastra/core@0.2.0-alpha.83
|
|
3346
|
+
|
|
3347
|
+
## 0.0.2-alpha.64
|
|
3348
|
+
|
|
3349
|
+
### Patch Changes
|
|
3350
|
+
|
|
3351
|
+
- Updated dependencies [73d112c]
|
|
3352
|
+
- @mastra/core@0.1.27-alpha.82
|
|
3353
|
+
|
|
3354
|
+
## 0.0.2-alpha.63
|
|
3355
|
+
|
|
3356
|
+
### Patch Changes
|
|
3357
|
+
|
|
3358
|
+
- Updated dependencies [9fb3039]
|
|
3359
|
+
- @mastra/core@0.1.27-alpha.81
|
|
3360
|
+
|
|
3361
|
+
## 0.0.2-alpha.62
|
|
3362
|
+
|
|
3363
|
+
### Patch Changes
|
|
3364
|
+
|
|
3365
|
+
- 7f5b1b2: @mastra/memory tsup bundling
|
|
3366
|
+
|
|
3367
|
+
## 0.0.2-alpha.61
|
|
3368
|
+
|
|
3369
|
+
### Patch Changes
|
|
3370
|
+
|
|
3371
|
+
- Updated dependencies [327ece7]
|
|
3372
|
+
- @mastra/core@0.1.27-alpha.80
|
|
3373
|
+
|
|
3374
|
+
## 0.0.2-alpha.60
|
|
3375
|
+
|
|
3376
|
+
### Patch Changes
|
|
3377
|
+
|
|
3378
|
+
- Updated dependencies [21fe536]
|
|
3379
|
+
- @mastra/core@0.1.27-alpha.79
|
|
3380
|
+
|
|
3381
|
+
## 0.0.2-alpha.59
|
|
3382
|
+
|
|
3383
|
+
### Patch Changes
|
|
3384
|
+
|
|
3385
|
+
- Updated dependencies [685108a]
|
|
3386
|
+
- Updated dependencies [685108a]
|
|
3387
|
+
- @mastra/core@0.1.27-alpha.78
|
|
3388
|
+
|
|
3389
|
+
## 0.0.2-alpha.58
|
|
3390
|
+
|
|
3391
|
+
### Patch Changes
|
|
3392
|
+
|
|
3393
|
+
- Updated dependencies [8105fae]
|
|
3394
|
+
- @mastra/core@0.1.27-alpha.77
|
|
3395
|
+
|
|
3396
|
+
## 0.0.2-alpha.57
|
|
3397
|
+
|
|
3398
|
+
### Patch Changes
|
|
3399
|
+
|
|
3400
|
+
- Updated dependencies [ae7bf94]
|
|
3401
|
+
- Updated dependencies [ae7bf94]
|
|
3402
|
+
- @mastra/core@0.1.27-alpha.76
|
|
3403
|
+
|
|
3404
|
+
## 0.0.2-alpha.56
|
|
3405
|
+
|
|
3406
|
+
### Patch Changes
|
|
3407
|
+
|
|
3408
|
+
- Updated dependencies [23dcb23]
|
|
3409
|
+
- @mastra/core@0.1.27-alpha.75
|
|
3410
|
+
|
|
3411
|
+
## 0.0.2-alpha.55
|
|
3412
|
+
|
|
3413
|
+
### Patch Changes
|
|
3414
|
+
|
|
3415
|
+
- Updated dependencies [7b87567]
|
|
3416
|
+
- @mastra/core@0.1.27-alpha.74
|
|
3417
|
+
|
|
3418
|
+
## 0.0.2-alpha.54
|
|
3419
|
+
|
|
3420
|
+
### Patch Changes
|
|
3421
|
+
|
|
3422
|
+
- Updated dependencies [3427b95]
|
|
3423
|
+
- @mastra/core@0.1.27-alpha.73
|
|
3424
|
+
|
|
3425
|
+
## 0.0.2-alpha.53
|
|
3426
|
+
|
|
3427
|
+
### Patch Changes
|
|
3428
|
+
|
|
3429
|
+
- Updated dependencies [e4d4ede]
|
|
3430
|
+
- Updated dependencies [06b2c0a]
|
|
3431
|
+
- @mastra/core@0.1.27-alpha.72
|
|
3432
|
+
|
|
3433
|
+
## 0.0.2-alpha.52
|
|
3434
|
+
|
|
3435
|
+
### Patch Changes
|
|
3436
|
+
|
|
3437
|
+
- Updated dependencies [d9c8dd0]
|
|
3438
|
+
- @mastra/core@0.1.27-alpha.71
|
|
3439
|
+
|
|
3440
|
+
## 0.0.2-alpha.51
|
|
3441
|
+
|
|
3442
|
+
### Patch Changes
|
|
3443
|
+
|
|
3444
|
+
- bdaf834: publish packages
|
|
3445
|
+
|
|
3446
|
+
## 0.0.2-alpha.50
|
|
3447
|
+
|
|
3448
|
+
### Patch Changes
|
|
3449
|
+
|
|
3450
|
+
- Updated dependencies [dd6d87f]
|
|
3451
|
+
- Updated dependencies [04434b6]
|
|
3452
|
+
- @mastra/core@0.1.27-alpha.70
|
|
3453
|
+
|
|
3454
|
+
## 0.0.2-alpha.49
|
|
3455
|
+
|
|
3456
|
+
### Patch Changes
|
|
3457
|
+
|
|
3458
|
+
- Updated dependencies [1944807]
|
|
3459
|
+
- Updated dependencies [9ade36e]
|
|
3460
|
+
- @mastra/core@0.1.27-alpha.69
|
|
3461
|
+
|
|
3462
|
+
## 0.0.2-alpha.48
|
|
3463
|
+
|
|
3464
|
+
### Patch Changes
|
|
3465
|
+
|
|
3466
|
+
- Updated dependencies [0be7181]
|
|
3467
|
+
- Updated dependencies [0be7181]
|
|
3468
|
+
- @mastra/core@0.1.27-alpha.68
|
|
3469
|
+
|
|
3470
|
+
## 0.0.2-alpha.47
|
|
3471
|
+
|
|
3472
|
+
### Patch Changes
|
|
3473
|
+
|
|
3474
|
+
- Updated dependencies [c8ff2f5]
|
|
3475
|
+
- @mastra/core@0.1.27-alpha.67
|
|
3476
|
+
|
|
3477
|
+
## 0.0.2-alpha.46
|
|
3478
|
+
|
|
3479
|
+
### Patch Changes
|
|
3480
|
+
|
|
3481
|
+
- Updated dependencies [14064f2]
|
|
3482
|
+
- @mastra/core@0.1.27-alpha.66
|
|
3483
|
+
|
|
3484
|
+
## 0.0.2-alpha.45
|
|
3485
|
+
|
|
3486
|
+
### Patch Changes
|
|
3487
|
+
|
|
3488
|
+
- Updated dependencies [e66643a]
|
|
3489
|
+
- @mastra/core@0.1.27-alpha.65
|
|
3490
|
+
|
|
3491
|
+
## 0.0.2-alpha.44
|
|
3492
|
+
|
|
3493
|
+
### Patch Changes
|
|
3494
|
+
|
|
3495
|
+
- Updated dependencies [f368477]
|
|
3496
|
+
- Updated dependencies [d5ec619]
|
|
3497
|
+
- @mastra/core@0.1.27-alpha.64
|
|
3498
|
+
|
|
3499
|
+
## 0.0.2-alpha.43
|
|
3500
|
+
|
|
3501
|
+
### Patch Changes
|
|
3502
|
+
|
|
3503
|
+
- Updated dependencies [e097800]
|
|
3504
|
+
- @mastra/core@0.1.27-alpha.63
|
|
3505
|
+
|
|
3506
|
+
## 0.0.2-alpha.42
|
|
3507
|
+
|
|
3508
|
+
### Patch Changes
|
|
3509
|
+
|
|
3510
|
+
- Updated dependencies [93a3719]
|
|
3511
|
+
- @mastra/core@0.1.27-alpha.62
|
|
3512
|
+
|
|
3513
|
+
## 0.0.2-alpha.41
|
|
3514
|
+
|
|
3515
|
+
### Patch Changes
|
|
3516
|
+
|
|
3517
|
+
- Updated dependencies [dc90663]
|
|
3518
|
+
- @mastra/core@0.1.27-alpha.61
|
|
3519
|
+
|
|
3520
|
+
## 0.0.2-alpha.40
|
|
3521
|
+
|
|
3522
|
+
### Patch Changes
|
|
3523
|
+
|
|
3524
|
+
- Updated dependencies [3967e69]
|
|
3525
|
+
- @mastra/core@0.1.27-alpha.60
|
|
3526
|
+
|
|
3527
|
+
## 0.0.2-alpha.39
|
|
3528
|
+
|
|
3529
|
+
### Patch Changes
|
|
3530
|
+
|
|
3531
|
+
- Updated dependencies [b524c22]
|
|
3532
|
+
- @mastra/core@0.1.27-alpha.59
|
|
3533
|
+
|
|
3534
|
+
## 0.0.2-alpha.38
|
|
3535
|
+
|
|
3536
|
+
### Patch Changes
|
|
3537
|
+
|
|
3538
|
+
- Updated dependencies [1874f40]
|
|
3539
|
+
- Updated dependencies [4b1ce2c]
|
|
3540
|
+
- @mastra/core@0.1.27-alpha.58
|
|
3541
|
+
|
|
3542
|
+
## 0.0.2-alpha.37
|
|
3543
|
+
|
|
3544
|
+
### Patch Changes
|
|
3545
|
+
|
|
3546
|
+
- Updated dependencies [fd494a3]
|
|
3547
|
+
- @mastra/core@0.1.27-alpha.57
|
|
3548
|
+
|
|
3549
|
+
## 0.0.2-alpha.36
|
|
3550
|
+
|
|
3551
|
+
### Patch Changes
|
|
3552
|
+
|
|
3553
|
+
- Updated dependencies [9f3ab05]
|
|
3554
|
+
- @mastra/core@0.1.27-alpha.56
|
|
3555
|
+
|
|
3556
|
+
## 0.0.2-alpha.35
|
|
3557
|
+
|
|
3558
|
+
### Patch Changes
|
|
3559
|
+
|
|
3560
|
+
- 837a288: MAJOR Revamp of tools, workflows, syncs.
|
|
3561
|
+
- 0b74006: Workflow updates
|
|
3562
|
+
- Updated dependencies [592e3cf]
|
|
3563
|
+
- Updated dependencies [837a288]
|
|
3564
|
+
- Updated dependencies [0b74006]
|
|
3565
|
+
- @mastra/core@0.1.27-alpha.55
|
|
3566
|
+
|
|
3567
|
+
## 0.0.2-alpha.34
|
|
3568
|
+
|
|
3569
|
+
### Patch Changes
|
|
3570
|
+
|
|
3571
|
+
- Updated dependencies [d2cd535]
|
|
3572
|
+
- @mastra/core@0.1.27-alpha.54
|
|
3573
|
+
|
|
3574
|
+
## 0.0.2-alpha.33
|
|
3575
|
+
|
|
3576
|
+
### Patch Changes
|
|
3577
|
+
|
|
3578
|
+
- Updated dependencies [8e7814f]
|
|
3579
|
+
- @mastra/core@0.1.27-alpha.53
|
|
3580
|
+
|
|
3581
|
+
## 0.0.2-alpha.32
|
|
3582
|
+
|
|
3583
|
+
### Patch Changes
|
|
3584
|
+
|
|
3585
|
+
- Updated dependencies [eedb829]
|
|
3586
|
+
- @mastra/core@0.1.27-alpha.52
|
|
3587
|
+
|
|
3588
|
+
## 0.0.2-alpha.31
|
|
3589
|
+
|
|
3590
|
+
### Patch Changes
|
|
3591
|
+
|
|
3592
|
+
- Updated dependencies [a7b016d]
|
|
3593
|
+
- Updated dependencies [da2e8d3]
|
|
3594
|
+
- Updated dependencies [538a136]
|
|
3595
|
+
- @mastra/core@0.1.27-alpha.51
|
|
3596
|
+
|
|
3597
|
+
## 0.0.2-alpha.30
|
|
3598
|
+
|
|
3599
|
+
### Patch Changes
|
|
3600
|
+
|
|
3601
|
+
- Updated dependencies [401a4d9]
|
|
3602
|
+
- @mastra/core@0.1.27-alpha.50
|
|
3603
|
+
|
|
3604
|
+
## 0.0.2-alpha.29
|
|
3605
|
+
|
|
3606
|
+
### Patch Changes
|
|
3607
|
+
|
|
3608
|
+
- Updated dependencies [79acad0]
|
|
3609
|
+
- Updated dependencies [f5dfa20]
|
|
3610
|
+
- @mastra/core@0.1.27-alpha.49
|
|
3611
|
+
|
|
3612
|
+
## 0.0.2-alpha.28
|
|
3613
|
+
|
|
3614
|
+
### Patch Changes
|
|
3615
|
+
|
|
3616
|
+
- Updated dependencies [b726bf5]
|
|
3617
|
+
- @mastra/core@0.1.27-alpha.48
|
|
3618
|
+
|
|
3619
|
+
## 0.0.2-alpha.27
|
|
3620
|
+
|
|
3621
|
+
### Patch Changes
|
|
3622
|
+
|
|
3623
|
+
- Updated dependencies [f6ba259]
|
|
3624
|
+
- @mastra/core@0.1.27-alpha.47
|
|
3625
|
+
|
|
3626
|
+
## 0.0.2-alpha.26
|
|
3627
|
+
|
|
3628
|
+
### Patch Changes
|
|
3629
|
+
|
|
3630
|
+
- 8ae2bbc: Dane publishing
|
|
3631
|
+
- 0bd142c: Fixes learned from docs
|
|
3632
|
+
- ee4de15: Dane fixes
|
|
3633
|
+
- Updated dependencies [8ae2bbc]
|
|
3634
|
+
- Updated dependencies [0bd142c]
|
|
3635
|
+
- Updated dependencies [ee4de15]
|
|
3636
|
+
- @mastra/core@0.1.27-alpha.46
|
|
3637
|
+
|
|
3638
|
+
## 0.0.2-alpha.25
|
|
3639
|
+
|
|
3640
|
+
### Patch Changes
|
|
3641
|
+
|
|
3642
|
+
- 3220d26: Fix lastStep error in agent stream
|
|
3643
|
+
|
|
3644
|
+
## 0.0.2-alpha.24
|
|
3645
|
+
|
|
3646
|
+
### Patch Changes
|
|
3647
|
+
|
|
3648
|
+
- 002d6d8: add memory to playground agent
|
|
3649
|
+
- Updated dependencies [e608d8c]
|
|
3650
|
+
- Updated dependencies [002d6d8]
|
|
3651
|
+
- @mastra/core@0.1.27-alpha.45
|
|
3652
|
+
|
|
3653
|
+
## 0.0.2-alpha.23
|
|
3654
|
+
|
|
3655
|
+
### Patch Changes
|
|
3656
|
+
|
|
3657
|
+
- Updated dependencies [2fa7f53]
|
|
3658
|
+
- @mastra/core@0.1.27-alpha.44
|
|
3659
|
+
|
|
3660
|
+
## 0.0.2-alpha.22
|
|
3661
|
+
|
|
3662
|
+
### Patch Changes
|
|
3663
|
+
|
|
3664
|
+
- Updated dependencies [2e099d2]
|
|
3665
|
+
- Updated dependencies [d6d8159]
|
|
3666
|
+
- @mastra/core@0.1.27-alpha.43
|
|
3667
|
+
|
|
3668
|
+
## 0.0.2-alpha.21
|
|
3669
|
+
|
|
3670
|
+
### Patch Changes
|
|
3671
|
+
|
|
3672
|
+
- Updated dependencies [4a54c82]
|
|
3673
|
+
- @mastra/core@0.1.27-alpha.42
|
|
3674
|
+
|
|
3675
|
+
## 0.0.2-alpha.20
|
|
3676
|
+
|
|
3677
|
+
### Patch Changes
|
|
3678
|
+
|
|
3679
|
+
- Updated dependencies [5cdfb88]
|
|
3680
|
+
- @mastra/core@0.1.27-alpha.41
|
|
3681
|
+
|
|
3682
|
+
## 0.0.2-alpha.19
|
|
3683
|
+
|
|
3684
|
+
### Patch Changes
|
|
3685
|
+
|
|
3686
|
+
- Updated dependencies [9029796]
|
|
3687
|
+
- @mastra/core@0.1.27-alpha.40
|
|
3688
|
+
|
|
3689
|
+
## 0.0.2-alpha.18
|
|
3690
|
+
|
|
3691
|
+
### Patch Changes
|
|
3692
|
+
|
|
3693
|
+
- Updated dependencies [2b01511]
|
|
3694
|
+
- @mastra/core@0.1.27-alpha.39
|
|
3695
|
+
|
|
3696
|
+
## 0.0.2-alpha.17
|
|
3697
|
+
|
|
3698
|
+
### Patch Changes
|
|
3699
|
+
|
|
3700
|
+
- Updated dependencies [f031a1f]
|
|
3701
|
+
- @mastra/core@0.1.27-alpha.38
|
|
3702
|
+
|
|
3703
|
+
## 0.0.2-alpha.16
|
|
3704
|
+
|
|
3705
|
+
### Patch Changes
|
|
3706
|
+
|
|
3707
|
+
- b5393f1: New example: Dane and many fixes to make it work
|
|
3708
|
+
- Updated dependencies [c872875]
|
|
3709
|
+
- Updated dependencies [f6da688]
|
|
3710
|
+
- Updated dependencies [b5393f1]
|
|
3711
|
+
- @mastra/core@0.1.27-alpha.37
|
|
3712
|
+
|
|
3713
|
+
## 0.0.2-alpha.15
|
|
3714
|
+
|
|
3715
|
+
### Patch Changes
|
|
3716
|
+
|
|
3717
|
+
- b898fad: Fix get context window in memory
|
|
3718
|
+
- Updated dependencies [f537e33]
|
|
3719
|
+
- Updated dependencies [bc40916]
|
|
3720
|
+
- Updated dependencies [f7d1131]
|
|
3721
|
+
- Updated dependencies [75bf3f0]
|
|
3722
|
+
- Updated dependencies [3c4488b]
|
|
3723
|
+
- Updated dependencies [d38f7a6]
|
|
3724
|
+
- @mastra/core@0.1.27-alpha.36
|
|
3725
|
+
|
|
3726
|
+
## 0.0.2-alpha.14
|
|
3727
|
+
|
|
3728
|
+
### Patch Changes
|
|
3729
|
+
|
|
3730
|
+
- 033eda6: More fixes for refactor
|
|
3731
|
+
- Updated dependencies [033eda6]
|
|
3732
|
+
- @mastra/core@0.1.27-alpha.35
|
|
3733
|
+
|
|
3734
|
+
## 0.0.2-alpha.13
|
|
3735
|
+
|
|
3736
|
+
### Patch Changes
|
|
3737
|
+
|
|
3738
|
+
- 837a288: MAJOR Revamp of tools, workflows, syncs.
|
|
3739
|
+
- Updated dependencies [837a288]
|
|
3740
|
+
- Updated dependencies [5811de6]
|
|
3741
|
+
- @mastra/core@0.1.27-alpha.34
|
|
3742
|
+
|
|
3743
|
+
## 0.0.2-alpha.12
|
|
3744
|
+
|
|
3745
|
+
### Patch Changes
|
|
3746
|
+
|
|
3747
|
+
- Updated dependencies [e1dd94a]
|
|
3748
|
+
- @mastra/core@0.1.27-alpha.33
|
|
3749
|
+
|
|
3750
|
+
## 0.0.2-alpha.11
|
|
3751
|
+
|
|
3752
|
+
### Patch Changes
|
|
3753
|
+
|
|
3754
|
+
- Updated dependencies [2712098]
|
|
3755
|
+
- @mastra/core@0.1.27-alpha.32
|
|
3756
|
+
|
|
3757
|
+
## 0.0.2-alpha.10
|
|
3758
|
+
|
|
3759
|
+
### Patch Changes
|
|
3760
|
+
|
|
3761
|
+
- Updated dependencies [c2dd6b5]
|
|
3762
|
+
- @mastra/core@0.1.27-alpha.31
|
|
3763
|
+
|
|
3764
|
+
## 0.0.2-alpha.9
|
|
3765
|
+
|
|
3766
|
+
### Patch Changes
|
|
3767
|
+
|
|
3768
|
+
- Updated dependencies [963c15a]
|
|
3769
|
+
- @mastra/core@0.1.27-alpha.30
|
|
3770
|
+
|
|
3771
|
+
## 0.0.2-alpha.8
|
|
3772
|
+
|
|
3773
|
+
### Patch Changes
|
|
3774
|
+
|
|
3775
|
+
- Updated dependencies [7d87a15]
|
|
3776
|
+
- @mastra/core@0.1.27-alpha.29
|
|
3777
|
+
|
|
3778
|
+
## 0.0.2-alpha.7
|
|
3779
|
+
|
|
3780
|
+
### Patch Changes
|
|
3781
|
+
|
|
3782
|
+
- Updated dependencies [1ebd071]
|
|
3783
|
+
- @mastra/core@0.1.27-alpha.28
|
|
3784
|
+
|
|
3785
|
+
## 0.0.2-alpha.6
|
|
3786
|
+
|
|
3787
|
+
### Patch Changes
|
|
3788
|
+
|
|
3789
|
+
- Updated dependencies [cd02c56]
|
|
3790
|
+
- @mastra/core@0.1.27-alpha.27
|
|
3791
|
+
|
|
3792
|
+
## 0.0.2-alpha.5
|
|
3793
|
+
|
|
3794
|
+
### Patch Changes
|
|
3795
|
+
|
|
3796
|
+
- Updated dependencies [d5e12de]
|
|
3797
|
+
- @mastra/core@0.1.27-alpha.26
|
|
3798
|
+
|
|
3799
|
+
## 0.0.2-alpha.4
|
|
3800
|
+
|
|
3801
|
+
### Patch Changes
|
|
3802
|
+
|
|
3803
|
+
- 01502b0: fix thread title containing unnecessary text and removed unnecessary logs in memory
|
|
3804
|
+
- Updated dependencies [01502b0]
|
|
3805
|
+
- @mastra/core@0.1.27-alpha.25
|
|
3806
|
+
|
|
3807
|
+
## 0.0.2-alpha.3
|
|
3808
|
+
|
|
3809
|
+
### Patch Changes
|
|
3810
|
+
|
|
3811
|
+
- 836f4e3: Fixed some issues with memory, added Upstash as a memory provider. Silenced dev logs in core
|
|
3812
|
+
- Updated dependencies [836f4e3]
|
|
3813
|
+
- @mastra/core@0.1.27-alpha.24
|
|
3814
|
+
|
|
3815
|
+
## 0.0.2-alpha.2
|
|
3816
|
+
|
|
3817
|
+
### Patch Changes
|
|
3818
|
+
|
|
3819
|
+
- Updated dependencies [0b826f6]
|
|
3820
|
+
- @mastra/core@0.1.27-alpha.23
|
|
3821
|
+
|
|
3822
|
+
## 0.0.2-alpha.1
|
|
3823
|
+
|
|
3824
|
+
### Patch Changes
|
|
3825
|
+
|
|
3826
|
+
- Updated dependencies [7a19083]
|
|
3827
|
+
- @mastra/core@0.1.27-alpha.22
|
|
3828
|
+
|
|
3829
|
+
## 0.0.2-alpha.0
|
|
3830
|
+
|
|
3831
|
+
### Patch Changes
|
|
3832
|
+
|
|
3833
|
+
- Updated dependencies [5ee2e78]
|
|
3834
|
+
- @mastra/core@0.1.27-alpha.21
|