@mastra/mcp-docs-server 0.13.7-alpha.1 → 0.13.7-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +37 -37
- package/.docs/organized/changelogs/%40mastra%2Fcloudflare-d1.md +18 -18
- package/.docs/organized/changelogs/%40mastra%2Fcloudflare.md +18 -18
- package/.docs/organized/changelogs/%40mastra%2Fcore.md +39 -39
- package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +21 -21
- package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +42 -42
- package/.docs/organized/changelogs/%40mastra%2Flibsql.md +29 -29
- package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +22 -22
- package/.docs/organized/changelogs/%40mastra%2Fmemory.md +29 -29
- package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +20 -20
- package/.docs/organized/changelogs/%40mastra%2Fmssql.md +17 -0
- package/.docs/organized/changelogs/%40mastra%2Fpg.md +29 -29
- package/.docs/organized/changelogs/%40mastra%2Fserver.md +36 -36
- package/.docs/organized/changelogs/%40mastra%2Fupstash.md +29 -29
- package/.docs/organized/changelogs/%40mastra%2Fvectorize.md +18 -18
- package/.docs/organized/changelogs/%40mastra%2Fvoice-cloudflare.md +18 -18
- package/.docs/organized/changelogs/mastra.md +21 -21
- package/.docs/organized/code-examples/agent.md +93 -3
- package/.docs/organized/code-examples/ai-sdk-v5.md +4 -4
- package/.docs/raw/agents/input-processors.mdx +268 -0
- package/.docs/raw/agents/using-tools-and-mcp.mdx +39 -0
- package/.docs/raw/community/contributing-templates.mdx +2 -2
- package/.docs/raw/observability/tracing.mdx +44 -0
- package/.docs/raw/reference/agents/agent.mdx +7 -0
- package/.docs/raw/reference/cli/dev.mdx +6 -0
- package/.docs/raw/reference/client-js/memory.mdx +18 -0
- package/.docs/raw/reference/memory/Memory.mdx +1 -0
- package/.docs/raw/reference/memory/deleteMessages.mdx +95 -0
- package/.docs/raw/reference/memory/getThreadsByResourceId.mdx +33 -1
- package/.docs/raw/reference/rag/upstash.mdx +112 -5
- package/.docs/raw/reference/scorers/answer-relevancy.mdx +0 -1
- package/.docs/raw/reference/scorers/faithfulness.mdx +0 -1
- package/.docs/raw/reference/scorers/hallucination.mdx +0 -2
- package/.docs/raw/reference/scorers/llm-scorer.mdx +45 -1
- package/.docs/raw/reference/storage/libsql.mdx +7 -4
- package/.docs/raw/reference/storage/mssql.mdx +7 -3
- package/.docs/raw/reference/storage/postgresql.mdx +7 -3
- package/.docs/raw/reference/templates.mdx +11 -5
- package/.docs/raw/scorers/custom-scorers.mdx +319 -0
- package/.docs/raw/scorers/off-the-shelf-scorers.mdx +30 -0
- package/.docs/raw/scorers/overview.mdx +124 -0
- package/package.json +6 -6
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
+
## 0.10.17-alpha.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9802f42: Added types and tests to ensure client-js and hono endpoints can save memory messages where the input is either a v1 or v2 mastra message
|
|
8
|
+
- 1ac8f6b: deduplicate message
|
|
9
|
+
- @mastra/core@0.12.0-alpha.3
|
|
10
|
+
|
|
11
|
+
## 0.10.17-alpha.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- aa2715b: process stream response error handling
|
|
16
|
+
- b8efbb9: feat: add flexible deleteMessages method to memory API
|
|
17
|
+
- Added `memory.deleteMessages(input)` method that accepts multiple input types:
|
|
18
|
+
- Single message ID as string: `deleteMessages('msg-123')`
|
|
19
|
+
- Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
|
|
20
|
+
- Message object with id property: `deleteMessages({ id: 'msg-123' })`
|
|
21
|
+
- Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
|
|
22
|
+
- Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
|
|
23
|
+
- Added REST API endpoint: `POST /api/memory/messages/delete`
|
|
24
|
+
- Updated client SDK: `thread.deleteMessages()` accepts all input types
|
|
25
|
+
- Updates thread timestamps when messages are deleted
|
|
26
|
+
- Added comprehensive test coverage and documentation
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [27cc97a]
|
|
29
|
+
- Updated dependencies [41daa63]
|
|
30
|
+
- Updated dependencies [254a36b]
|
|
31
|
+
- Updated dependencies [0b89602]
|
|
32
|
+
- Updated dependencies [4d37822]
|
|
33
|
+
- Updated dependencies [ff9c125]
|
|
34
|
+
- Updated dependencies [b8efbb9]
|
|
35
|
+
- Updated dependencies [71466e7]
|
|
36
|
+
- Updated dependencies [0c99fbe]
|
|
37
|
+
- @mastra/core@0.12.0-alpha.2
|
|
38
|
+
|
|
3
39
|
## 0.10.17-alpha.1
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
@@ -263,40 +299,4 @@
|
|
|
263
299
|
|
|
264
300
|
## 0.10.10-alpha.0
|
|
265
301
|
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
- Updated dependencies [f8ce2cc]
|
|
269
|
-
- Updated dependencies [8c846b6]
|
|
270
|
-
- Updated dependencies [b790fd1]
|
|
271
|
-
- Updated dependencies [d7ed04d]
|
|
272
|
-
- Updated dependencies [f36e4f1]
|
|
273
|
-
- @mastra/core@0.10.11-alpha.0
|
|
274
|
-
|
|
275
|
-
## 0.10.9
|
|
276
|
-
|
|
277
|
-
### Patch Changes
|
|
278
|
-
|
|
279
|
-
- b60f510: Fix getWorkflowRuns by limit and offset
|
|
280
|
-
- 6997af1: add send event to server, deployer, client-js and playground-ui
|
|
281
|
-
- Updated dependencies [4d3fbdf]
|
|
282
|
-
- @mastra/core@0.10.10
|
|
283
|
-
|
|
284
|
-
## 0.10.9-alpha.1
|
|
285
|
-
|
|
286
|
-
### Patch Changes
|
|
287
|
-
|
|
288
|
-
- b60f510: Fix getWorkflowRuns by limit and offset
|
|
289
|
-
- 6997af1: add send event to server, deployer, client-js and playground-ui
|
|
290
|
-
- @mastra/core@0.10.10-alpha.1
|
|
291
|
-
|
|
292
|
-
## 0.10.9-alpha.0
|
|
293
|
-
|
|
294
|
-
### Patch Changes
|
|
295
|
-
|
|
296
|
-
- Updated dependencies [4d3fbdf]
|
|
297
|
-
- @mastra/core@0.10.10-alpha.0
|
|
298
|
-
|
|
299
|
-
## 0.10.8
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
... 1724 more lines hidden. See full changelog in package directory.
|
|
302
|
+
... 1760 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @mastra/cloudflare-d1
|
|
2
2
|
|
|
3
|
+
## 0.12.4-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9881232: dependencies updates:
|
|
8
|
+
- Updated dependency [`cloudflare@^4.5.0` ↗︎](https://www.npmjs.com/package/cloudflare/v/4.5.0) (from `^4.4.1`, in `dependencies`)
|
|
9
|
+
- Updated dependencies [27cc97a]
|
|
10
|
+
- Updated dependencies [41daa63]
|
|
11
|
+
- Updated dependencies [254a36b]
|
|
12
|
+
- Updated dependencies [0b89602]
|
|
13
|
+
- Updated dependencies [4d37822]
|
|
14
|
+
- Updated dependencies [ff9c125]
|
|
15
|
+
- Updated dependencies [b8efbb9]
|
|
16
|
+
- Updated dependencies [71466e7]
|
|
17
|
+
- Updated dependencies [0c99fbe]
|
|
18
|
+
- @mastra/core@0.12.0-alpha.2
|
|
19
|
+
|
|
3
20
|
## 0.12.4-alpha.0
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -282,21 +299,4 @@
|
|
|
282
299
|
|
|
283
300
|
## 0.10.2-alpha.1
|
|
284
301
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
- d90c49f: dependencies updates:
|
|
288
|
-
- Updated dependency [`cloudflare@^4.3.0` ↗︎](https://www.npmjs.com/package/cloudflare/v/4.3.0) (from `^4.1.0`, in `dependencies`)
|
|
289
|
-
- dffb67b: updated stores to add alter table and change tests
|
|
290
|
-
- Updated dependencies [f6fd25f]
|
|
291
|
-
- Updated dependencies [dffb67b]
|
|
292
|
-
- Updated dependencies [f1309d3]
|
|
293
|
-
- Updated dependencies [f7f8293]
|
|
294
|
-
- @mastra/core@0.10.4-alpha.1
|
|
295
|
-
|
|
296
|
-
## 0.10.2-alpha.0
|
|
297
|
-
|
|
298
|
-
### Patch Changes
|
|
299
|
-
|
|
300
|
-
- ce97900: Add paginated APIs to cloudflare-d1 storage class
|
|
301
|
-
|
|
302
|
-
... 468 more lines hidden. See full changelog in package directory.
|
|
302
|
+
... 485 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @mastra/cloudflare
|
|
2
2
|
|
|
3
|
+
## 0.11.4-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9881232: dependencies updates:
|
|
8
|
+
- Updated dependency [`cloudflare@^4.5.0` ↗︎](https://www.npmjs.com/package/cloudflare/v/4.5.0) (from `^4.4.1`, in `dependencies`)
|
|
9
|
+
- Updated dependencies [27cc97a]
|
|
10
|
+
- Updated dependencies [41daa63]
|
|
11
|
+
- Updated dependencies [254a36b]
|
|
12
|
+
- Updated dependencies [0b89602]
|
|
13
|
+
- Updated dependencies [4d37822]
|
|
14
|
+
- Updated dependencies [ff9c125]
|
|
15
|
+
- Updated dependencies [b8efbb9]
|
|
16
|
+
- Updated dependencies [71466e7]
|
|
17
|
+
- Updated dependencies [0c99fbe]
|
|
18
|
+
- @mastra/core@0.12.0-alpha.2
|
|
19
|
+
|
|
3
20
|
## 0.11.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -281,22 +298,5 @@
|
|
|
281
298
|
- Updated dependencies [c5bf1ce]
|
|
282
299
|
- Updated dependencies [add596e]
|
|
283
300
|
- Updated dependencies [8dc94d8]
|
|
284
|
-
- Updated dependencies [ecebbeb]
|
|
285
|
-
- Updated dependencies [79d5145]
|
|
286
|
-
- Updated dependencies [12b7002]
|
|
287
|
-
- Updated dependencies [2901125]
|
|
288
|
-
- @mastra/core@0.10.2
|
|
289
|
-
|
|
290
|
-
## 0.10.2-alpha.3
|
|
291
|
-
|
|
292
|
-
### Patch Changes
|
|
293
|
-
|
|
294
|
-
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
295
|
-
- 12b7002: Add serializedStepGraph to workflow run snapshot in storage
|
|
296
|
-
- Updated dependencies [c5bf1ce]
|
|
297
|
-
- Updated dependencies [12b7002]
|
|
298
|
-
- @mastra/core@0.10.2-alpha.4
|
|
299
|
-
|
|
300
|
-
## 0.10.2-alpha.2
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 669 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
+
## 0.12.0-alpha.3
|
|
4
|
+
|
|
5
|
+
## 0.12.0-alpha.2
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- 27cc97a: dependencies updates:
|
|
10
|
+
- Updated dependency [`hono@^4.8.9` ↗︎](https://www.npmjs.com/package/hono/v/4.8.9) (from `^4.8.4`, in `dependencies`)
|
|
11
|
+
- 41daa63: Threads are no longer created until message generation is complete to avoid leaving orphaned empty threads in storage on failure
|
|
12
|
+
- 254a36b: Expose mastra instance on dynamic agent arguments
|
|
13
|
+
- 0b89602: Fix workflow feedback loop crashes by preventing resume data reuse
|
|
14
|
+
|
|
15
|
+
Fixes an issue where workflows with loops (dountil/dowhile) containing suspended steps would incorrectly reuse resume data across iterations. This caused human-in-the-loop workflows to crash or skip suspend points after resuming.
|
|
16
|
+
|
|
17
|
+
The fix ensures resume data is cleared after a step completes (non-suspended status), allowing subsequent loop iterations to properly suspend for new input.
|
|
18
|
+
|
|
19
|
+
Fixes #6014
|
|
20
|
+
|
|
21
|
+
- 4d37822: Fix workflow input property preservation after resume from snapshot
|
|
22
|
+
|
|
23
|
+
Ensure that when resuming a workflow from a snapshot, the input property is correctly set from the snapshot's context input rather than from resume data. This prevents the loss of original workflow input data during suspend/resume cycles.
|
|
24
|
+
|
|
25
|
+
- ff9c125: enhance thread retrieval with sorting options in libsql and pg
|
|
26
|
+
- b8efbb9: feat: add flexible deleteMessages method to memory API
|
|
27
|
+
- Added `memory.deleteMessages(input)` method that accepts multiple input types:
|
|
28
|
+
- Single message ID as string: `deleteMessages('msg-123')`
|
|
29
|
+
- Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
|
|
30
|
+
- Message object with id property: `deleteMessages({ id: 'msg-123' })`
|
|
31
|
+
- Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
|
|
32
|
+
- Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
|
|
33
|
+
- Added REST API endpoint: `POST /api/memory/messages/delete`
|
|
34
|
+
- Updated client SDK: `thread.deleteMessages()` accepts all input types
|
|
35
|
+
- Updates thread timestamps when messages are deleted
|
|
36
|
+
- Added comprehensive test coverage and documentation
|
|
37
|
+
|
|
38
|
+
- 71466e7: Adds traceId and resourceId to telemetry spans for agent invocations
|
|
39
|
+
- 0c99fbe: [Feature] Add ability to include input processors to Agent primitive in order to add guardrails to incoming messages.
|
|
40
|
+
|
|
3
41
|
## 0.12.0-alpha.1
|
|
4
42
|
|
|
5
43
|
### Patch Changes
|
|
@@ -260,43 +298,5 @@
|
|
|
260
298
|
- 7e801dd: [MASTRA-4118] fixes issue with agent network loopStream where subsequent messages aren't present in playground on refresh
|
|
261
299
|
- a606c75: show right suspend schema for nested workflow on playground
|
|
262
300
|
- 7aa70a4: Use the right step id for nested workflow steps in watch-v2
|
|
263
|
-
- 764f86a: Introduces the runCount property in the execution parameters for the steps execute function
|
|
264
|
-
- 1760a1c: Use workflow stream in playground instead of watch
|
|
265
|
-
- 038e5ae: Add cancel workflow run
|
|
266
|
-
- 7dda16a: Agent Network: Prompting improvements for better decisions
|
|
267
|
-
- 5ebfcdd: Fix MessageList toUIMessage to filter out tool invocations with state="call" or "partial-call"
|
|
268
|
-
- b2d0c91: Made title generation a blocking operation to prevent issues where the process might close before the title is generated
|
|
269
|
-
- 4e809ad: Visualizations for .sleep()/.sleepUntil()/.waitForEvent()
|
|
270
|
-
- 57929df: [MASTRA-4143[ change message-list and agent network display
|
|
271
|
-
- b7852ed: [MASTRA-4139] make private functions protected in memory
|
|
272
|
-
- 6320a61: Allow passing model to generateTitle to override default model selection.
|
|
273
|
-
|
|
274
|
-
## 0.10.9-alpha.0
|
|
275
|
-
|
|
276
|
-
### Patch Changes
|
|
277
|
-
|
|
278
|
-
- 9dda1ac: dependencies updates:
|
|
279
|
-
- Updated dependency [`hono@^4.8.3` ↗︎](https://www.npmjs.com/package/hono/v/4.8.3) (from `^4.7.11`, in `dependencies`)
|
|
280
|
-
- c984582: Improve error messages for invalid message content in MessageList
|
|
281
|
-
- 7e801dd: [MASTRA-4118] fixes issue with agent network loopStream where subsequent messages aren't present in playground on refresh
|
|
282
|
-
- a606c75: show right suspend schema for nested workflow on playground
|
|
283
|
-
- 7aa70a4: Use the right step id for nested workflow steps in watch-v2
|
|
284
|
-
- 764f86a: Introduces the runCount property in the execution parameters for the steps execute function
|
|
285
|
-
- 1760a1c: Use workflow stream in playground instead of watch
|
|
286
|
-
- 038e5ae: Add cancel workflow run
|
|
287
|
-
- 7dda16a: Agent Network: Prompting improvements for better decisions
|
|
288
|
-
- 5ebfcdd: Fix MessageList toUIMessage to filter out tool invocations with state="call" or "partial-call"
|
|
289
|
-
- b2d0c91: Made title generation a blocking operation to prevent issues where the process might close before the title is generated
|
|
290
|
-
- 4e809ad: Visualizations for .sleep()/.sleepUntil()/.waitForEvent()
|
|
291
|
-
- 57929df: [MASTRA-4143[ change message-list and agent network display
|
|
292
|
-
- b7852ed: [MASTRA-4139] make private functions protected in memory
|
|
293
|
-
- 6320a61: Allow passing model to generateTitle to override default model selection.
|
|
294
|
-
|
|
295
|
-
## 0.10.8
|
|
296
|
-
|
|
297
|
-
### Patch Changes
|
|
298
|
-
|
|
299
|
-
- b8f16b2: Fixes generateTitle overwriting working memory when both get used in the same LLM response cycle.
|
|
300
|
-
- 3e04487: Fix provider tools to check for output schema before attaching to tool
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 2318 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @mastra/deployer-cloudflare
|
|
2
2
|
|
|
3
|
+
## 0.11.2-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9881232: dependencies updates:
|
|
8
|
+
- Updated dependency [`cloudflare@^4.5.0` ↗︎](https://www.npmjs.com/package/cloudflare/v/4.5.0) (from `^4.4.1`, in `dependencies`)
|
|
9
|
+
- Updated dependencies [27cc97a]
|
|
10
|
+
- Updated dependencies [27cc97a]
|
|
11
|
+
- Updated dependencies [41daa63]
|
|
12
|
+
- Updated dependencies [254a36b]
|
|
13
|
+
- Updated dependencies [0b89602]
|
|
14
|
+
- Updated dependencies [4d37822]
|
|
15
|
+
- Updated dependencies [ff9c125]
|
|
16
|
+
- Updated dependencies [d5cc460]
|
|
17
|
+
- Updated dependencies [b8efbb9]
|
|
18
|
+
- Updated dependencies [71466e7]
|
|
19
|
+
- Updated dependencies [0c99fbe]
|
|
20
|
+
- @mastra/core@0.12.0-alpha.2
|
|
21
|
+
- @mastra/deployer@0.12.0-alpha.2
|
|
22
|
+
|
|
3
23
|
## 0.11.2-alpha.0
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -278,25 +298,5 @@
|
|
|
278
298
|
### Patch Changes
|
|
279
299
|
|
|
280
300
|
- d9b26b5: dependencies updates:
|
|
281
|
-
- Updated dependency [`rollup@^4.44.2` ↗︎](https://www.npmjs.com/package/rollup/v/4.44.2) (from `^4.43.0`, in `dependencies`)
|
|
282
|
-
- Updated dependencies [2873c7f]
|
|
283
|
-
- Updated dependencies [1c1c6a1]
|
|
284
|
-
- Updated dependencies [2873c7f]
|
|
285
|
-
- Updated dependencies [1c1c6a1]
|
|
286
|
-
- Updated dependencies [d9b26b5]
|
|
287
|
-
- Updated dependencies [565cc0c]
|
|
288
|
-
- Updated dependencies [18ca936]
|
|
289
|
-
- @mastra/core@0.10.11-alpha.2
|
|
290
|
-
- @mastra/deployer@0.10.11-alpha.2
|
|
291
|
-
|
|
292
|
-
## 0.10.11-alpha.0
|
|
293
|
-
|
|
294
|
-
### Patch Changes
|
|
295
|
-
|
|
296
|
-
- bc40cdd: dependencies updates:
|
|
297
|
-
- Updated dependency [`@babel/core@^7.27.7` ↗︎](https://www.npmjs.com/package/@babel/core/v/7.27.7) (from `^7.27.4`, in `dependencies`)
|
|
298
|
-
- Updated dependencies [bc40cdd]
|
|
299
|
-
- Updated dependencies [f8ce2cc]
|
|
300
|
-
- Updated dependencies [8c846b6]
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 2961 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 0.12.0-alpha.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9802f42: Added types and tests to ensure client-js and hono endpoints can save memory messages where the input is either a v1 or v2 mastra message
|
|
8
|
+
- Updated dependencies [9802f42]
|
|
9
|
+
- @mastra/server@0.12.0-alpha.3
|
|
10
|
+
- @mastra/core@0.12.0-alpha.3
|
|
11
|
+
|
|
12
|
+
## 0.12.0-alpha.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 27cc97a: dependencies updates:
|
|
17
|
+
- Updated dependency [`hono@^4.8.9` ↗︎](https://www.npmjs.com/package/hono/v/4.8.9) (from `^4.8.4`, in `dependencies`)
|
|
18
|
+
- ff9c125: enhance thread retrieval with sorting options in libsql and pg
|
|
19
|
+
- d5cc460: This change implements a fix to sourcemap mappings being off due to `removeDeployer` Babel plugin missing source map config.
|
|
20
|
+
- b8efbb9: feat: add flexible deleteMessages method to memory API
|
|
21
|
+
- Added `memory.deleteMessages(input)` method that accepts multiple input types:
|
|
22
|
+
- Single message ID as string: `deleteMessages('msg-123')`
|
|
23
|
+
- Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
|
|
24
|
+
- Message object with id property: `deleteMessages({ id: 'msg-123' })`
|
|
25
|
+
- Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
|
|
26
|
+
- Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
|
|
27
|
+
- Added REST API endpoint: `POST /api/memory/messages/delete`
|
|
28
|
+
- Updated client SDK: `thread.deleteMessages()` accepts all input types
|
|
29
|
+
- Updates thread timestamps when messages are deleted
|
|
30
|
+
- Added comprehensive test coverage and documentation
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [27cc97a]
|
|
33
|
+
- Updated dependencies [41daa63]
|
|
34
|
+
- Updated dependencies [254a36b]
|
|
35
|
+
- Updated dependencies [0b89602]
|
|
36
|
+
- Updated dependencies [4d37822]
|
|
37
|
+
- Updated dependencies [ff9c125]
|
|
38
|
+
- Updated dependencies [b8efbb9]
|
|
39
|
+
- Updated dependencies [71466e7]
|
|
40
|
+
- Updated dependencies [0c99fbe]
|
|
41
|
+
- @mastra/core@0.12.0-alpha.2
|
|
42
|
+
- @mastra/server@0.12.0-alpha.2
|
|
43
|
+
|
|
3
44
|
## 0.12.0-alpha.1
|
|
4
45
|
|
|
5
46
|
### Patch Changes
|
|
@@ -257,46 +298,5 @@
|
|
|
257
298
|
### Patch Changes
|
|
258
299
|
|
|
259
300
|
- Updated dependencies [4d5583d]
|
|
260
|
-
- @mastra/core@0.10.12-alpha.1
|
|
261
|
-
- @mastra/server@0.10.12-alpha.1
|
|
262
|
-
|
|
263
|
-
## 0.10.12-alpha.0
|
|
264
|
-
|
|
265
|
-
### Patch Changes
|
|
266
|
-
|
|
267
|
-
- 53e3f58: Add support for custom instrumentation files
|
|
268
|
-
- Updated dependencies [b4a9811]
|
|
269
|
-
- @mastra/core@0.10.12-alpha.0
|
|
270
|
-
- @mastra/server@0.10.12-alpha.0
|
|
271
|
-
|
|
272
|
-
## 0.10.11
|
|
273
|
-
|
|
274
|
-
### Patch Changes
|
|
275
301
|
|
|
276
|
-
|
|
277
|
-
- Updated dependency [`@babel/core@^7.27.7` ↗︎](https://www.npmjs.com/package/@babel/core/v/7.27.7) (from `^7.27.4`, in `dependencies`)
|
|
278
|
-
- 2873c7f: dependencies updates:
|
|
279
|
-
- Updated dependency [`dotenv@^16.6.1` ↗︎](https://www.npmjs.com/package/dotenv/v/16.6.1) (from `^16.5.0`, in `dependencies`)
|
|
280
|
-
- 1c1c6a1: dependencies updates:
|
|
281
|
-
- Updated dependency [`hono@^4.8.4` ↗︎](https://www.npmjs.com/package/hono/v/4.8.4) (from `^4.8.3`, in `dependencies`)
|
|
282
|
-
- d9b26b5: dependencies updates:
|
|
283
|
-
- Updated dependency [`rollup@^4.44.2` ↗︎](https://www.npmjs.com/package/rollup/v/4.44.2) (from `^4.43.0`, in `dependencies`)
|
|
284
|
-
- 18ca936: Remove require exportCondition from rollup config to improve bundling
|
|
285
|
-
- 40cd025: Check if tool is actually a tool for /api/tools
|
|
286
|
-
- Updated dependencies [2873c7f]
|
|
287
|
-
- Updated dependencies [1c1c6a1]
|
|
288
|
-
- Updated dependencies [f8ce2cc]
|
|
289
|
-
- Updated dependencies [8c846b6]
|
|
290
|
-
- Updated dependencies [c7bbf1e]
|
|
291
|
-
- Updated dependencies [8722d53]
|
|
292
|
-
- Updated dependencies [565cc0c]
|
|
293
|
-
- Updated dependencies [b790fd1]
|
|
294
|
-
- Updated dependencies [132027f]
|
|
295
|
-
- Updated dependencies [0c85311]
|
|
296
|
-
- Updated dependencies [d7ed04d]
|
|
297
|
-
- Updated dependencies [cb16baf]
|
|
298
|
-
- Updated dependencies [f36e4f1]
|
|
299
|
-
- Updated dependencies [7f6e403]
|
|
300
|
-
- @mastra/core@0.10.11
|
|
301
|
-
|
|
302
|
-
... 3045 more lines hidden. See full changelog in package directory.
|
|
302
|
+
... 3086 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @mastra/libsql
|
|
2
2
|
|
|
3
|
+
## 0.11.3-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ff9c125: enhance thread retrieval with sorting options in libsql and pg
|
|
8
|
+
- b8efbb9: feat: add flexible deleteMessages method to memory API
|
|
9
|
+
- Added `memory.deleteMessages(input)` method that accepts multiple input types:
|
|
10
|
+
- Single message ID as string: `deleteMessages('msg-123')`
|
|
11
|
+
- Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
|
|
12
|
+
- Message object with id property: `deleteMessages({ id: 'msg-123' })`
|
|
13
|
+
- Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
|
|
14
|
+
- Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
|
|
15
|
+
- Added REST API endpoint: `POST /api/memory/messages/delete`
|
|
16
|
+
- Updated client SDK: `thread.deleteMessages()` accepts all input types
|
|
17
|
+
- Updates thread timestamps when messages are deleted
|
|
18
|
+
- Added comprehensive test coverage and documentation
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [27cc97a]
|
|
21
|
+
- Updated dependencies [41daa63]
|
|
22
|
+
- Updated dependencies [254a36b]
|
|
23
|
+
- Updated dependencies [0b89602]
|
|
24
|
+
- Updated dependencies [4d37822]
|
|
25
|
+
- Updated dependencies [ff9c125]
|
|
26
|
+
- Updated dependencies [b8efbb9]
|
|
27
|
+
- Updated dependencies [71466e7]
|
|
28
|
+
- Updated dependencies [0c99fbe]
|
|
29
|
+
- @mastra/core@0.12.0-alpha.2
|
|
30
|
+
|
|
3
31
|
## 0.11.3-alpha.0
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
|
@@ -270,33 +298,5 @@
|
|
|
270
298
|
- 14a2566: Add pagination to libsql storage APIs
|
|
271
299
|
- Updated dependencies [d1ed912]
|
|
272
300
|
- Updated dependencies [f1f1f1b]
|
|
273
|
-
- Updated dependencies [f9816ae]
|
|
274
|
-
- Updated dependencies [82090c1]
|
|
275
|
-
- Updated dependencies [1b443fd]
|
|
276
|
-
- Updated dependencies [ce97900]
|
|
277
|
-
- Updated dependencies [14a2566]
|
|
278
|
-
- @mastra/core@0.10.4-alpha.0
|
|
279
|
-
|
|
280
|
-
## 0.10.1
|
|
281
|
-
|
|
282
|
-
### Patch Changes
|
|
283
301
|
|
|
284
|
-
|
|
285
|
-
- a3f1b39: feat(libsql): update thread timestamp when saving messages
|
|
286
|
-
- 9e37877: Fixes SQLITE_BUSY error often seen when working locally on the playground
|
|
287
|
-
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
288
|
-
- f0d559f: Fix peerdeps for alpha channel
|
|
289
|
-
- Updated dependencies [ee77e78]
|
|
290
|
-
- Updated dependencies [592a2db]
|
|
291
|
-
- Updated dependencies [e5dc18d]
|
|
292
|
-
- Updated dependencies [ab5adbe]
|
|
293
|
-
- Updated dependencies [1e8bb40]
|
|
294
|
-
- Updated dependencies [1b5fc55]
|
|
295
|
-
- Updated dependencies [195c428]
|
|
296
|
-
- Updated dependencies [f73e11b]
|
|
297
|
-
- Updated dependencies [37643b8]
|
|
298
|
-
- Updated dependencies [99fd6cf]
|
|
299
|
-
- Updated dependencies [c5bf1ce]
|
|
300
|
-
- Updated dependencies [add596e]
|
|
301
|
-
|
|
302
|
-
... 388 more lines hidden. See full changelog in package directory.
|
|
302
|
+
... 416 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @mastra/mcp-docs-server
|
|
2
2
|
|
|
3
|
+
## 0.13.7-alpha.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @mastra/core@0.12.0-alpha.3
|
|
8
|
+
|
|
9
|
+
## 0.13.7-alpha.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [27cc97a]
|
|
14
|
+
- Updated dependencies [41daa63]
|
|
15
|
+
- Updated dependencies [254a36b]
|
|
16
|
+
- Updated dependencies [0b89602]
|
|
17
|
+
- Updated dependencies [4d37822]
|
|
18
|
+
- Updated dependencies [ff9c125]
|
|
19
|
+
- Updated dependencies [b8efbb9]
|
|
20
|
+
- Updated dependencies [71466e7]
|
|
21
|
+
- Updated dependencies [0c99fbe]
|
|
22
|
+
- @mastra/core@0.12.0-alpha.2
|
|
23
|
+
|
|
3
24
|
## 0.13.7-alpha.1
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -277,26 +298,5 @@
|
|
|
277
298
|
- Updated dependencies [63f6b7d]
|
|
278
299
|
- Updated dependencies [36f1c36]
|
|
279
300
|
- Updated dependencies [10d352e]
|
|
280
|
-
- Updated dependencies [53d3c37]
|
|
281
|
-
- @mastra/core@0.10.6-alpha.0
|
|
282
|
-
- @mastra/mcp@0.10.4-alpha.0
|
|
283
|
-
|
|
284
|
-
## 0.13.0
|
|
285
|
-
|
|
286
|
-
### Minor Changes
|
|
287
|
-
|
|
288
|
-
- 67d56e4: include storage instance to memory config
|
|
289
|
-
|
|
290
|
-
### Patch Changes
|
|
291
|
-
|
|
292
|
-
- Updated dependencies [13c97f9]
|
|
293
|
-
- @mastra/core@0.10.5
|
|
294
|
-
|
|
295
|
-
## 0.12.0
|
|
296
|
-
|
|
297
|
-
### Minor Changes
|
|
298
|
-
|
|
299
|
-
- 3bb8b36: include storage instance to memory config
|
|
300
|
-
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 1049 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @mastra/memory
|
|
2
2
|
|
|
3
|
+
## 0.11.6-alpha.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ff9c125: enhance thread retrieval with sorting options in libsql and pg
|
|
8
|
+
- b8efbb9: feat: add flexible deleteMessages method to memory API
|
|
9
|
+
- Added `memory.deleteMessages(input)` method that accepts multiple input types:
|
|
10
|
+
- Single message ID as string: `deleteMessages('msg-123')`
|
|
11
|
+
- Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
|
|
12
|
+
- Message object with id property: `deleteMessages({ id: 'msg-123' })`
|
|
13
|
+
- Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
|
|
14
|
+
- Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
|
|
15
|
+
- Added REST API endpoint: `POST /api/memory/messages/delete`
|
|
16
|
+
- Updated client SDK: `thread.deleteMessages()` accepts all input types
|
|
17
|
+
- Updates thread timestamps when messages are deleted
|
|
18
|
+
- Added comprehensive test coverage and documentation
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [27cc97a]
|
|
21
|
+
- Updated dependencies [41daa63]
|
|
22
|
+
- Updated dependencies [254a36b]
|
|
23
|
+
- Updated dependencies [0b89602]
|
|
24
|
+
- Updated dependencies [4d37822]
|
|
25
|
+
- Updated dependencies [ff9c125]
|
|
26
|
+
- Updated dependencies [b8efbb9]
|
|
27
|
+
- Updated dependencies [71466e7]
|
|
28
|
+
- Updated dependencies [0c99fbe]
|
|
29
|
+
- @mastra/core@0.12.0-alpha.2
|
|
30
|
+
|
|
3
31
|
## 0.11.6-alpha.1
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
|
@@ -270,33 +298,5 @@
|
|
|
270
298
|
|
|
271
299
|
- 8a3bfd2: Update peerdeps to latest core
|
|
272
300
|
|
|
273
|
-
### Patch Changes
|
|
274
|
-
|
|
275
|
-
- Updated dependencies [792c4c0]
|
|
276
|
-
- Updated dependencies [502fe05]
|
|
277
|
-
- Updated dependencies [4efcfa0]
|
|
278
|
-
- @mastra/core@0.10.7-alpha.3
|
|
279
|
-
|
|
280
|
-
## 0.10.5-alpha.1
|
|
281
|
-
|
|
282
|
-
### Patch Changes
|
|
283
|
-
|
|
284
|
-
- 8e1b6e9: dependencies updates:
|
|
285
|
-
- Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
|
|
286
|
-
- 15e9d26: Added per-resource working memory for LibSQL, Upstash, and PG
|
|
287
|
-
- Updated dependencies [15e9d26]
|
|
288
|
-
- Updated dependencies [07d6d88]
|
|
289
|
-
- Updated dependencies [5d74aab]
|
|
290
|
-
- Updated dependencies [144eb0b]
|
|
291
|
-
- @mastra/core@0.10.7-alpha.2
|
|
292
|
-
|
|
293
|
-
## 0.10.5-alpha.0
|
|
294
|
-
|
|
295
|
-
### Patch Changes
|
|
296
|
-
|
|
297
|
-
- 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.
|
|
298
|
-
- Updated dependencies [d8f2d19]
|
|
299
|
-
- Updated dependencies [9d52b17]
|
|
300
|
-
- Updated dependencies [8ba1b51]
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 2444 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @mastra/mongodb
|
|
2
2
|
|
|
3
|
+
## 0.12.3-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9881232: dependencies updates:
|
|
8
|
+
- Updated dependency [`cloudflare@^4.5.0` ↗︎](https://www.npmjs.com/package/cloudflare/v/4.5.0) (from `^4.4.1`, in `dependencies`)
|
|
9
|
+
- eba48c8: Sort getThreads by updatedAt.
|
|
10
|
+
- 14456f3: fix: [MongoDB] batchInsert with process json
|
|
11
|
+
- Updated dependencies [27cc97a]
|
|
12
|
+
- Updated dependencies [41daa63]
|
|
13
|
+
- Updated dependencies [254a36b]
|
|
14
|
+
- Updated dependencies [0b89602]
|
|
15
|
+
- Updated dependencies [4d37822]
|
|
16
|
+
- Updated dependencies [ff9c125]
|
|
17
|
+
- Updated dependencies [b8efbb9]
|
|
18
|
+
- Updated dependencies [71466e7]
|
|
19
|
+
- Updated dependencies [0c99fbe]
|
|
20
|
+
- @mastra/core@0.12.0-alpha.2
|
|
21
|
+
|
|
3
22
|
## 0.12.3-alpha.0
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -279,24 +298,5 @@
|
|
|
279
298
|
### Patch Changes
|
|
280
299
|
|
|
281
300
|
- dffb67b: updated stores to add alter table and change tests
|
|
282
|
-
- e030ea3: Added missing format compatibility to MongoDB getMessages() method
|
|
283
|
-
- Updated dependencies [f6fd25f]
|
|
284
|
-
- Updated dependencies [dffb67b]
|
|
285
|
-
- Updated dependencies [f1309d3]
|
|
286
|
-
- Updated dependencies [f7f8293]
|
|
287
|
-
- @mastra/core@0.10.4-alpha.1
|
|
288
|
-
|
|
289
|
-
## 0.10.2
|
|
290
|
-
|
|
291
|
-
### Patch Changes
|
|
292
|
-
|
|
293
|
-
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
294
|
-
- f0d559f: Fix peerdeps for alpha channel
|
|
295
|
-
- Updated dependencies [ee77e78]
|
|
296
|
-
- Updated dependencies [592a2db]
|
|
297
|
-
- Updated dependencies [e5dc18d]
|
|
298
|
-
- Updated dependencies [ab5adbe]
|
|
299
|
-
- Updated dependencies [1e8bb40]
|
|
300
|
-
- Updated dependencies [1b5fc55]
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 431 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog for mastra-mssql
|
|
2
2
|
|
|
3
|
+
## 0.2.3-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4230a13: dependencies updates:
|
|
8
|
+
- Updated dependency [`mssql@^10.0.4` ↗︎](https://www.npmjs.com/package/mssql/v/10.0.4) (from `^10.0.0`, in `dependencies`)
|
|
9
|
+
- Updated dependencies [27cc97a]
|
|
10
|
+
- Updated dependencies [41daa63]
|
|
11
|
+
- Updated dependencies [254a36b]
|
|
12
|
+
- Updated dependencies [0b89602]
|
|
13
|
+
- Updated dependencies [4d37822]
|
|
14
|
+
- Updated dependencies [ff9c125]
|
|
15
|
+
- Updated dependencies [b8efbb9]
|
|
16
|
+
- Updated dependencies [71466e7]
|
|
17
|
+
- Updated dependencies [0c99fbe]
|
|
18
|
+
- @mastra/core@0.12.0-alpha.2
|
|
19
|
+
|
|
3
20
|
## 0.2.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|