@mastra/mcp-docs-server 0.13.11-alpha.0 → 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 (73) hide show
  1. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +23 -23
  2. package/.docs/organized/changelogs/%40mastra%2Fcore.md +21 -21
  3. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +22 -22
  4. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +31 -31
  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 +21 -21
  9. package/.docs/organized/changelogs/%40mastra%2Fmcp.md +13 -13
  10. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +23 -23
  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 +23 -23
  17. package/.docs/organized/changelogs/create-mastra.md +13 -13
  18. package/.docs/organized/changelogs/mastra.md +34 -34
  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/cli/build.mdx +1 -0
  44. package/.docs/raw/reference/storage/upstash.mdx +5 -0
  45. package/.docs/raw/reference/tools/create-tool.mdx +22 -29
  46. package/.docs/raw/reference/tools/graph-rag-tool.mdx +2 -2
  47. package/.docs/raw/reference/tools/vector-query-tool.mdx +3 -3
  48. package/.docs/raw/reference/workflows/branch.mdx +6 -6
  49. package/.docs/raw/reference/workflows/commit.mdx +5 -5
  50. package/.docs/raw/reference/workflows/create-run.mdx +28 -29
  51. package/.docs/raw/reference/workflows/dountil.mdx +5 -5
  52. package/.docs/raw/reference/workflows/dowhile.mdx +5 -5
  53. package/.docs/raw/reference/workflows/execute.mdx +83 -91
  54. package/.docs/raw/reference/workflows/foreach.mdx +5 -5
  55. package/.docs/raw/reference/workflows/map.mdx +8 -93
  56. package/.docs/raw/reference/workflows/parallel.mdx +5 -5
  57. package/.docs/raw/reference/workflows/resume.mdx +45 -47
  58. package/.docs/raw/reference/workflows/sendEvent.mdx +5 -5
  59. package/.docs/raw/reference/workflows/sleep.mdx +5 -5
  60. package/.docs/raw/reference/workflows/sleepUntil.mdx +16 -8
  61. package/.docs/raw/reference/workflows/start.mdx +42 -27
  62. package/.docs/raw/reference/workflows/step.mdx +15 -29
  63. package/.docs/raw/reference/workflows/stream.mdx +55 -205
  64. package/.docs/raw/reference/workflows/streamVNext.mdx +55 -174
  65. package/.docs/raw/reference/workflows/then.mdx +5 -5
  66. package/.docs/raw/reference/workflows/waitForEvent.mdx +5 -5
  67. package/.docs/raw/reference/workflows/watch.mdx +31 -13
  68. package/.docs/raw/reference/workflows/workflow.mdx +27 -100
  69. package/.docs/raw/scorers/overview.mdx +8 -0
  70. package/.docs/raw/server-db/local-dev-playground.mdx +16 -1
  71. package/dist/tools/__tests__/test-setup.d.ts +1 -1
  72. package/dist/tools/__tests__/test-setup.d.ts.map +1 -1
  73. package/package.json +4 -4
@@ -1,5 +1,27 @@
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
+
17
+ ## 0.10.21-alpha.1
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [2e74797]
22
+ - Updated dependencies [63449d0]
23
+ - @mastra/core@0.13.2-alpha.1
24
+
3
25
  ## 0.10.21-alpha.0
4
26
 
5
27
  ### Patch Changes
@@ -276,27 +298,5 @@
276
298
  - Updated dependencies [bf1e7e7]
277
299
  - Updated dependencies [65e3395]
278
300
  - Updated dependencies [4933192]
279
- - Updated dependencies [d1c77a4]
280
- - Updated dependencies [bea9dd1]
281
- - Updated dependencies [dcd4802]
282
- - Updated dependencies [cbddd18]
283
- - Updated dependencies [7ba91fa]
284
- - @mastra/core@0.11.0
285
-
286
- ## 0.10.15-alpha.3
287
-
288
- ### Patch Changes
289
-
290
- - @mastra/core@0.11.0-alpha.3
291
-
292
- ## 0.10.15-alpha.2
293
-
294
- ### Patch Changes
295
-
296
- - 4832752: Do not set content-type header when making POST/PUT requests without a body
297
- - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
298
- - 2affc57: Fix output type of network loop
299
- - 032cb66: ClientJS
300
- - 65e3395: Add Scores playground-ui and add scorer hooks
301
301
 
