@mastra/mcp-docs-server 0.13.7-alpha.1 → 0.13.7-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +29 -29
  2. package/.docs/organized/changelogs/%40mastra%2Fcloudflare-d1.md +18 -18
  3. package/.docs/organized/changelogs/%40mastra%2Fcloudflare.md +18 -18
  4. package/.docs/organized/changelogs/%40mastra%2Fcore.md +37 -37
  5. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +21 -21
  6. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +33 -33
  7. package/.docs/organized/changelogs/%40mastra%2Flibsql.md +29 -29
  8. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +16 -16
  9. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +29 -29
  10. package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +20 -20
  11. package/.docs/organized/changelogs/%40mastra%2Fmssql.md +17 -0
  12. package/.docs/organized/changelogs/%40mastra%2Fpg.md +29 -29
  13. package/.docs/organized/changelogs/%40mastra%2Fserver.md +29 -29
  14. package/.docs/organized/changelogs/%40mastra%2Fupstash.md +29 -29
  15. package/.docs/organized/changelogs/%40mastra%2Fvectorize.md +18 -18
  16. package/.docs/organized/changelogs/%40mastra%2Fvoice-cloudflare.md +18 -18
  17. package/.docs/organized/changelogs/mastra.md +21 -21
  18. package/.docs/organized/code-examples/agent.md +93 -3
  19. package/.docs/organized/code-examples/ai-sdk-v5.md +4 -4
  20. package/.docs/raw/agents/input-processors.mdx +268 -0
  21. package/.docs/raw/agents/using-tools-and-mcp.mdx +39 -0
  22. package/.docs/raw/community/contributing-templates.mdx +2 -2
  23. package/.docs/raw/observability/tracing.mdx +44 -0
  24. package/.docs/raw/reference/agents/agent.mdx +7 -0
  25. package/.docs/raw/reference/cli/dev.mdx +6 -0
  26. package/.docs/raw/reference/client-js/memory.mdx +18 -0
  27. package/.docs/raw/reference/memory/Memory.mdx +1 -0
  28. package/.docs/raw/reference/memory/deleteMessages.mdx +95 -0
  29. package/.docs/raw/reference/memory/getThreadsByResourceId.mdx +33 -1
  30. package/.docs/raw/reference/rag/upstash.mdx +112 -5
  31. package/.docs/raw/reference/scorers/answer-relevancy.mdx +0 -1
  32. package/.docs/raw/reference/scorers/faithfulness.mdx +0 -1
  33. package/.docs/raw/reference/scorers/hallucination.mdx +0 -2
  34. package/.docs/raw/reference/scorers/llm-scorer.mdx +45 -1
  35. package/.docs/raw/reference/storage/libsql.mdx +7 -4
  36. package/.docs/raw/reference/storage/mssql.mdx +7 -3
  37. package/.docs/raw/reference/storage/postgresql.mdx +7 -3
  38. package/.docs/raw/reference/templates.mdx +11 -5
  39. package/.docs/raw/scorers/custom-scorers.mdx +319 -0
  40. package/.docs/raw/scorers/off-the-shelf-scorers.mdx +30 -0
  41. package/.docs/raw/scorers/overview.mdx +124 -0
  42. package/package.json +6 -6
@@ -1,5 +1,33 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 0.10.17-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - aa2715b: process stream response error handling
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.10.17-alpha.1
4
32
 
5
33
  ### Patch Changes
@@ -270,33 +298,5 @@
270
298
  - Updated dependencies [b790fd1]
271
299
  - Updated dependencies [d7ed04d]
272
300
  - 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
301
 
