@mastra/mcp-docs-server 0.13.11-alpha.1 → 0.13.11-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 (72) hide show
  1. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +15 -15
  2. package/.docs/organized/changelogs/%40mastra%2Fcore.md +14 -14
  3. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +22 -22
  4. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +21 -21
  5. package/.docs/organized/changelogs/%40mastra%2Fdynamodb.md +13 -13
  6. package/.docs/organized/changelogs/%40mastra%2Flance.md +15 -12
  7. package/.docs/organized/changelogs/%40mastra%2Flibsql.md +13 -13
  8. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +14 -14
  9. package/.docs/organized/changelogs/%40mastra%2Fmcp.md +13 -13
  10. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +14 -14
  11. package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +13 -13
  12. package/.docs/organized/changelogs/%40mastra%2Fpg.md +17 -17
  13. package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +18 -18
  14. package/.docs/organized/changelogs/%40mastra%2Fqdrant.md +14 -14
  15. package/.docs/organized/changelogs/%40mastra%2Fschema-compat.md +6 -0
  16. package/.docs/organized/changelogs/%40mastra%2Fserver.md +15 -15
  17. package/.docs/organized/changelogs/create-mastra.md +11 -11
  18. package/.docs/organized/changelogs/mastra.md +24 -24
  19. package/.docs/organized/code-examples/a2a.md +52 -19
  20. package/.docs/organized/code-examples/weather-agent.md +14 -0
  21. package/.docs/raw/auth/jwt.mdx +3 -1
  22. package/.docs/raw/evals/overview.mdx +8 -0
  23. package/.docs/raw/getting-started/installation.mdx +45 -7
  24. package/.docs/raw/getting-started/mcp-docs-server.mdx +3 -3
  25. package/.docs/raw/memory/overview.mdx +11 -5
  26. package/.docs/raw/reference/agents/agent.mdx +6 -2
  27. package/.docs/raw/reference/agents/generate.mdx +48 -40
  28. package/.docs/raw/reference/agents/getAgent.mdx +10 -5
  29. package/.docs/raw/reference/agents/getDefaultGenerateOptions.mdx +22 -17
  30. package/.docs/raw/reference/agents/getDefaultStreamOptions.mdx +22 -17
  31. package/.docs/raw/reference/agents/getDefaultVNextStreamOptions.mdx +22 -17
  32. package/.docs/raw/reference/agents/getDescription.mdx +9 -5
  33. package/.docs/raw/reference/agents/getInstructions.mdx +22 -17
  34. package/.docs/raw/reference/agents/getLLM.mdx +23 -18
  35. package/.docs/raw/reference/agents/getMemory.mdx +22 -17
  36. package/.docs/raw/reference/agents/getModel.mdx +22 -17
  37. package/.docs/raw/reference/agents/getScorers.mdx +22 -17
  38. package/.docs/raw/reference/agents/getTools.mdx +22 -17
  39. package/.docs/raw/reference/agents/getVoice.mdx +22 -17
  40. package/.docs/raw/reference/agents/getWorkflows.mdx +22 -17
  41. package/.docs/raw/reference/agents/stream.mdx +24 -19
  42. package/.docs/raw/reference/agents/streamVNext.mdx +18 -19
  43. package/.docs/raw/reference/storage/upstash.mdx +5 -0
  44. package/.docs/raw/reference/tools/create-tool.mdx +22 -29
  45. package/.docs/raw/reference/tools/graph-rag-tool.mdx +2 -2
  46. package/.docs/raw/reference/tools/vector-query-tool.mdx +3 -3
  47. package/.docs/raw/reference/workflows/branch.mdx +6 -6
  48. package/.docs/raw/reference/workflows/commit.mdx +5 -5
  49. package/.docs/raw/reference/workflows/create-run.mdx +28 -29
  50. package/.docs/raw/reference/workflows/dountil.mdx +5 -5
  51. package/.docs/raw/reference/workflows/dowhile.mdx +5 -5
  52. package/.docs/raw/reference/workflows/execute.mdx +83 -91
  53. package/.docs/raw/reference/workflows/foreach.mdx +5 -5
  54. package/.docs/raw/reference/workflows/map.mdx +8 -93
  55. package/.docs/raw/reference/workflows/parallel.mdx +5 -5
  56. package/.docs/raw/reference/workflows/resume.mdx +45 -47
  57. package/.docs/raw/reference/workflows/sendEvent.mdx +5 -5
  58. package/.docs/raw/reference/workflows/sleep.mdx +5 -5
  59. package/.docs/raw/reference/workflows/sleepUntil.mdx +16 -8
  60. package/.docs/raw/reference/workflows/start.mdx +42 -27
  61. package/.docs/raw/reference/workflows/step.mdx +15 -29
  62. package/.docs/raw/reference/workflows/stream.mdx +55 -205
  63. package/.docs/raw/reference/workflows/streamVNext.mdx +55 -174
  64. package/.docs/raw/reference/workflows/then.mdx +5 -5
  65. package/.docs/raw/reference/workflows/waitForEvent.mdx +5 -5
  66. package/.docs/raw/reference/workflows/watch.mdx +31 -13
  67. package/.docs/raw/reference/workflows/workflow.mdx +27 -100
  68. package/.docs/raw/scorers/overview.mdx +8 -0
  69. package/.docs/raw/server-db/local-dev-playground.mdx +16 -1
  70. package/dist/tools/__tests__/test-setup.d.ts +1 -1
  71. package/dist/tools/__tests__/test-setup.d.ts.map +1 -1
  72. package/package.json +5 -5