302
- ... 1938 more lines hidden. See full changelog in package directory.
302
+ ... 1960 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,24 @@
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
+
15
+ ## 0.13.2-alpha.1
16
+
17
+ ### Patch Changes
18
+
19
+ - 2e74797: Fix tool arguments being lost when tool-result messages arrive separately from tool-call messages or when messages are restored from database. Tool invocations now correctly preserve their arguments in all scenarios.
20
+ - 63449d0: Change the function signatures of `bundle`, `lint`, and internally `getToolsInputOptions` to expand the `toolsPaths` TypeScript type from `string[]` to `(string | string[])[]`.
21
+
3
22
  ## 0.13.2-alpha.0
4
23
 
5
24
  ### Patch Changes
@@ -279,24 +298,5 @@
279
298
  - 9d372c2: Fix streamVNext error handling
280
299
  - 40c2525: Fix agent.generate error with experimental_output and clientTool
281
300
  - e473f27: Implement off the shelf Scorers
282
- - 032cb66: ClientJS
283
- - 703ac71: scores schema
284
- - a723d69: Pass workflowId through
285
- - 7827943: Handle streaming large data
286
- - 5889a31: Export storage domain types
287
- - bf1e7e7: Configure agent memory using runtimeContext
288
- - 65e3395: Add Scores playground-ui and add scorer hooks
289
- - 4933192: Update Message List to ensure correct order of message parts
290
- - d1c77a4: Scorer interface
291
- - bea9dd1: Refactor Agent class to consolidate LLM generate and stream methods and improve type safety. This includes
292
- extracting common logic into prepareLLMOptions(), enhancing type definitions, and fixing test annotations.
293
-
294
- This changeset entry follows the established format in your project:
295
- - Targets the @mastra/core package with a patch version bump
296
- - Provides a concise description of the refactoring and type safety improvements
297
- - Mentions the key changes without being too verbose
298
-
299
- - dcd4802: scores mastra server
300
- - cbddd18: Remove erroneous reassignment of `Mastra.prototype.#vectors`
301
-
302
- ... 2519 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,35 @@
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
+
23
+ ## 0.13.2-alpha.1
24
+
25
+ ### Patch Changes
26
+
27
+ - 63449d0: Change the function signatures of `bundle`, `lint`, and internally `getToolsInputOptions` to expand the `toolsPaths` TypeScript type from `string[]` to `(string | string[])[]`.
28
+ - Updated dependencies [2e74797]
29
+ - Updated dependencies [63449d0]
30
+ - @mastra/core@0.13.2-alpha.1
31
+ - @mastra/server@0.13.2-alpha.1
32
+
3
33
  ## 0.13.2-alpha.0
4
34
 
5
35
  ### Patch Changes
@@ -268,35 +298,5 @@
268
298
 
269
299
  - a77c823: include PATCH method in default CORS configuration
270
300
  - Updated dependencies [e0f73c6]
