@mastra/mcp-docs-server 1.0.0-beta.7 → 1.0.0-beta.8

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 (37) hide show
  1. package/.docs/organized/changelogs/%40mastra%2Fagent-builder.md +12 -12
  2. package/.docs/organized/changelogs/%40mastra%2Fai-sdk.md +10 -10
  3. package/.docs/organized/changelogs/%40mastra%2Fclickhouse.md +17 -17
  4. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +8 -8
  5. package/.docs/organized/changelogs/%40mastra%2Fcloudflare-d1.md +18 -18
  6. package/.docs/organized/changelogs/%40mastra%2Fcloudflare.md +17 -17
  7. package/.docs/organized/changelogs/%40mastra%2Fconvex.md +16 -0
  8. package/.docs/organized/changelogs/%40mastra%2Fcore.md +21 -21
  9. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloud.md +10 -10
  10. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +13 -13
  11. package/.docs/organized/changelogs/%40mastra%2Fdynamodb.md +17 -17
  12. package/.docs/organized/changelogs/%40mastra%2Flance.md +17 -17
  13. package/.docs/organized/changelogs/%40mastra%2Flibsql.md +17 -17
  14. package/.docs/organized/changelogs/%40mastra%2Floggers.md +29 -29
  15. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +8 -8
  16. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +10 -10
  17. package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +17 -17
  18. package/.docs/organized/changelogs/%40mastra%2Fmssql.md +17 -17
  19. package/.docs/organized/changelogs/%40mastra%2Fpg.md +21 -21
  20. package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +11 -11
  21. package/.docs/organized/changelogs/%40mastra%2Freact.md +7 -0
  22. package/.docs/organized/changelogs/%40mastra%2Fserver.md +8 -8
  23. package/.docs/organized/changelogs/%40mastra%2Fupstash.md +17 -17
  24. package/.docs/raw/guides/build-your-ui/ai-sdk-ui.mdx +381 -431
  25. package/.docs/raw/guides/getting-started/quickstart.mdx +11 -0
  26. package/.docs/raw/guides/migrations/upgrade-to-v1/workflows.mdx +31 -0
  27. package/.docs/raw/reference/ai-sdk/chat-route.mdx +127 -0
  28. package/.docs/raw/reference/ai-sdk/handle-chat-stream.mdx +117 -0
  29. package/.docs/raw/reference/ai-sdk/handle-network-stream.mdx +64 -0
  30. package/.docs/raw/reference/ai-sdk/handle-workflow-stream.mdx +116 -0
  31. package/.docs/raw/reference/ai-sdk/network-route.mdx +99 -0
  32. package/.docs/raw/reference/ai-sdk/to-ai-sdk-stream.mdx +289 -0
  33. package/.docs/raw/reference/ai-sdk/workflow-route.mdx +110 -0
  34. package/.docs/raw/server-db/custom-api-routes.mdx +5 -5
  35. package/.docs/raw/workflows/workflow-state.mdx +4 -5
  36. package/CHANGELOG.md +7 -0
  37. package/package.json +3 -3
@@ -1,5 +1,21 @@
1
1
  # @mastra/mongodb
2
2
 
3
+ ## 1.0.0-beta.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
8
+
9
+ **What Changed**
10
+ - saveScore now correctly returns scores that can be retrieved with getScoreById
11
+ - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
12
+
13
+ **Impact**
14
+ Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
15
+
16
+ - Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
17
+ - @mastra/core@1.0.0-beta.8
18
+
3
19
  ## 1.0.0-beta.4
4
20
 
5
21
  ### Minor Changes
@@ -482,21 +498,5 @@
482
498
  - Updated dependencies [8fbf79e]
483
499
  - @mastra/core@0.16.0-alpha.1
484
500
 
485
- ## 0.13.7-alpha.0
486
-
487
- ### Patch Changes
488
-
489
- - 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
490
- - Updated dependencies [fd83526]
491
- - Updated dependencies [d0b90ab]
492
- - Updated dependencies [6f5eb7a]
493
- - Updated dependencies [a01cf14]
494
- - Updated dependencies [a9e50ee]
495
- - Updated dependencies [5397eb4]
496
- - Updated dependencies [c9f4e4a]
497
- - Updated dependencies [0acbc80]
498
- - @mastra/core@0.16.0-alpha.0
499
-
500
- ## 0.13.6
501
501
 
