@mastra/mcp-docs-server 0.13.7-alpha.0 → 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 (59) hide show
  1. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +39 -39
  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 +45 -45
  5. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +21 -21
  6. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +44 -44
  7. package/.docs/organized/changelogs/%40mastra%2Fevals.md +11 -11
  8. package/.docs/organized/changelogs/%40mastra%2Flibsql.md +29 -29
  9. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +25 -25
  10. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +39 -39
  11. package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +20 -20
  12. package/.docs/organized/changelogs/%40mastra%2Fmssql.md +17 -0
  13. package/.docs/organized/changelogs/%40mastra%2Fpg.md +29 -29
  14. package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +12 -12
  15. package/.docs/organized/changelogs/%40mastra%2Fserver.md +38 -38
  16. package/.docs/organized/changelogs/%40mastra%2Fupstash.md +29 -29
  17. package/.docs/organized/changelogs/%40mastra%2Fvectorize.md +18 -18
  18. package/.docs/organized/changelogs/%40mastra%2Fvoice-cloudflare.md +18 -18
  19. package/.docs/organized/changelogs/create-mastra.md +7 -7
  20. package/.docs/organized/changelogs/mastra.md +32 -32
  21. package/.docs/organized/code-examples/agent.md +93 -3
  22. package/.docs/organized/code-examples/ai-sdk-v5.md +4 -4
  23. package/.docs/raw/agents/input-processors.mdx +268 -0
  24. package/.docs/raw/agents/using-tools-and-mcp.mdx +39 -0
  25. package/.docs/raw/community/contributing-templates.mdx +192 -0
  26. package/.docs/raw/getting-started/installation.mdx +16 -0
  27. package/.docs/raw/getting-started/templates.mdx +95 -0
  28. package/.docs/raw/observability/tracing.mdx +44 -0
  29. package/.docs/raw/reference/agents/agent.mdx +7 -0
  30. package/.docs/raw/reference/agents/generate.mdx +18 -1
  31. package/.docs/raw/reference/agents/stream.mdx +18 -1
  32. package/.docs/raw/reference/cli/dev.mdx +6 -0
  33. package/.docs/raw/reference/client-js/memory.mdx +18 -0
  34. package/.docs/raw/reference/core/mastra-class.mdx +1 -1
  35. package/.docs/raw/reference/memory/Memory.mdx +1 -0
  36. package/.docs/raw/reference/memory/deleteMessages.mdx +95 -0
  37. package/.docs/raw/reference/memory/getThreadsByResourceId.mdx +33 -1
  38. package/.docs/raw/reference/rag/upstash.mdx +112 -5
  39. package/.docs/raw/reference/scorers/answer-relevancy.mdx +114 -0
  40. package/.docs/raw/reference/scorers/bias.mdx +127 -0
  41. package/.docs/raw/reference/scorers/completeness.mdx +89 -0
  42. package/.docs/raw/reference/scorers/content-similarity.mdx +96 -0
  43. package/.docs/raw/reference/scorers/custom-code-scorer.mdx +155 -0
  44. package/.docs/raw/reference/scorers/faithfulness.mdx +122 -0
  45. package/.docs/raw/reference/scorers/hallucination.mdx +133 -0
  46. package/.docs/raw/reference/scorers/keyword-coverage.mdx +92 -0
  47. package/.docs/raw/reference/scorers/llm-scorer.mdx +210 -0
  48. package/.docs/raw/reference/scorers/mastra-scorer.mdx +218 -0
  49. package/.docs/raw/reference/scorers/textual-difference.mdx +76 -0
  50. package/.docs/raw/reference/scorers/tone-consistency.mdx +75 -0
  51. package/.docs/raw/reference/scorers/toxicity.mdx +109 -0
  52. package/.docs/raw/reference/storage/libsql.mdx +7 -4
  53. package/.docs/raw/reference/storage/mssql.mdx +7 -3
  54. package/.docs/raw/reference/storage/postgresql.mdx +7 -3
  55. package/.docs/raw/reference/templates.mdx +228 -0
  56. package/.docs/raw/scorers/custom-scorers.mdx +319 -0
  57. package/.docs/raw/scorers/off-the-shelf-scorers.mdx +30 -0
  58. package/.docs/raw/scorers/overview.mdx +124 -0
  59. package/package.json +4 -4
@@ -1,5 +1,43 @@
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
+
31
+ ## 0.10.17-alpha.1
32
+
33
+ ### Patch Changes
34
+
35
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
36
+ - Updated dependencies [e0f73c6]
37
+ - Updated dependencies [cda801d]
38
+ - Updated dependencies [a77c823]
39
+ - @mastra/core@0.12.0-alpha.1
40
+
3
41
  ## 0.10.17-alpha.0