271
- - Updated dependencies [cda801d]
272
- - Updated dependencies [a77c823]
273
- - @mastra/core@0.12.0-alpha.1
274
- - @mastra/server@0.12.0-alpha.1
275
-
276
- ## 0.12.0-alpha.0
277
-
278
- ### Patch Changes
279
-
280
- - 832691b: dependencies updates:
281
- - Updated dependency [`@babel/core@^7.28.0` ↗︎](https://www.npmjs.com/package/@babel/core/v/7.28.0) (from `^7.27.7`, in `dependencies`)
282
- - 557bb9d: dependencies updates:
283
- - Updated dependency [`esbuild@^0.25.8` ↗︎](https://www.npmjs.com/package/esbuild/v/0.25.8) (from `^0.25.5`, in `dependencies`)
284
- - bc6b44a: Extract tools import from `createHonoServer`; the function now receives tools via a prop on the `options` parameter.
285
- - 09bca64: Log warning when telemetry is enabled but not loaded
286
- - Updated dependencies [510e2c8]
287
- - Updated dependencies [2f72fb2]
288
- - Updated dependencies [3f89307]
289
- - Updated dependencies [9eda7d4]
290
- - Updated dependencies [9d49408]
291
- - Updated dependencies [2ecf658]
292
- - Updated dependencies [7a7754f]
293
- - Updated dependencies [fc92d80]
294
- - Updated dependencies [23a6a7c]
295
- - Updated dependencies [09bca64]
296
- - @mastra/core@0.12.0-alpha.0
297
- - @mastra/server@0.12.0-alpha.0
298
-
299
- ## 0.11.1
300
-
301
301
 
302
- ... 3307 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,25 @@
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
+
15
+ ## 0.13.11-alpha.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [2e74797]
20
+ - Updated dependencies [63449d0]
21
+ - @mastra/core@0.13.2-alpha.1
22
+
3
23
  ## 0.13.11-alpha.0
4
24
 
5
25
  ### Patch Changes
@@ -278,25 +298,5 @@
278
298
 
279
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
280
300
  - f043a63: Update transaction tool to use csv format
281
- - Updated dependencies [9dda1ac]
282
- - Updated dependencies [c984582]
283
- - Updated dependencies [7e801dd]
284
- - Updated dependencies [a606c75]
285
- - Updated dependencies [7aa70a4]
286
- - Updated dependencies [764f86a]
287
- - Updated dependencies [1760a1c]
288
- - Updated dependencies [038e5ae]
289
- - Updated dependencies [7dda16a]
290
- - Updated dependencies [5ebfcdd]
291
- - Updated dependencies [b2d0c91]
292
- - Updated dependencies [4e809ad]
293
- - Updated dependencies [57929df]
294
- - Updated dependencies [b7852ed]
295
- - Updated dependencies [6320a61]
296
- - @mastra/core@0.10.9
297
-
298
- ## 0.13.3-alpha.0
299
-
300
- ### Patch Changes
301
301
 
302
- ... 1214 more lines hidden. See full changelog in package directory.
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,27 @@
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
+
16
+ ## 0.12.2-alpha.1
17
+
18
+ ### Patch Changes
19
+
20
+ - da62f49: When using a schema for working memory, make that the tools schema so the agent better understands the schema.
21
+ - Updated dependencies [2e74797]
22
+ - Updated dependencies [63449d0]
23
+ - @mastra/core@0.13.2-alpha.1
24
+
3
25
  ## 0.12.2-alpha.0
4
26
 
5
27
  ### Patch Changes
@@ -276,27 +298,5 @@
276
298
  - Updated dependencies [2ba5b76]
277
299
  - Updated dependencies [c3a30de]
278
300
  - Updated dependencies [cf3a184]
279
- - Updated dependencies [d6bfd60]
280
- - @mastra/core@0.10.15-alpha.1
281
-
282
- ## 0.11.3-alpha.0
283
-
284
- ### Patch Changes
285
-
286
- - 4b20131: Fixed an issue where per-resource semantic recall wouldn't always be enabled properly in agent tool calls
287
- - 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
288
- - Updated dependencies [db5cc15]
289
- - Updated dependencies [5237998]
290
- - Updated dependencies [37c1acd]
291
- - Updated dependencies [1aa60b1]
292
- - Updated dependencies [89ec9d4]
293
- - Updated dependencies [626b0f4]
294
- - Updated dependencies [c22a91f]
295
- - Updated dependencies [f7403ab]
296
- - Updated dependencies [6c89d7f]
297
- - @mastra/core@0.10.15-alpha.0
298
-
299
- ## 0.11.2
300
-
301
301
 
302
- ... 2582 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