@@ -1,5 +1,19 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 0.10.21-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - a239d41: Updated A2A syntax to v0.3.0
8
+ - 96169cc: Create handler that returns providers user has keys for in their env
9
+ - ce04175: Add update agent model handler
10
+ - Updated dependencies [d5330bf]
11
+ - Updated dependencies [a239d41]
12
+ - Updated dependencies [b32c50d]
13
+ - Updated dependencies [121a3f8]
14
+ - Updated dependencies [ec510e7]
15
+ - @mastra/core@0.13.2-alpha.2
16
+
3
17
  ## 0.10.21-alpha.1
4
18
 
5
19
  ### Patch Changes
@@ -284,19 +298,5 @@
284
298
  - Updated dependencies [bf1e7e7]
285
299
  - Updated dependencies [65e3395]
286
300
  - Updated dependencies [4933192]
287
- - Updated dependencies [d1c77a4]
288
- - Updated dependencies [bea9dd1]
289
- - Updated dependencies [dcd4802]
290
- - Updated dependencies [cbddd18]
291
- - Updated dependencies [7ba91fa]
292
- - @mastra/core@0.11.0
293
-
294
- ## 0.10.15-alpha.3
295
-
296
- ### Patch Changes
297
-
298
- - @mastra/core@0.11.0-alpha.3
299
-
300
- ## 0.10.15-alpha.2
301
301
 
302
- ... 1946 more lines hidden. See full changelog in package directory.
302
+ ... 1960 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,17 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.13.2-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - d5330bf: Allow agent model to be updated after the agent is created
8
+ - a239d41: Updated A2A syntax to v0.3.0
9
+ - b32c50d: Filter scores by source
10
+ - 121a3f8: Fixed an issue where telemetry logs were displaying promise statuses when `agent.stream` is called
11
+ - ec510e7: Tool input validation now returns errors as tool results instead of throwing, allowing agents to understand validation failures and retry with corrected parameters.
12
+ - Updated dependencies [ae2eb63]
13
+ - @mastra/schema-compat@0.10.7-alpha.1
14
+
3
15
  ## 0.13.2-alpha.1
4
16
 
5
17
  ### Patch Changes
@@ -286,17 +298,5 @@
286
298
  - 9d372c2: Fix streamVNext error handling
287
299
  - 40c2525: Fix agent.generate error with experimental_output and clientTool
288
300
  - e473f27: Implement off the shelf Scorers