4
42
 
5
43
  ### Patch Changes
@@ -260,43 +298,5 @@
260
298
  - Updated dependencies [b790fd1]
261
299
  - Updated dependencies [d7ed04d]
262
300
  - Updated dependencies [f36e4f1]
263
- - @mastra/core@0.10.11-alpha.0
264
-
265
- ## 0.10.9
266
-
267
- ### Patch Changes
268
-
269
- - b60f510: Fix getWorkflowRuns by limit and offset
270
- - 6997af1: add send event to server, deployer, client-js and playground-ui
271
- - Updated dependencies [4d3fbdf]
272
- - @mastra/core@0.10.10
273
-
274
- ## 0.10.9-alpha.1
275
-
276
- ### Patch Changes
277
-
278
- - b60f510: Fix getWorkflowRuns by limit and offset
279
- - 6997af1: add send event to server, deployer, client-js and playground-ui
280
- - @mastra/core@0.10.10-alpha.1
281
-
282
- ## 0.10.9-alpha.0
283
-
284
- ### Patch Changes
285
-
286
- - Updated dependencies [4d3fbdf]
287
- - @mastra/core@0.10.10-alpha.0
288
-
289
- ## 0.10.8
290
-
291
- ### Patch Changes
292
-
293
- - 9047bda: clientTools - stream tool-result part
294
- - a606c75: show right suspend schema for nested workflow on playground
295
- - 1760a1c: Use workflow stream in playground instead of watch
296
- - 038e5ae: Add cancel workflow run
297
- - 7e801dd: Add tools to network api response
298
- - Updated dependencies [9dda1ac]
299
- - Updated dependencies [c984582]
300
- - Updated dependencies [7e801dd]
301
301
 
302
- ... 1714 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,49 @@
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
+
39
+ ## 0.12.0-alpha.1
40
+
41
+ ### Patch Changes
42
+
43
+ - e0f73c6: Make input optional for scorer run
44
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
45
+ - a77c823: include PATCH method in default CORS configuration
46
+
3
47
  ## 0.12.0-alpha.0
4
48
 
5
49
  ### Minor Changes
@@ -254,49 +298,5 @@
254
298
  - 7aa70a4: Use the right step id for nested workflow steps in watch-v2
255
299
  - 764f86a: Introduces the runCount property in the execution parameters for the steps execute function
256
300
  - 1760a1c: Use workflow stream in playground instead of watch