502
- ... 1028 more lines hidden. See full changelog in package directory.
502
+ ... 1044 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,21 @@
1
1
  # @mastra/mssql
2
2
 
3
+ ## 1.0.0-beta.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
8
+
9
+ **What Changed**
10
+ - saveScore now correctly returns scores that can be retrieved with getScoreById
11
+ - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
12
+
13
+ **Impact**
14
+ Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
15
+
16
+ - Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
17
+ - @mastra/core@1.0.0-beta.8
18
+
3
19
  ## 1.0.0-beta.4
4
20
 
5
21
  ### Minor Changes
@@ -482,21 +498,5 @@
482
498
 
483
499
  - 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
484
500
  - Updated dependencies [8fbf79e]
485
- - Updated dependencies [fd83526]
486
- - Updated dependencies [d0b90ab]
487
- - Updated dependencies [6f5eb7a]
488
- - Updated dependencies [a01cf14]
489
- - Updated dependencies [a9e50ee]
490
- - Updated dependencies [5397eb4]
491
- - Updated dependencies [c9f4e4a]
492
- - Updated dependencies [0acbc80]
493
- - @mastra/core@0.16.0
494
-
495
- ## 0.4.0-alpha.1
496
-
497
- ### Minor Changes
498
-
499
- - 376913a: Update peerdeps of @mastra/core
500
-
501
501
 
502
- ... 384 more lines hidden. See full changelog in package directory.
502
+ ... 400 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,25 @@
1
1
  # @mastra/pg
2
2
 