289
- - 032cb66: ClientJS
290
- - 703ac71: scores schema
291
- - a723d69: Pass workflowId through
292
- - 7827943: Handle streaming large data
293
- - 5889a31: Export storage domain types
294
- - bf1e7e7: Configure agent memory using runtimeContext
295
- - 65e3395: Add Scores playground-ui and add scorer hooks
296
- - 4933192: Update Message List to ensure correct order of message parts
297
- - d1c77a4: Scorer interface
298
- - bea9dd1: Refactor Agent class to consolidate LLM generate and stream methods and improve type safety. This includes
299
- extracting common logic into prepareLLMOptions(), enhancing type definitions, and fixing test annotations.
300
-
301
-
302
- ... 2526 more lines hidden. See full changelog in package directory.
301
+
302
+ ... 2538 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,26 @@
1
1
  # @mastra/deployer-cloudflare
2
2
 
3
+ ## 0.12.0-alpha.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 79d34ce: improve cloudflare workers compatibility
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [d5330bf]
12
+ - Updated dependencies [aaf0224]
13
+ - Updated dependencies [42cb4e9]
14
+ - Updated dependencies [a239d41]
15
+ - Updated dependencies [96169cc]
16
+ - Updated dependencies [b32c50d]
17
+ - Updated dependencies [c6d2603]
18
+ - Updated dependencies [121a3f8]
19
+ - Updated dependencies [ce04175]
20
+ - Updated dependencies [ec510e7]
21
+ - @mastra/core@0.13.2-alpha.2
22
+ - @mastra/deployer@0.13.2-alpha.2
23
+
3
24
  ## 0.11.6-alpha.0
4
25
 
5
26
  ### Patch Changes
@@ -278,25 +299,4 @@
278
299
 
279
300
  ### Minor Changes
280
301
 
281
- - d83392d: Remove scope, auth, and cloudflare client from CloudflareDeployer
282
-
283
- BREAKING CHANGES:
284
- - Remove `scope` property and constructor parameter
285
- - Remove `auth` parameter from constructor
286
- - Remove private `cloudflare` client property and initialization
287
- - Update `tagWorker` method to throw error directing users to Cloudflare dashboard
288
- - Remove unused Cloudflare import
289
-
290
- This simplifies the CloudflareDeployer API by removing external dependencies and authentication requirements. Users should now use the Cloudflare dashboard or API directly for operations that previously required the cloudflare client.
291
-
292
- ### Patch Changes
293
-
294
- - Updated dependencies [f248d53]
295
- - Updated dependencies [82c6860]
296
- - Updated dependencies [2affc57]
297
- - Updated dependencies [66e13e3]
298
- - Updated dependencies [edd9482]
299
- - Updated dependencies [18344d7]
300
- - Updated dependencies [7ba91fa]
301
-
302
- ... 3131 more lines hidden. See full changelog in package directory.
302
+ ... 3152 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,25 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.13.2-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - aaf0224: improve dev playground request detection
8
+ - 42cb4e9: Add warning message when an invalid `src/mastra/index.ts` configuration file is found
9
+ - a239d41: Updated A2A syntax to v0.3.0
10
+ - 96169cc: Create handler that returns providers user has keys for in their env
11
+ - c6d2603: Properly set baseUrl in playground when user sets the host or port in Mastra instance.
12
+ - ce04175: Add update agent model handler
13
+ - Updated dependencies [d5330bf]
14
+ - Updated dependencies [a239d41]
15
+ - Updated dependencies [b32c50d]
16
+ - Updated dependencies [f6a1ae7]
17
+ - Updated dependencies [121a3f8]
18
+ - Updated dependencies [ce04175]
19
+ - Updated dependencies [ec510e7]
20
+ - @mastra/core@0.13.2-alpha.2
21
+ - @mastra/server@0.13.2-alpha.2
22
+
3
23
  ## 0.13.2-alpha.1
4
24
 
5
25
  ### Patch Changes
@@ -278,25 +298,5 @@
278
298
 