302
- ... 1724 more lines hidden. See full changelog in package directory.
302
+ ... 1752 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
- ### Patch Changes
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
- ... 652 more lines hidden. See full changelog in package directory.
302
+ ... 669 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,41 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.12.0-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 27cc97a: dependencies updates:
8
+ - Updated dependency [`hono@^4.8.9` ↗︎](https://www.npmjs.com/package/hono/v/4.8.9) (from `^4.8.4`, in `dependencies`)
9
+ - 41daa63: Threads are no longer created until message generation is complete to avoid leaving orphaned empty threads in storage on failure
10
+ - 254a36b: Expose mastra instance on dynamic agent arguments
11
+ - 0b89602: Fix workflow feedback loop crashes by preventing resume data reuse
12
+
13
+ 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.
14
+
15
+ The fix ensures resume data is cleared after a step completes (non-suspended status), allowing subsequent loop iterations to properly suspend for new input.
16
+
17
+ Fixes #6014
18
+
19
+ - 4d37822: Fix workflow input property preservation after resume from snapshot
20
+
21
+ 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.
22
+
23
+ - ff9c125: enhance thread retrieval with sorting options in libsql and pg
24
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
25
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
26
+ - Single message ID as string: `deleteMessages('msg-123')`
27
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
28
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
29
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
30
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
31
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
32
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
33
+ - Updates thread timestamps when messages are deleted
34
+ - Added comprehensive test coverage and documentation
35
+
36
+ - 71466e7: Adds traceId and resourceId to telemetry spans for agent invocations
37
+ - 0c99fbe: [Feature] Add ability to include input processors to Agent primitive in order to add guardrails to incoming messages.
38
+
3
39
  ## 0.12.0-alpha.1
4
40
 
5
41
  ### Patch Changes
@@ -262,41 +298,5 @@
262
298
  - 7aa70a4: Use the right step id for nested workflow steps in watch-v2
263
299
  - 764f86a: Introduces the runCount property in the execution parameters for the steps execute function
264
300
  - 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
- ... 2280 more lines hidden. See full changelog in package directory.
302
+ ... 2316 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
- ... 2941 more lines hidden. See full changelog in package directory.
302
+ ... 2961 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,37 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.12.0-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 27cc97a: dependencies updates:
8
+ - Updated dependency [`hono@^4.8.9` ↗︎](https://www.npmjs.com/package/hono/v/4.8.9) (from `^4.8.4`, in `dependencies`)
9
+ - ff9c125: enhance thread retrieval with sorting options in libsql and pg
10
+ - d5cc460: This change implements a fix to sourcemap mappings being off due to `removeDeployer` Babel plugin missing source map config.
11
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
12
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
13
+ - Single message ID as string: `deleteMessages('msg-123')`
14
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
15
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
16
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
17
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
18
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
19
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
20
+ - Updates thread timestamps when messages are deleted
21
+ - Added comprehensive test coverage and documentation
22
+
23
+ - Updated dependencies [27cc97a]
24
+ - Updated dependencies [41daa63]
25
+ - Updated dependencies [254a36b]
26
+ - Updated dependencies [0b89602]
27
+ - Updated dependencies [4d37822]
28
+ - Updated dependencies [ff9c125]
29
+ - Updated dependencies [b8efbb9]
30
+ - Updated dependencies [71466e7]
31
+ - Updated dependencies [0c99fbe]
32
+ - @mastra/core@0.12.0-alpha.2
33
+ - @mastra/server@0.12.0-alpha.2
34
+
3
35
  ## 0.12.0-alpha.1
4
36
 
5
37
  ### Patch Changes
@@ -266,37 +298,5 @@
266
298
 
267
299
  - 53e3f58: Add support for custom instrumentation files
268
300
  - 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
- - bc40cdd: dependencies updates:
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
+ ... 3077 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
- - e5dc18d: Added a backwards compatible layer to begin storing/retrieving UIMessages in storage instead of CoreMessages
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,20 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 0.13.7-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [27cc97a]
8
+ - Updated dependencies [41daa63]
9
+ - Updated dependencies [254a36b]
10
+ - Updated dependencies [0b89602]
11
+ - Updated dependencies [4d37822]
12
+ - Updated dependencies [ff9c125]
13
+ - Updated dependencies [b8efbb9]
14
+ - Updated dependencies [71466e7]
15
+ - Updated dependencies [0c99fbe]
16
+ - @mastra/core@0.12.0-alpha.2
17
+
3
18
  ## 0.13.7-alpha.1
4
19
 
5
20
  ### Patch Changes
@@ -283,20 +298,5 @@
283
298
 
284
299
  ## 0.13.0
285
300
 
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
- ... 1028 more lines hidden. See full changelog in package directory.
302
+ ... 1043 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
- ... 2416 more lines hidden. See full changelog in package directory.
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
- ... 412 more lines hidden. See full changelog in package directory.
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