3
+ ## 1.0.0-beta.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
8
+
9
+ **What Changed**
10
+ - saveScore now correctly returns scores that can be retrieved with getScoreById
11
+ - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
12
+
13
+ **Impact**
14
+ Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
15
+
16
+ - PostgresStore was setting `this.stores = {}` in the constructor and only populating it in the async `init()` method. This broke Memory because it checks `storage.stores.memory` synchronously in `getInputProcessors()` before `init()` is called. ([#10943](https://github.com/mastra-ai/mastra/pull/10943))
17
+
18
+ The fix moves domain instance creation to the constructor. This is safe because pg-promise creates database connections lazily when queries are executed.
19
+
20
+ - Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
21
+ - @mastra/core@1.0.0-beta.8
22
+
3
23
  ## 1.0.0-beta.4
4
24
 
5
25
  ### Minor Changes
@@ -479,24 +499,4 @@
479
499
 
480
500
  ### Minor Changes
481
501
 
482
- - Added Postgres and updated libsql storage adapters for ai-traces ([#8027](https://github.com/mastra-ai/mastra/pull/8027))
483
-
484
- ### Patch Changes
485
-
486
- - Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
487
-
488
- - Add PG Store api to fetch scores by traceId and spanId ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
489
-
490
- - add SSL support to connection string configuration ([#8178](https://github.com/mastra-ai/mastra/pull/8178))
491
-
492
- - Updated dependencies [[`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`a7243e2`](https://github.com/mastra-ai/mastra/commit/a7243e2e58762667a6e3921e755e89d6bb0a3282), [`7fceb0a`](https://github.com/mastra-ai/mastra/commit/7fceb0a327d678e812f90f5387c5bc4f38bd039e), [`df64f9e`](https://github.com/mastra-ai/mastra/commit/df64f9ef814916fff9baedd861c988084e7c41de), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`683e5a1`](https://github.com/mastra-ai/mastra/commit/683e5a1466e48b686825b2c11f84680f296138e4), [`3679378`](https://github.com/mastra-ai/mastra/commit/3679378673350aa314741dc826f837b1984149bc), [`7775bc2`](https://github.com/mastra-ai/mastra/commit/7775bc20bb1ad1ab24797fb420e4f96c65b0d8ec), [`db1891a`](https://github.com/mastra-ai/mastra/commit/db1891a4707443720b7cd8a260dc7e1d49b3609c), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`652066b`](https://github.com/mastra-ai/mastra/commit/652066bd1efc6bb6813ba950ed1d7573e8b7d9d4), [`ea8d386`](https://github.com/mastra-ai/mastra/commit/ea8d386cd8c5593664515fd5770c06bf2aa980ef), [`c2a4919`](https://github.com/mastra-ai/mastra/commit/c2a4919ba6797d8bdb1509e02287496eef69303e), [`0130986`](https://github.com/mastra-ai/mastra/commit/0130986fc62d0edcc626dd593282661dbb9af141)]:
493
- - @mastra/core@0.19.0-alpha.1
494
-
495
- ## 0.16.1
496
-
497
- ### Patch Changes
498
-
499
- - Fix PostgreSQL vector index recreation issue and add optional index configuration ([#8020](https://github.com/mastra-ai/mastra/pull/8020))
500
- - Fixed critical bug where memory vector indexes were unnecessarily recreated on every operation
501
-
502
- ... 2687 more lines hidden. See full changelog in package directory.
502
+ ... 2707 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,15 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 7.0.0-beta.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`3d3c9e7`](https://github.com/mastra-ai/mastra/commit/3d3c9e7dc0b7b291abe6a11cf3807dd130034961), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
8
+ - @mastra/core@1.0.0-beta.8
9
+ - @mastra/ai-sdk@1.0.0-beta.6
10
+ - @mastra/client-js@1.0.0-beta.8
11
+ - @mastra/react@0.1.0-beta.8
12
+
3
13
  ## 7.0.0-beta.7
4
14
 
5
15
  ### Patch Changes
@@ -488,15 +498,5 @@
488
498
  - **Breaking Changes:** ([#9045](https://github.com/mastra-ai/mastra/pull/9045))
489
499
  - Moved `generateTitle` from `threads.generateTitle` to top-level memory option
490
500
  - Changed default value from `true` to `false`
491
- - Using `threads.generateTitle` now throws an error
492
-
493
- **Migration:**
494
- Replace `threads: { generateTitle: true }` with `generateTitle: true` at the top level of memory options.
495
-
496
- **Playground:**
497
- The playground UI now displays thread IDs instead of "Chat from" when titles aren't generated.
498
-
499
- - Move some components to playground-ui for usage in cloud ([#9177](https://github.com/mastra-ai/mastra/pull/9177))
500
-
501
501
 
502
- ... 4124 more lines hidden. See full changelog in package directory.
502
+ ... 4134 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,12 @@
1
1
  # @mastra/react-hooks
2
2
 
3
+ ## 0.1.0-beta.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @mastra/client-js@1.0.0-beta.8
9
+
3
10
  ## 0.1.0-beta.7
4
11
 
5
12
  ### Patch Changes
@@ -1,5 +1,12 @@
1
1
  # @mastra/server
2
2
 
3
+ ## 1.0.0-beta.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
8
+ - @mastra/core@1.0.0-beta.8
9
+
3
10
  ## 1.0.0-beta.7
4
11
 
5
12
  ### Patch Changes
@@ -491,12 +498,5 @@
491
498
  // Running a tool in no execution context
492
499
  return doSomething(inputData.something);
493
500
  }
494
- }
495
- ```
496
-
497
- - Add the description field to listAgents ([#9672](https://github.com/mastra-ai/mastra/pull/9672))
498
-
499
- - Fix the link issue in observability ([#9764](https://github.com/mastra-ai/mastra/pull/9764))
500
-
501
501
 
502
- ... 4172 more lines hidden. See full changelog in package directory.
502
+ ... 4179 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,21 @@
1
1
  # @mastra/upstash
2
2
 
3
+ ## 1.0.0-beta.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
8
+
9
+ **What Changed**
10
+ - saveScore now correctly returns scores that can be retrieved with getScoreById
11
+ - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
12
+
13
+ **Impact**
14
+ Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
15
+
16
+ - Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
17
+ - @mastra/core@1.0.0-beta.8
18
+
3
19
  ## 1.0.0-beta.4
4
20
 
5
21
  ### Minor Changes
@@ -482,21 +498,5 @@
482
498
  - Updated dependencies [5397eb4]
483
499
  - Updated dependencies [c9f4e4a]
484
500
  - Updated dependencies [0acbc80]
485
- - @mastra/core@0.16.0-alpha.0
486
-
487
- ## 0.14.6
488
-
489
- ### Patch Changes
490
501
 
491
- - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
492
- - f0dfcac: updated core peerdep
493
- - Updated dependencies [ab48c97]
494
- - Updated dependencies [85ef90b]
495
- - Updated dependencies [aedbbfa]
496
- - Updated dependencies [ff89505]
497
- - Updated dependencies [637f323]
498
- - Updated dependencies [de3cbc6]
499
- - Updated dependencies [c19bcf7]
500
- - Updated dependencies [4474d04]
501
-
502
- ... 2282 more lines hidden. See full changelog in package directory.
502
+ ... 2298 more lines hidden. See full changelog in package directory.