279
299
  - a77c823: include PATCH method in default CORS configuration
280
300
  - Updated dependencies [e0f73c6]
281
- - Updated dependencies [cda801d]
282
- - Updated dependencies [a77c823]
283
- - @mastra/core@0.12.0-alpha.1
284
- - @mastra/server@0.12.0-alpha.1
285
-
286
- ## 0.12.0-alpha.0
287
-
288
- ### Patch Changes
289
-
290
- - 832691b: dependencies updates:
291
- - Updated dependency [`@babel/core@^7.28.0` ↗︎](https://www.npmjs.com/package/@babel/core/v/7.28.0) (from `^7.27.7`, in `dependencies`)
292
- - 557bb9d: dependencies updates:
293
- - Updated dependency [`esbuild@^0.25.8` ↗︎](https://www.npmjs.com/package/esbuild/v/0.25.8) (from `^0.25.5`, in `dependencies`)
294
- - bc6b44a: Extract tools import from `createHonoServer`; the function now receives tools via a prop on the `options` parameter.
295
- - 09bca64: Log warning when telemetry is enabled but not loaded
296
- - Updated dependencies [510e2c8]
297
- - Updated dependencies [2f72fb2]
298
- - Updated dependencies [3f89307]
299
- - Updated dependencies [9eda7d4]
300
- - Updated dependencies [9d49408]
301
301
 
302
- ... 3317 more lines hidden. See full changelog in package directory.
302
+ ... 3337 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,17 @@
1
1
  # @mastra/dynamodb
2
2
 
3
+ ## 0.14.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - b32c50d: Filter scores by source
8
+ - Updated dependencies [d5330bf]
9
+ - Updated dependencies [a239d41]
10
+ - Updated dependencies [b32c50d]
11
+ - Updated dependencies [121a3f8]
12
+ - Updated dependencies [ec510e7]
13
+ - @mastra/core@0.13.2-alpha.2
14
+
3
15
  ## 0.14.0
4
16
 
5
17
  ### Minor Changes
@@ -287,16 +299,4 @@
287
299
 
288
300
  ### Minor Changes
289
301
 
290
- - 8a3bfd2: Update peerdeps to latest core
291
-
292
- ### Patch Changes
293
-
294
- - Updated dependencies [792c4c0]
295
- - Updated dependencies [502fe05]
296
- - Updated dependencies [4efcfa0]
297
- - @mastra/core@0.10.7-alpha.3
298
-
299
- ## 0.11.1-alpha.2
300
-
301
-
302
- ... 337 more lines hidden. See full changelog in package directory.
302
+ ... 349 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,19 @@
1
1
  # @mastra/lance
2
2
 
3
+ ## 0.2.5-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - cc9035c: dependencies updates:
8
+ - Updated dependency [`@lancedb/lancedb@^0.21.2` ↗︎](https://www.npmjs.com/package/@lancedb/lancedb/v/0.21.2) (from `^0.18.2`, in `dependencies`)
9
+ - b32c50d: Filter scores by source
10
+ - Updated dependencies [d5330bf]
11
+ - Updated dependencies [a239d41]
12
+ - Updated dependencies [b32c50d]
13
+ - Updated dependencies [121a3f8]
14
+ - Updated dependencies [ec510e7]
15
+ - @mastra/core@0.13.2-alpha.2
16
+
3
17
  ## 0.2.4
4
18
 
5
19
  ### Patch Changes
@@ -284,16 +298,5 @@
284
298
 
285
299
  - 925ab94: added paginated functions to base class and added boilerplate and updated imports
286
300
  - Updated dependencies [925ab94]
287
- - @mastra/core@0.10.4-alpha.3
288
-
289
- ## 0.1.1-alpha.0
290
-
291
- ### Patch Changes
292
301
 
293
- - dffb67b: updated stores to add alter table and change tests
294
- - f7f8293: Added LanceDB implementations for MastraVector and MastraStorage
295
- - Updated dependencies [f6fd25f]
296
- - Updated dependencies [dffb67b]
297
- - Updated dependencies [f1309d3]
298
- - Updated dependencies [f7f8293]
299
- - @mastra/core@0.10.4-alpha.1
302
+ ... 14 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,17 @@
1
1
  # @mastra/libsql
2
2
 
3
+ ## 0.13.2-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - b32c50d: Filter scores by source
8
+ - Updated dependencies [d5330bf]
9
+ - Updated dependencies [a239d41]
10
+ - Updated dependencies [b32c50d]
11
+ - Updated dependencies [121a3f8]
12
+ - Updated dependencies [ec510e7]
13
+ - @mastra/core@0.13.2-alpha.2
14
+
3
15
  ## 0.13.1
4
16
 
5
17
  ### Patch Changes
@@ -286,17 +298,5 @@
286
298
  - Updated dependencies [4efcfa0]
287
299
  - @mastra/core@0.10.7-alpha.3
288
300
 
289
- ## 0.10.4-alpha.2
290
-
291
- ### Patch Changes
292
-
293
- - 15e9d26: Added per-resource working memory for LibSQL, Upstash, and PG
294
- - 0fb9d64: [MASTRA-4018] Update saveMessages in storage adapters to upsert messages
295
- - 144eb0b: [MASTRA-3669] Metadata Filter Types
296
- - f0150c4: Fix LibSQLStore and PgStore getMessagesPaginated implementation
297
- - Updated dependencies [15e9d26]
298
- - Updated dependencies [07d6d88]
299
- - Updated dependencies [5d74aab]
300
- - Updated dependencies [144eb0b]
301
301
 
302
- ... 545 more lines hidden. See full changelog in package directory.
302
+ ... 557 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,17 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 0.13.11-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d5330bf]
8
+ - Updated dependencies [a239d41]
9
+ - Updated dependencies [b32c50d]
10
+ - Updated dependencies [121a3f8]
11
+ - Updated dependencies [ec510e7]
12
+ - @mastra/core@0.13.2-alpha.2
13
+ - @mastra/mcp@0.10.11-alpha.0
14
+
3
15
  ## 0.13.11-alpha.1
4
16
 
5
17
  ### Patch Changes
@@ -286,17 +298,5 @@
286
298
 
287
299
  - 07c7e7e: Slimmed down the number of tokens in each code example by removing extra keys from package.json files and adding an mcp docs config file into code examples to intentionally exclude some files - for ex the agent-network example went from 1300 LOC to 300
288
300
  - f043a63: Update transaction tool to use csv format
289
- - Updated dependencies [9dda1ac]
290
- - Updated dependencies [c984582]
291
- - Updated dependencies [7e801dd]
292
- - Updated dependencies [a606c75]
293
- - Updated dependencies [7aa70a4]
294
- - Updated dependencies [764f86a]
295
- - Updated dependencies [1760a1c]
296
- - Updated dependencies [038e5ae]
297
- - Updated dependencies [7dda16a]
298
- - Updated dependencies [5ebfcdd]
299
- - Updated dependencies [b2d0c91]
300
- - Updated dependencies [4e809ad]
301
-
302
- ... 1222 more lines hidden. See full changelog in package directory.
301
+
302
+ ... 1234 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,17 @@
1
1
  # @mastra/mcp
2
2
 
3
+ ## 0.10.11-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - ec510e7: Tool input validation now returns errors as tool results instead of throwing, allowing agents to understand validation failures and retry with corrected parameters.
8
+ - Updated dependencies [d5330bf]
9
+ - Updated dependencies [a239d41]
10
+ - Updated dependencies [b32c50d]
11
+ - Updated dependencies [121a3f8]
12
+ - Updated dependencies [ec510e7]
13
+ - @mastra/core@0.13.2-alpha.2
14
+
3
15
  ## 0.10.10
4
16
 
5
17
  ### Patch Changes
@@ -286,17 +298,5 @@
286
298
  - Updated dependencies [925ab94]
287
299
  - Updated dependencies [f9816ae]
288
300
  - Updated dependencies [82090c1]
289
- - Updated dependencies [1b443fd]
290
- - Updated dependencies [ce97900]
291
- - Updated dependencies [f1309d3]
292
- - Updated dependencies [14a2566]
293
- - Updated dependencies [f7f8293]
294
- - Updated dependencies [48eddb9]
295
- - @mastra/core@0.10.4
296
-
297
- ## 0.10.3-alpha.0
298
-
299
- ### Patch Changes
300
-
301
301
 
302
- ... 1974 more lines hidden. See full changelog in package directory.
302
+ ... 1986 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 0.12.2-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d5330bf]
8
+ - Updated dependencies [a239d41]
9
+ - Updated dependencies [b32c50d]
10
+ - Updated dependencies [121a3f8]
11
+ - Updated dependencies [ec510e7]
12
+ - Updated dependencies [ae2eb63]
13
+ - @mastra/core@0.13.2-alpha.2
14
+ - @mastra/schema-compat@0.10.7-alpha.1
15
+
3
16
  ## 0.12.2-alpha.1
4
17
 
5
18
  ### Patch Changes
@@ -285,18 +298,5 @@
285
298
  - Updated dependencies [2ba5b76]
286
299
  - Updated dependencies [c3a30de]
287
300
  - Updated dependencies [cf3a184]
288
- - Updated dependencies [d6bfd60]
289
- - @mastra/core@0.10.15-alpha.1
290
-
291
- ## 0.11.3-alpha.0
292
-
293
- ### Patch Changes
294
-
295
- - 4b20131: Fixed an issue where per-resource semantic recall wouldn't always be enabled properly in agent tool calls
296
- - 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
297
- - Updated dependencies [db5cc15]
298
- - Updated dependencies [5237998]
299
- - Updated dependencies [37c1acd]
300
- - Updated dependencies [1aa60b1]
301
301
 
302
- ... 2591 more lines hidden. See full changelog in package directory.
302
+ ... 2604 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,17 @@
1
1
  # @mastra/mongodb
2
2
 
3
+ ## 0.13.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - b32c50d: Filter scores by source
8
+ - Updated dependencies [d5330bf]
9
+ - Updated dependencies [a239d41]
10
+ - Updated dependencies [b32c50d]
11
+ - Updated dependencies [121a3f8]
12
+ - Updated dependencies [ec510e7]
13
+ - @mastra/core@0.13.2-alpha.2
14
+
3
15
  ## 0.13.0
4
16
 
5
17
  ### Minor Changes
@@ -286,17 +298,5 @@
286
298
 
287
299
  ### Patch Changes
288
300
 
289
- - Updated dependencies [792c4c0]
290
- - Updated dependencies [502fe05]
291
- - Updated dependencies [4efcfa0]
292
- - @mastra/core@0.10.7-alpha.3
293
-
294
- ## 0.11.1-alpha.2
295
-
296
- ### Patch Changes
297
-
298
- - a2eceb2: fix: mongo storage trace query
299
- - 0fb9d64: [MASTRA-4018] Update saveMessages in storage adapters to upsert messages
300
- - 870f156: Parse eval result
301
301
 
302
- ... 565 more lines hidden. See full changelog in package directory.
302
+ ... 577 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,21 @@
1
1
  # @mastra/pg
2
2
 
3
+ ## 0.14.0-alpha.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 79d34ce: improve cloudflare workers compatibility
8
+
9
+ ### Patch Changes
10
+
11
+ - b32c50d: Filter scores by source
12
+ - Updated dependencies [d5330bf]
13
+ - Updated dependencies [a239d41]
14
+ - Updated dependencies [b32c50d]
15
+ - Updated dependencies [121a3f8]
16
+ - Updated dependencies [ec510e7]
17
+ - @mastra/core@0.13.2-alpha.2
18
+
3
19
  ## 0.13.3
4
20
 
5
21
  ### Patch Changes
@@ -282,21 +298,5 @@
282
298
  - Updated dependencies [2873c7f]
283
299
  - Updated dependencies [1c1c6a1]
284
300
  - Updated dependencies [f8ce2cc]
285
- - Updated dependencies [8c846b6]
286
- - Updated dependencies [c7bbf1e]
287
- - Updated dependencies [8722d53]
288
- - Updated dependencies [565cc0c]
289
- - Updated dependencies [b790fd1]
290
- - Updated dependencies [132027f]
291
- - Updated dependencies [0c85311]
292
- - Updated dependencies [d7ed04d]
293
- - Updated dependencies [cb16baf]
294
- - Updated dependencies [f36e4f1]
295
- - Updated dependencies [7f6e403]
296
- - @mastra/core@0.10.11
297
-
298
- ## 0.12.2-alpha.0
299
-
300
- ### Patch Changes
301
301
 
302
- ... 2003 more lines hidden. See full changelog in package directory.
302
+ ... 2019 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,22 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 5.1.20-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 0d32203: dependencies updates:
8
+ - Updated dependency [`zustand@^5.0.7` ↗︎](https://www.npmjs.com/package/zustand/v/5.0.7) (from `^5.0.6`, in `dependencies`)
9
+ - c6d2603: Properly set baseUrl in playground when user sets the host or port in Mastra instance.
10
+ - Updated dependencies [d5330bf]
11
+ - Updated dependencies [a239d41]
12
+ - Updated dependencies [96169cc]
13
+ - Updated dependencies [b32c50d]
14
+ - Updated dependencies [121a3f8]
15
+ - Updated dependencies [ce04175]
16
+ - Updated dependencies [ec510e7]
17
+ - @mastra/core@0.13.2-alpha.2
18
+ - @mastra/client-js@0.10.21-alpha.2
19
+
3
20
  ## 5.1.20-alpha.0
4
21
 
5
22
  ### Patch Changes
@@ -281,22 +298,5 @@
281
298
  - dd2a4c9: change the way we start the dev process of playground
282
299
  - af1f902: share thread list between agent, network and cloud
283
300
  - f6c4d75: fix date picker on change
284
- - 35b1155: Added "Semantic recall search" to playground UI chat sidebar, to search for messages and find them in the chat list
285
- - 09464dd: Share AgentMetadata component with cloud
286
- - 65e3395: Add Scores playground-ui and add scorer hooks
287
- - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
288
- - Updated dependencies [4832752]
289
- - Updated dependencies [f248d53]
290
- - Updated dependencies [2affc57]
291
- - Updated dependencies [66e13e3]
292
- - Updated dependencies [edd9482]
293
- - Updated dependencies [18344d7]
294
- - Updated dependencies [9d372c2]
295
- - Updated dependencies [40c2525]
296
- - Updated dependencies [e473f27]
297
- - Updated dependencies [032cb66]
298
- - Updated dependencies [703ac71]
299
- - Updated dependencies [a723d69]
300
- - Updated dependencies [5889a31]
301
301
 
302
- ... 2393 more lines hidden. See full changelog in package directory.
302
+ ... 2410 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/qdrant
2
2
 
3
+ ## 0.11.4-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 0885aef: dependencies updates:
8
+ - Updated dependency [`@qdrant/js-client-rest@^1.15.0` ↗︎](https://www.npmjs.com/package/@qdrant/js-client-rest/v/1.15.0) (from `^1.14.1`, in `dependencies`)
9
+ - Updated dependencies [d5330bf]
10
+ - Updated dependencies [a239d41]
11
+ - Updated dependencies [b32c50d]
12
+ - Updated dependencies [121a3f8]
13
+ - Updated dependencies [ec510e7]
14
+ - @mastra/core@0.13.2-alpha.2
15
+
3
16
  ## 0.11.3
4
17
 
5
18
  ### Patch Changes
@@ -285,18 +298,5 @@
285
298
  - Updated dependencies [90be034]
286
299
  - Updated dependencies [99f050a]
287
300
  - Updated dependencies [d0ee3c6]
288
- - Updated dependencies [23f258c]
289
- - Updated dependencies [2672a05]
290
- - @mastra/core@0.9.5-alpha.0
291
-
292
- ## 0.2.14
293
-
294
- ### Patch Changes
295
-
296
- - c3bd795: [MASTRA-3358] Deprecate updateIndexById and deleteIndexById
297
- - Updated dependencies [396be50]
298
- - Updated dependencies [ab80e7e]
299
- - Updated dependencies [c3bd795]
300
- - Updated dependencies [da082f8]
301
301
 
302
- ... 1711 more lines hidden. See full changelog in package directory.
302
+ ... 1724 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,11 @@
1
1
  # @mastra/schema-compat
2
2
 
3
+ ## 0.10.7-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ae2eb63: Handle regex checks better, return description as a string rather than an object with pattern and flags.
8
+
3
9
  ## 0.10.7-alpha.0
4
10
 
5
11
  ### Patch Changes
@@ -1,5 +1,19 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.13.2-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - a239d41: Updated A2A syntax to v0.3.0
8
+ - f6a1ae7: Return correct `agentIds` for `/api/scores/scorers` and `/api/scores/scorers/${scorerId}` endpoints
9
+ - ce04175: Add update agent model handler
10
+ - Updated dependencies [d5330bf]
11
+ - Updated dependencies [a239d41]
12
+ - Updated dependencies [b32c50d]
13
+ - Updated dependencies [121a3f8]
14
+ - Updated dependencies [ec510e7]
15
+ - @mastra/core@0.13.2-alpha.2
16
+
3
17
  ## 0.13.2-alpha.1
4
18
 
5
19
  ### Patch Changes
@@ -284,19 +298,5 @@
284
298
  - Updated dependencies [a723d69]
285
299
  - Updated dependencies [7827943]
286
300
  - Updated dependencies [5889a31]
287
- - Updated dependencies [bf1e7e7]
288
- - Updated dependencies [65e3395]
289
- - Updated dependencies [4933192]
290
- - Updated dependencies [d1c77a4]
291
- - Updated dependencies [bea9dd1]
292
- - Updated dependencies [dcd4802]
293
- - Updated dependencies [cbddd18]
294
- - Updated dependencies [7ba91fa]
295
- - @mastra/core@0.11.0
296
-
297
- ## 0.11.0-alpha.3
298
-
299
- ### Patch Changes
300
-
301
301
 
302
- ... 2742 more lines hidden. See full changelog in package directory.
302
+ ... 2756 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,15 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.10.21-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 77b6cfe: Use just modelId for gpt-5 check
8
+ - 96169cc: Create handler that returns providers user has keys for in their env
9
+ - 33da97c: Set temperature to 1 for gpt-5 model in playground
10
+ - c6d2603: Properly set baseUrl in playground when user sets the host or port in Mastra instance.
11
+ - ce04175: Add update agent model handler
12
+
3
13
  ## 0.10.21-alpha.1
4
14
 
5
15
  ## 0.10.21-alpha.0
@@ -289,14 +299,4 @@
289
299
 
290
300
  ## 0.10.5
291
301
 
292
- ### Patch Changes
293
-
294
- - 02560d4: lift evals fetching to the playground package instead
295
- - 63f6b7d: dependencies updates:
296
- - Updated dependency [`execa@^9.6.0` ↗︎](https://www.npmjs.com/package/execa/v/9.6.0) (from `^9.5.2`, in `dependencies`)
297
- - Updated dependency [`pino@^9.7.0` ↗︎](https://www.npmjs.com/package/pino/v/9.7.0) (from `^9.6.0`, in `dependencies`)
298
- - Updated dependency [`posthog-node@^4.18.0` ↗︎](https://www.npmjs.com/package/posthog-node/v/4.18.0) (from `^4.10.1`, in `dependencies`)
299
- - 5f2aa3e: Move workflow hooks to playground
300
- - 44ba52d: Add proper error message when installation of mastra fails
301
-
302
- ... 1171 more lines hidden. See full changelog in package directory.
302
+ ... 1181 more lines hidden. See full changelog in package directory.