257
- - 038e5ae: Add cancel workflow run
258
- - 7dda16a: Agent Network: Prompting improvements for better decisions
259
- - 5ebfcdd: Fix MessageList toUIMessage to filter out tool invocations with state="call" or "partial-call"
260
- - b2d0c91: Made title generation a blocking operation to prevent issues where the process might close before the title is generated
261
- - 4e809ad: Visualizations for .sleep()/.sleepUntil()/.waitForEvent()
262
- - 57929df: [MASTRA-4143[ change message-list and agent network display
263
- - b7852ed: [MASTRA-4139] make private functions protected in memory
264
- - 6320a61: Allow passing model to generateTitle to override default model selection.
265
-
266
- ## 0.10.9-alpha.0
267
-
268
- ### Patch Changes
269
-
270
- - 9dda1ac: dependencies updates:
271
- - Updated dependency [`hono@^4.8.3` ↗︎](https://www.npmjs.com/package/hono/v/4.8.3) (from `^4.7.11`, in `dependencies`)
272
- - c984582: Improve error messages for invalid message content in MessageList
273
- - 7e801dd: [MASTRA-4118] fixes issue with agent network loopStream where subsequent messages aren't present in playground on refresh
274
- - a606c75: show right suspend schema for nested workflow on playground
275
- - 7aa70a4: Use the right step id for nested workflow steps in watch-v2
276
- - 764f86a: Introduces the runCount property in the execution parameters for the steps execute function
277
- - 1760a1c: Use workflow stream in playground instead of watch
278
- - 038e5ae: Add cancel workflow run
279
- - 7dda16a: Agent Network: Prompting improvements for better decisions
280
- - 5ebfcdd: Fix MessageList toUIMessage to filter out tool invocations with state="call" or "partial-call"
281
- - b2d0c91: Made title generation a blocking operation to prevent issues where the process might close before the title is generated
282
- - 4e809ad: Visualizations for .sleep()/.sleepUntil()/.waitForEvent()
283
- - 57929df: [MASTRA-4143[ change message-list and agent network display
284
- - b7852ed: [MASTRA-4139] make private functions protected in memory
285
- - 6320a61: Allow passing model to generateTitle to override default model selection.
286
-
287
- ## 0.10.8
288
-
289
- ### Patch Changes
290
-
291
- - b8f16b2: Fixes generateTitle overwriting working memory when both get used in the same LLM response cycle.
292
- - 3e04487: Fix provider tools to check for output schema before attaching to tool
293
- - a344ac7: Fix tool streaming in agent network
294
- - dc4ca0a: Fixed a regression where intentionally serialized JSON message content was being parsed back into an object by MessageList
295
-
296
- ## 0.10.8-alpha.1
297
-
298
- ### Patch Changes
299
-
300
- - b8f16b2: Fixes generateTitle overwriting working memory when both get used in the same LLM response cycle.
301
301
 
302
- ... 2272 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,48 @@
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
+
35
+ ## 0.12.0-alpha.1
36
+
37
+ ### Patch Changes
38
+
39
+ - a77c823: include PATCH method in default CORS configuration
40
+ - Updated dependencies [e0f73c6]
41
+ - Updated dependencies [cda801d]
42
+ - Updated dependencies [a77c823]
43
+ - @mastra/core@0.12.0-alpha.1
44
+ - @mastra/server@0.12.0-alpha.1
45
+
3
46
  ## 0.12.0-alpha.0
4
47
 
5
48
  ### Patch Changes
@@ -255,48 +298,5 @@
255
298
 
256
299
  - 53e3f58: Add support for custom instrumentation files
257
300
  - Updated dependencies [b4a9811]
258
- - @mastra/core@0.10.12-alpha.0
259
- - @mastra/server@0.10.12-alpha.0
260
-
261
- ## 0.10.11
262
-
263
- ### Patch Changes
264
-
265
- - bc40cdd: dependencies updates:
266
- - Updated dependency [`@babel/core@^7.27.7` ↗︎](https://www.npmjs.com/package/@babel/core/v/7.27.7) (from `^7.27.4`, in `dependencies`)
267
- - 2873c7f: dependencies updates:
268
- - Updated dependency [`dotenv@^16.6.1` ↗︎](https://www.npmjs.com/package/dotenv/v/16.6.1) (from `^16.5.0`, in `dependencies`)
269
- - 1c1c6a1: dependencies updates:
270
- - Updated dependency [`hono@^4.8.4` ↗︎](https://www.npmjs.com/package/hono/v/4.8.4) (from `^4.8.3`, in `dependencies`)
271
- - d9b26b5: dependencies updates:
272
- - Updated dependency [`rollup@^4.44.2` ↗︎](https://www.npmjs.com/package/rollup/v/4.44.2) (from `^4.43.0`, in `dependencies`)
273
- - 18ca936: Remove require exportCondition from rollup config to improve bundling
274
- - 40cd025: Check if tool is actually a tool for /api/tools
275
- - Updated dependencies [2873c7f]
276
- - Updated dependencies [1c1c6a1]
277
- - Updated dependencies [f8ce2cc]
278
- - Updated dependencies [8c846b6]
279
- - Updated dependencies [c7bbf1e]
280
- - Updated dependencies [8722d53]
281
- - Updated dependencies [565cc0c]
282
- - Updated dependencies [b790fd1]
283
- - Updated dependencies [132027f]
284
- - Updated dependencies [0c85311]
285
- - Updated dependencies [d7ed04d]
286
- - Updated dependencies [cb16baf]
287
- - Updated dependencies [f36e4f1]
288
- - Updated dependencies [7f6e403]
289
- - @mastra/core@0.10.11
290
- - @mastra/server@0.10.11
291
-
292
- ## 0.10.11-alpha.4
293
-
294
- ### Patch Changes
295
-
296
- - 40cd025: Check if tool is actually a tool for /api/tools
297
- - @mastra/core@0.10.11-alpha.4
298
- - @mastra/server@0.10.11-alpha.4
299
-
300
- ## 0.10.11-alpha.3
301
301
 
302
- ... 3034 more lines hidden. See full changelog in package directory.
302
+ ... 3077 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,15 @@
1
1
  # @mastra/evals
2
2
 
3
+ ## 0.10.8-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - e0f73c6: Make input optional for scorer run
8
+ - Updated dependencies [e0f73c6]
9
+ - Updated dependencies [cda801d]
10
+ - Updated dependencies [a77c823]
11
+ - @mastra/core@0.12.0-alpha.1
12
+
3
13
  ## 0.10.8-alpha.0
4
14
 
5
15
  ### Patch Changes
@@ -288,15 +298,5 @@
288
298
 
289
299
  - 83da932: Move @mastra/core to peerdeps
290
300
 
291
- ### Patch Changes
292
-
293
- - Updated dependencies [b3a3d63]
294
- - Updated dependencies [344f453]
295
- - Updated dependencies [0a3ae6d]
296
- - Updated dependencies [95911be]
297
- - Updated dependencies [5eb5a99]
298
- - Updated dependencies [7e632c5]
299
- - Updated dependencies [1e9fbfa]
300
- - Updated dependencies [b2ae5aa]
301
301
 
302
- ... 1788 more lines hidden. See full changelog in package directory.
302
+ ... 1798 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,29 @@
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
+
18
+ ## 0.13.7-alpha.1
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [e0f73c6]
23
+ - Updated dependencies [cda801d]
24
+ - Updated dependencies [a77c823]
25
+ - @mastra/core@0.12.0-alpha.1
26
+
3
27
  ## 0.13.7-alpha.0
4
28
 
5
29
  ### Patch Changes
@@ -274,29 +298,5 @@
274
298
 
275
299
  ## 0.13.0
276
300
 
277
- ### Minor Changes
278
-
279
- - 67d56e4: include storage instance to memory config
280
-
281
- ### Patch Changes
282
-
283
- - Updated dependencies [13c97f9]
284
- - @mastra/core@0.10.5
285
-
286
- ## 0.12.0
287
-
288
- ### Minor Changes
289
-
290
- - 3bb8b36: include storage instance to memory config
291
-
292
- ### Patch Changes
293
-
294
- - 1ccccff: dependencies updates:
295
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
296
- - 1ccccff: dependencies updates:
297
- - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
298
- - 26f0031: Removed @latest from @mastra/mcp-docs-server scaffolded configuration for Windsurf/Cursor/VSCode. There is an npx caching issue that causes @latest to break the MCP server for many users, and for now removing @latest makes it work. We will debug this more but for now having a working docs server is more important than it updating every time users start their IDE.
299
- - Updated dependencies [d1ed912]
300
- - Updated dependencies [f6fd25f]
301
301
 
302
- ... 1019 more lines hidden. See full changelog in package directory.
302
+ ... 1043 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,43 @@
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
+
31
+ ## 0.11.6-alpha.1
32
+
33
+ ### Patch Changes
34
+
35
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
36
+ - Updated dependencies [e0f73c6]
37
+ - Updated dependencies [cda801d]
38
+ - Updated dependencies [a77c823]
39
+ - @mastra/core@0.12.0-alpha.1
40
+
3
41
  ## 0.11.6-alpha.0
4
42
 
5
43
  ### Patch Changes
@@ -260,43 +298,5 @@
260
298
 
261
299
  - 8a3bfd2: Update peerdeps to latest core
262
300
 
263
- ### Patch Changes
264
-
265
- - Updated dependencies [792c4c0]
266
- - Updated dependencies [502fe05]
267
- - Updated dependencies [4efcfa0]
268
- - @mastra/core@0.10.7-alpha.3
269
-
270
- ## 0.10.5-alpha.1
271
-
272
- ### Patch Changes
273
-
274
- - 8e1b6e9: dependencies updates:
275
- - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
276
- - 15e9d26: Added per-resource working memory for LibSQL, Upstash, and PG
277
- - Updated dependencies [15e9d26]
278
- - Updated dependencies [07d6d88]
279
- - Updated dependencies [5d74aab]
280
- - Updated dependencies [144eb0b]
281
- - @mastra/core@0.10.7-alpha.2
282
-
283
- ## 0.10.5-alpha.0
284
-
285
- ### Patch Changes
286
-
287
- - 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.
288
- - Updated dependencies [d8f2d19]
289
- - Updated dependencies [9d52b17]
290
- - Updated dependencies [8ba1b51]
291
- - @mastra/core@0.10.7-alpha.0
292
-
293
- ## 0.10.4
294
-
295
- ### Patch Changes
296
-
297
- - 4051477: dependencies updates:
298
- - Added dependency [`zod-to-json-schema@^3.24.5` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.5) (to `dependencies`)
299
- - 63f6b7d: dependencies updates:
300
- - Updated dependency [`@upstash/redis@^1.35.0` ↗︎](https://www.npmjs.com/package/@upstash/redis/v/1.35.0) (from `^1.34.5`, in `dependencies`)
301
301
 
302
- ... 2406 more lines hidden. See full changelog in package directory.
302
+ ... 2444 more lines hidden. See full changelog in package directory.