@mastra/mcp-docs-server 0.13.11 → 0.13.12-alpha.1

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/%40internal%2Fstorage-test-utils.md +19 -19
  2. package/.docs/organized/changelogs/%40internal%2Ftypes-builder.md +2 -0
  3. package/.docs/organized/changelogs/%40mastra%2Fchroma.md +14 -14
  4. package/.docs/organized/changelogs/%40mastra%2Fclickhouse.md +14 -14
  5. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +42 -42
  6. package/.docs/organized/changelogs/%40mastra%2Fcloudflare-d1.md +14 -14
  7. package/.docs/organized/changelogs/%40mastra%2Fcore.md +45 -45
  8. package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +53 -53
  9. package/.docs/organized/changelogs/%40mastra%2Fdeployer-netlify.md +49 -49
  10. package/.docs/organized/changelogs/%40mastra%2Fdeployer-vercel.md +49 -49
  11. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +54 -54
  12. package/.docs/organized/changelogs/%40mastra%2Fdynamodb.md +20 -20
  13. package/.docs/organized/changelogs/%40mastra%2Fevals.md +14 -14
  14. package/.docs/organized/changelogs/%40mastra%2Ffirecrawl.md +21 -21
  15. package/.docs/organized/changelogs/%40mastra%2Flance.md +22 -22
  16. package/.docs/organized/changelogs/%40mastra%2Flibsql.md +34 -34
  17. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +41 -41
  18. package/.docs/organized/changelogs/%40mastra%2Fmcp.md +33 -33
  19. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +23 -23
  20. package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +20 -20
  21. package/.docs/organized/changelogs/%40mastra%2Fpg.md +37 -37
  22. package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +49 -49
  23. package/.docs/organized/changelogs/%40mastra%2Fqdrant.md +21 -21
  24. package/.docs/organized/changelogs/%40mastra%2Frag.md +20 -20
  25. package/.docs/organized/changelogs/%40mastra%2Fschema-compat.md +8 -0
  26. package/.docs/organized/changelogs/%40mastra%2Fserver.md +44 -44
  27. package/.docs/organized/changelogs/%40mastra%2Fvoice-google-gemini-live.md +14 -0
  28. package/.docs/organized/changelogs/create-mastra.md +26 -26
  29. package/.docs/organized/changelogs/mastra.md +63 -63
  30. package/.docs/organized/code-examples/agent.md +292 -275
  31. package/.docs/raw/agents/input-processors.mdx +25 -19
  32. package/.docs/raw/agents/output-processors.mdx +376 -0
  33. package/.docs/raw/agents/overview.mdx +165 -188
  34. package/.docs/raw/agents/streaming.mdx +11 -5
  35. package/.docs/raw/community/contributing-templates.mdx +1 -1
  36. package/.docs/raw/deployment/cloud-providers/amazon-ec2.mdx +9 -9
  37. package/.docs/raw/deployment/cloud-providers/aws-lambda.mdx +27 -33
  38. package/.docs/raw/deployment/cloud-providers/azure-app-services.mdx +12 -12
  39. package/.docs/raw/deployment/cloud-providers/digital-ocean.mdx +17 -17
  40. package/.docs/raw/getting-started/templates.mdx +1 -1
  41. package/.docs/raw/rag/vector-databases.mdx +9 -1
  42. package/.docs/raw/reference/agents/agent.mdx +9 -3
  43. package/.docs/raw/reference/agents/generate.mdx +80 -3
  44. package/.docs/raw/reference/agents/getDefaultGenerateOptions.mdx +1 -1
  45. package/.docs/raw/reference/agents/getDefaultStreamOptions.mdx +1 -1
  46. package/.docs/raw/reference/agents/getDefaultVNextStreamOptions.mdx +1 -1
  47. package/.docs/raw/reference/agents/getLLM.mdx +1 -1
  48. package/.docs/raw/reference/agents/streamVNext.mdx +88 -5
  49. package/.docs/raw/reference/cli/scorers.mdx +160 -0
  50. package/.docs/raw/reference/rag/chroma.mdx +158 -17
  51. package/.docs/raw/reference/templates.mdx +3 -3
  52. package/.docs/raw/reference/tools/create-tool.mdx +2 -2
  53. package/.docs/raw/reference/tools/mcp-client.mdx +9 -9
  54. package/.docs/raw/reference/tools/mcp-server.mdx +5 -5
  55. package/.docs/raw/reference/workflows/branch.mdx +1 -1
  56. package/.docs/raw/reference/workflows/create-run.mdx +4 -4
  57. package/.docs/raw/reference/workflows/execute.mdx +2 -2
  58. package/.docs/raw/reference/workflows/foreach.mdx +1 -1
  59. package/.docs/raw/reference/workflows/run-methods/cancel.mdx +58 -0
  60. package/.docs/raw/reference/workflows/{resume.mdx → run-methods/resume.mdx} +7 -5
  61. package/.docs/raw/reference/workflows/{start.mdx → run-methods/start.mdx} +5 -5
  62. package/.docs/raw/reference/workflows/{stream.mdx → run-methods/stream.mdx} +6 -3
  63. package/.docs/raw/reference/workflows/{streamVNext.mdx → run-methods/streamVNext.mdx} +14 -9
  64. package/.docs/raw/reference/workflows/{watch.mdx → run-methods/watch.mdx} +12 -12
  65. package/.docs/raw/reference/workflows/run.mdx +104 -0
  66. package/.docs/raw/reference/workflows/step.mdx +0 -1
  67. package/.docs/raw/reference/workflows/workflow.mdx +3 -2
  68. package/.docs/raw/{reference/workflows → server-db}/snapshots.mdx +2 -2
  69. package/.docs/raw/voice/overview.mdx +81 -2
  70. package/.docs/raw/voice/speech-to-speech.mdx +45 -0
  71. package/.docs/raw/workflows/overview.mdx +11 -4
  72. package/.docs/raw/workflows-legacy/overview.mdx +8 -8
  73. package/package.json +4 -4
@@ -1,5 +1,23 @@
1
1
  # @internal/lint
2
2
 
3
+ ## 0.0.25
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d5330bf]
8
+ - Updated dependencies [2e74797]
9
+ - Updated dependencies [8388649]
10
+ - Updated dependencies [a239d41]
11
+ - Updated dependencies [dd94a26]
12
+ - Updated dependencies [3ba6772]
13
+ - Updated dependencies [b5cf2a3]
14
+ - Updated dependencies [2fff911]
15
+ - Updated dependencies [b32c50d]
16
+ - Updated dependencies [63449d0]
17
+ - Updated dependencies [121a3f8]
18
+ - Updated dependencies [ec510e7]
19
+ - @mastra/core@0.13.2
20
+
3
21
  ## 0.0.24
4
22
 
5
23
  ### Patch Changes
@@ -280,23 +298,5 @@
280
298
  - Updated dependencies [1e8bb40]
281
299
  - Updated dependencies [1b5fc55]
282
300
  - Updated dependencies [195c428]
283
- - Updated dependencies [f73e11b]
284
- - Updated dependencies [37643b8]
285
- - Updated dependencies [99fd6cf]
286
- - Updated dependencies [c5bf1ce]
287
- - Updated dependencies [add596e]
288
- - Updated dependencies [8dc94d8]
289
- - Updated dependencies [ecebbeb]
290
- - Updated dependencies [79d5145]
291
- - Updated dependencies [12b7002]
292
- - Updated dependencies [2901125]
293
- - @mastra/core@0.10.2
294
-
295
- ## 0.0.3
296
-
297
- ### Patch Changes
298
-
299
- - Updated dependencies [d70b807]
300
- - Updated dependencies [6d16390]
301
301
 
302
- ... 173 more lines hidden. See full changelog in package directory.
302
+ ... 191 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,7 @@
1
1
  # @internal/types-builder
2
2
 
3
+ ## 0.0.4
4
+
3
5
  ## 0.0.3
4
6
 
5
7
  ## 0.0.2
@@ -1,5 +1,18 @@
1
1
  # @mastra/chroma
2
2
 
3
+ ## 0.11.4-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 8660c1b: Updating Chroma integration and adding support for Chroma Cloud
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [a89de7e]
11
+ - Updated dependencies [cf4f357]
12
+ - Updated dependencies [a722c0b]
13
+ - Updated dependencies [3b5fec7]
14
+ - @mastra/core@0.14.0-alpha.1
15
+
3
16
  ## 0.11.3
4
17
 
5
18
  ### Patch Changes
@@ -285,18 +298,5 @@
285
298
  - Updated dependencies [b2ae5aa]
286
299
  - Updated dependencies [a7292b0]
287
300
  - Updated dependencies [0dcb9f0]
288
- - @mastra/core@0.10.0-alpha.1
289
-
290
- ## 0.2.16-alpha.0
291
-
292
- ### Patch Changes
293
-
294
- - d0ee3c6: Change all public functions and constructors in vector stores to use named args and prepare to phase out positional args
295
- - Updated dependencies [f53a6ac]
296
- - Updated dependencies [eabdcd9]
297
- - Updated dependencies [90be034]
298
- - Updated dependencies [99f050a]
299
- - Updated dependencies [d0ee3c6]
300
- - Updated dependencies [23f258c]
301
301
 
302
- ... 1726 more lines hidden. See full changelog in package directory.
302
+ ... 1739 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/clickhouse
2
2
 
3
+ ## 0.13.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - d6e39da: Load most recent snapshot from storage
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [a89de7e]
11
+ - Updated dependencies [cf4f357]
12
+ - Updated dependencies [a722c0b]
13
+ - Updated dependencies [3b5fec7]
14
+ - @mastra/core@0.14.0-alpha.1
15
+
3
16
  ## 0.13.0
4
17
 
5
18
  ### Minor Changes
@@ -285,18 +298,5 @@
285
298
  Universal implementation: Consistent behavior across all 7 storage backends (ClickHouse, Cloudflare D1, DynamoDB, MongoDB, PostgreSQL, Upstash, LibSQL)
286
299
  Performance optimized: Updates execute in parallel with message saving operations for minimal performance impact
287
300
  Backwards compatible: No breaking changes - existing code continues to work unchanged
288
- Improved conversation ordering: Chat interfaces can now properly sort threads by actual last activity
289
- This enhancement resolves the issue where active conversations appeared stale due to outdated thread timestamps, providing better conversation management and user experience in chat applications.
290
-
291
- ## 0.10.3-alpha.0
292
-
293
- ### Patch Changes
294
-
295
- - 63f6b7d: dependencies updates:
296
- - Updated dependency [`@clickhouse/client@^1.11.2` ↗︎](https://www.npmjs.com/package/@clickhouse/client/v/1.11.2) (from `^1.11.0`, in `dependencies`)
297
- - Updated dependencies [63f6b7d]
298
- - Updated dependencies [36f1c36]
299
- - Updated dependencies [10d352e]
300
- - Updated dependencies [53d3c37]
301
301
 
302
- ... 742 more lines hidden. See full changelog in package directory.
302
+ ... 755 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,46 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 0.10.22-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 6313063: Implement model switcher in playground
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [a89de7e]
11
+ - Updated dependencies [cf4f357]
12
+ - Updated dependencies [a722c0b]
13
+ - Updated dependencies [3b5fec7]
14
+ - @mastra/core@0.14.0-alpha.1
15
+
16
+ ## 0.10.22-alpha.0
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [c30bca8]
21
+ - @mastra/core@0.13.3-alpha.0
22
+
23
+ ## 0.10.21
24
+
25
+ ### Patch Changes
26
+
27
+ - a239d41: Updated A2A syntax to v0.3.0
28
+ - 96169cc: Create handler that returns providers user has keys for in their env
29
+ - ce04175: Add update agent model handler
30
+ - Updated dependencies [d5330bf]
31
+ - Updated dependencies [2e74797]
32
+ - Updated dependencies [8388649]
33
+ - Updated dependencies [a239d41]
34
+ - Updated dependencies [dd94a26]
35
+ - Updated dependencies [3ba6772]
36
+ - Updated dependencies [b5cf2a3]
37
+ - Updated dependencies [2fff911]
38
+ - Updated dependencies [b32c50d]
39
+ - Updated dependencies [63449d0]
40
+ - Updated dependencies [121a3f8]
41
+ - Updated dependencies [ec510e7]
42
+ - @mastra/core@0.13.2
43
+
3
44
  ## 0.10.21-alpha.3
4
45
 
5
46
  ### Patch Changes
@@ -257,46 +298,5 @@
257
298
 
258
299
  ### Patch Changes
259
300
 
260
- - 6bd354c: Should not send content type if body instance of FormData
261
- - b641ba3: fix: save score params
262
- - Updated dependencies [510e2c8]
263
- - Updated dependencies [2f72fb2]
264
- - Updated dependencies [3f89307]
265
- - Updated dependencies [9eda7d4]
266
- - Updated dependencies [9d49408]
267
- - Updated dependencies [2ecf658]
268
- - Updated dependencies [7a7754f]
269
- - Updated dependencies [fc92d80]
270
- - Updated dependencies [23a6a7c]
271
- - Updated dependencies [09bca64]
272
- - @mastra/core@0.12.0-alpha.0
273
-
274
- ## 0.10.16
275
-
276
- ### Patch Changes
277
-
278
- - @mastra/core@0.11.1
279
-
280
- ## 0.10.15
281
-
282
- ### Patch Changes
283
301
 
284
- - 4832752: Do not set content-type header when making POST/PUT requests without a body
285
- - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
286
- - 2affc57: Fix output type of network loop
287
- - 032cb66: ClientJS
288
- - 7827943: Handle streaming large data
289
- - 65e3395: Add Scores playground-ui and add scorer hooks
290
- - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
291
- - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
292
- - Updated dependencies [f248d53]
293
- - Updated dependencies [2affc57]
294
- - Updated dependencies [66e13e3]
295
- - Updated dependencies [edd9482]
296
- - Updated dependencies [18344d7]
297
- - Updated dependencies [9d372c2]
298
- - Updated dependencies [40c2525]
299
- - Updated dependencies [e473f27]
300
- - Updated dependencies [032cb66]
301
-
302
- ... 1967 more lines hidden. See full changelog in package directory.
302
+ ... 2008 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,18 @@
1
1
  # @mastra/cloudflare-d1
2
2
 
3
+ ## 0.12.6-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - d6e39da: Load most recent snapshot from storage
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [a89de7e]
11
+ - Updated dependencies [cf4f357]
12
+ - Updated dependencies [a722c0b]
13
+ - Updated dependencies [3b5fec7]
14
+ - @mastra/core@0.14.0-alpha.1
15
+
3
16
  ## 0.12.5
4
17
 
5
18
  ### Patch Changes
@@ -285,18 +298,5 @@
285
298
  - Updated dependencies [d8f2d19]
286
299
  - Updated dependencies [9d52b17]
287
300
  - Updated dependencies [8ba1b51]
288
- - @mastra/core@0.10.7-alpha.0
289
-
290
- ## 0.11.0
291
-
292
- ### Minor Changes
293
-
294
- - 704d1ca: Thread Timestamp Auto-Update Enhancement
295
- Added automatic thread updatedAt timestamp updates when messages are saved across all storage providers
296
- Enhanced user experience: Threads now accurately reflect their latest activity with automatic timestamp updates when new messages are added
297
- Universal implementation: Consistent behavior across all 7 storage backends (ClickHouse, Cloudflare D1, DynamoDB, MongoDB, PostgreSQL, Upstash, LibSQL)
298
- Performance optimized: Updates execute in parallel with message saving operations for minimal performance impact
299
- Backwards compatible: No breaking changes - existing code continues to work unchanged
300
- Improved conversation ordering: Chat interfaces can now properly sort threads by actual last activity
301
301
 
302
- ... 559 more lines hidden. See full changelog in package directory.
302
+ ... 572 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,49 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.14.0-alpha.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 3b5fec7: Added AIV5 support to internal MessageList, precursor to full AIV5 support in latest Mastra
8
+
9
+ ### Patch Changes
10
+
11
+ - 6faaee5: Reworks agent Processor API to include output processors. Adds structuredOutput property in agent.streamVNext and agent.generate to replace experimental_output. Move imports for processors to @mastra/core/processors. Adds 6 new output processors, BatchParts, StructuredOutputProcessor, TokenLimiter, SystemPromptScrubber, ModerationProcessor, PiiDetectorProcessor.
12
+ - 4232b14: Fix provider metadata preservation during V5 message conversions
13
+
14
+ Provider metadata (providerMetadata and callProviderMetadata) is now properly preserved when converting messages between AI SDK V5 and internal V2 formats. This ensures provider-specific information isn't lost during message transformations.
15
+
16
+ - a89de7e: Adding a new agentic loop and streaming workflow system while working towards AI SDK v5 support.
17
+ - cf4f357: When using the Cloudflare deployer you might see a `[duplicate-case]` warning. The internal cause for this was fixed.
18
+ - a722c0b: Added a patch to filter out system messages that were stored in the db via an old memory bug that was patched long ago (see issue 6689). Users upgrading from the old version that still had the bug would see errors when the memory messages were retrieved from the db
19
+
20
+ ## 0.13.3-alpha.0
21
+
22
+ ### Patch Changes
23
+
24
+ - c30bca8: Fix do while resume-suspend in simple workflow losing data
25
+
26
+ ## 0.13.2
27
+
28
+ ### Patch Changes
29
+
30
+ - d5330bf: Allow agent model to be updated after the agent is created
31
+ - 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.
32
+ - 8388649: Allow array of messages in vnext agent network
33
+ - a239d41: Updated A2A syntax to v0.3.0
34
+ - dd94a26: Dont rely on the full language model for schema compat
35
+ - 3ba6772: MastraModelInput
36
+ - b5cf2a3: make system message always available during agent calls
37
+ - 2fff911: Fix vnext working memory tool schema when model is incompatible with schema
38
+ - b32c50d: Filter scores by source
39
+ - 63449d0: Change the function signatures of `bundle`, `lint`, and internally `getToolsInputOptions` to expand the `toolsPaths` TypeScript type from `string[]` to `(string | string[])[]`.
40
+ - 121a3f8: Fixed an issue where telemetry logs were displaying promise statuses when `agent.stream` is called
41
+ - ec510e7: Tool input validation now returns errors as tool results instead of throwing, allowing agents to understand validation failures and retry with corrected parameters.
42
+ - Updated dependencies [dd94a26]
43
+ - Updated dependencies [2fff911]
44
+ - Updated dependencies [ae2eb63]
45
+ - @mastra/schema-compat@0.10.7
46
+
3
47
  ## 0.13.2-alpha.3
4
48
 
5
49
  ### Patch Changes
@@ -254,49 +298,5 @@
254
298
  - Single message ID as string: `deleteMessages('msg-123')`
255
299
  - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
256
300
  - Message object with id property: `deleteMessages({ id: 'msg-123' })`
257
- - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
258
- - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
259
- - Added REST API endpoint: `POST /api/memory/messages/delete`
260
- - Updated client SDK: `thread.deleteMessages()` accepts all input types
261
- - Updates thread timestamps when messages are deleted
262
- - Added comprehensive test coverage and documentation
263
-
264
- - 71466e7: Adds traceId and resourceId to telemetry spans for agent invocations
265
- - 0c99fbe: [Feature] Add ability to include input processors to Agent primitive in order to add guardrails to incoming messages.
266
-
267
- ## 0.12.0-alpha.1
268
-
269
- ### Patch Changes
270
-
271
- - e0f73c6: Make input optional for scorer run
272
- - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
273
- - a77c823: include PATCH method in default CORS configuration
274
-
275
- ## 0.12.0-alpha.0
276
-
277
- ### Minor Changes
278
-
279
- - 2ecf658: Added the option to provide a custom ID generator when creating an instance of Mastra. If the generator is not provided, a fallback of using UUID is used to generate IDs instead.
280
-
281
- ### Patch Changes
282
-
283
- - 510e2c8: dependencies updates:
284
- - Updated dependency [`radash@^12.1.1` ↗︎](https://www.npmjs.com/package/radash/v/12.1.1) (from `^12.1.0`, in `dependencies`)
285
- - 2f72fb2: dependencies updates:
286
- - Updated dependency [`xstate@^5.20.1` ↗︎](https://www.npmjs.com/package/xstate/v/5.20.1) (from `^5.19.4`, in `dependencies`)
287
- - 3f89307: improve registerApiRoute validation
288
- - 9eda7d4: Move createMockModel to test scope. This prevents test dependencies from leaking into production code.
289
- - 9d49408: Fix conditional branch execution after nested workflow resume. Now conditional branches properly re-evaluate their conditions during resume, ensuring only the correct branches execute.
290
- - 7a7754f: Fast follow scorers fixing input types, improve llm scorer reliability, fix ui to display scores that are 0
291
- - fc92d80: fix: GenerateReturn type
292
- - 23a6a7c: improve error message for missing memory ids
293
- - 09bca64: Log warning when telemetry is enabled but not loaded
294
-
295
- ## 0.11.1
296
-
297
- ### Patch Changes
298
-
299
- - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
300
- - 2affc57: Fix output type of network loop
301
301
 
302
- ... 2544 more lines hidden. See full changelog in package directory.
302
+ ... 2588 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,57 @@
1
1
  # @mastra/deployer-cloudflare
2
2
 
3
+ ## 0.12.1-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [bca2ba3]
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [6313063]
11
+ - Updated dependencies [a89de7e]
12
+ - Updated dependencies [cf4f357]
13
+ - Updated dependencies [a722c0b]
14
+ - Updated dependencies [3b5fec7]
15
+ - Updated dependencies [6dfc4a6]
16
+ - @mastra/deployer@0.14.0-alpha.1
17
+ - @mastra/core@0.14.0-alpha.1
18
+
19
+ ## 0.12.1-alpha.0
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [c30bca8]
24
+ - @mastra/core@0.13.3-alpha.0
25
+ - @mastra/deployer@0.13.3-alpha.0
26
+
27
+ ## 0.12.0
28
+
29
+ ### Minor Changes
30
+
31
+ - 79d34ce: improve cloudflare workers compatibility
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [d5330bf]
36
+ - Updated dependencies [aaf0224]
37
+ - Updated dependencies [2e74797]
38
+ - Updated dependencies [42cb4e9]
39
+ - Updated dependencies [8388649]
40
+ - Updated dependencies [a239d41]
41
+ - Updated dependencies [dd94a26]
42
+ - Updated dependencies [3ba6772]
43
+ - Updated dependencies [96169cc]
44
+ - Updated dependencies [b5cf2a3]
45
+ - Updated dependencies [2fff911]
46
+ - Updated dependencies [b32c50d]
47
+ - Updated dependencies [c6d2603]
48
+ - Updated dependencies [63449d0]
49
+ - Updated dependencies [121a3f8]
50
+ - Updated dependencies [ce04175]
51
+ - Updated dependencies [ec510e7]
52
+ - @mastra/core@0.13.2
53
+ - @mastra/deployer@0.13.2
54
+
3
55
  ## 0.12.0-alpha.1
4
56
 
5
57
  ### Minor Changes
@@ -246,57 +298,5 @@
246
298
 
247
299
  - d83392d: Remove scope, auth, and cloudflare client from CloudflareDeployer
248
300
 
249
- BREAKING CHANGES:
250
- - Remove `scope` property and constructor parameter
251
- - Remove `auth` parameter from constructor
252
- - Remove private `cloudflare` client property and initialization
253
- - Update `tagWorker` method to throw error directing users to Cloudflare dashboard
254
- - Remove unused Cloudflare import
255
-
256
- 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.
257
-
258
- ### Patch Changes
259
-
260
- - 7983e53: Revert cloudflare omit install deps step
261
- - Updated dependencies [f248d53]
262
- - Updated dependencies [82c6860]
263
- - Updated dependencies [2affc57]
264
- - Updated dependencies [66e13e3]
265
- - Updated dependencies [edd9482]
266
- - Updated dependencies [0938991]
267
- - Updated dependencies [18344d7]
268
- - Updated dependencies [7ba91fa]
269
- - Updated dependencies [a512ede]
270
- - Updated dependencies [35b1155]
271
- - Updated dependencies [9d372c2]
272
- - Updated dependencies [45469c5]
273
- - Updated dependencies [40c2525]
274
- - Updated dependencies [e473f27]
275
- - Updated dependencies [032cb66]
276
- - Updated dependencies [6f50efd]
277
- - Updated dependencies [24eb25c]
278
- - Updated dependencies [bf6903e]
279
- - Updated dependencies [703ac71]
280
- - Updated dependencies [a723d69]
281
- - Updated dependencies [7827943]
282
- - Updated dependencies [4c06f06]
283
- - Updated dependencies [5889a31]
284
- - Updated dependencies [bf1e7e7]
285
- - Updated dependencies [65e3395]
286
- - Updated dependencies [9de6f58]
287
- - Updated dependencies [4933192]
288
- - Updated dependencies [d1c77a4]
289
- - Updated dependencies [bea9dd1]
290
- - Updated dependencies [7983e53]
291
- - Updated dependencies [dcd4802]
292
- - Updated dependencies [cbddd18]
293
- - Updated dependencies [7ba91fa]
294
- - Updated dependencies [15ce274]
295
- - @mastra/core@0.11.0
296
- - @mastra/deployer@0.11.0
297
-
298
- ## 0.11.0-alpha.2
299
-
300
- ### Minor Changes
301
301
 
302
- ... 3152 more lines hidden. See full changelog in package directory.
302
+ ... 3204 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,53 @@
1
1
  # @mastra/deployer-netlify
2
2
 
3
+ ## 0.11.14-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [bca2ba3]
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [6313063]
11
+ - Updated dependencies [a89de7e]
12
+ - Updated dependencies [cf4f357]
13
+ - Updated dependencies [a722c0b]
14
+ - Updated dependencies [3b5fec7]
15
+ - Updated dependencies [6dfc4a6]
16
+ - @mastra/deployer@0.14.0-alpha.1
17
+ - @mastra/core@0.14.0-alpha.1
18
+
19
+ ## 0.11.14-alpha.0
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [c30bca8]
24
+ - @mastra/core@0.13.3-alpha.0
25
+ - @mastra/deployer@0.13.3-alpha.0
26
+
27
+ ## 0.11.13
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies [d5330bf]
32
+ - Updated dependencies [aaf0224]
33
+ - Updated dependencies [2e74797]
34
+ - Updated dependencies [42cb4e9]
35
+ - Updated dependencies [8388649]
36
+ - Updated dependencies [a239d41]
37
+ - Updated dependencies [dd94a26]
38
+ - Updated dependencies [3ba6772]
39
+ - Updated dependencies [96169cc]
40
+ - Updated dependencies [b5cf2a3]
41
+ - Updated dependencies [2fff911]
42
+ - Updated dependencies [b32c50d]
43
+ - Updated dependencies [c6d2603]
44
+ - Updated dependencies [63449d0]
45
+ - Updated dependencies [121a3f8]
46
+ - Updated dependencies [ce04175]
47
+ - Updated dependencies [ec510e7]
48
+ - @mastra/core@0.13.2
49
+ - @mastra/deployer@0.13.2
50
+
3
51
  ## 0.11.13-alpha.0
4
52
 
5
53
  ### Patch Changes
@@ -250,53 +298,5 @@
250
298
  - Updated dependencies [7776324]
251
299
  - Updated dependencies [0b56518]
252
300
  - Updated dependencies [db5cc15]
253
- - Updated dependencies [2ba5b76]
254
- - Updated dependencies [7b57e2c]
255
- - Updated dependencies [5237998]
256
- - Updated dependencies [c3a30de]
257
- - Updated dependencies [37c1acd]
258
- - Updated dependencies [1aa60b1]
259
- - Updated dependencies [89ec9d4]
260
- - Updated dependencies [cf3a184]
261
- - Updated dependencies [fe4bbd4]
262
- - Updated dependencies [d6bfd60]
263
- - Updated dependencies [626b0f4]
264
- - Updated dependencies [c22a91f]
265
- - Updated dependencies [f7403ab]
266
- - Updated dependencies [6c89d7f]
267
- - @mastra/deployer@0.10.15
268
- - @mastra/core@0.10.15
269
-
270
- ## 0.11.6-alpha.0
271
-
272
- ### Patch Changes
273
-
274
- - Updated dependencies [7776324]
275
- - Updated dependencies [db5cc15]
276
- - Updated dependencies [7b57e2c]
277
- - Updated dependencies [5237998]
278
- - Updated dependencies [37c1acd]
279
- - Updated dependencies [1aa60b1]
280
- - Updated dependencies [89ec9d4]
281
- - Updated dependencies [626b0f4]
282
- - Updated dependencies [c22a91f]
283
- - Updated dependencies [f7403ab]
284
- - Updated dependencies [6c89d7f]
285
- - @mastra/deployer@0.10.15-alpha.0
286
- - @mastra/core@0.10.15-alpha.0
287
-
288
- ## 0.11.5
289
-
290
- ### Patch Changes
291
-
292
- - Updated dependencies [b4a9811]
293
- - Updated dependencies [4d5583d]
294
- - Updated dependencies [53e3f58]
295
- - @mastra/core@0.10.12
296
- - @mastra/deployer@0.10.12
297
-
298
- ## 0.11.5-alpha.0
299
-
300
- ### Patch Changes
301
301
 
302
- ... 2936 more lines hidden. See full changelog in package directory.
302
+ ... 2984 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,53 @@
1
1
  # @mastra/deployer-vercel
2
2
 
3
+ ## 0.11.14-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [bca2ba3]
8
+ - Updated dependencies [6faaee5]
9
+ - Updated dependencies [4232b14]
10
+ - Updated dependencies [6313063]
11
+ - Updated dependencies [a89de7e]
12
+ - Updated dependencies [cf4f357]
13
+ - Updated dependencies [a722c0b]
14
+ - Updated dependencies [3b5fec7]
15
+ - Updated dependencies [6dfc4a6]
16
+ - @mastra/deployer@0.14.0-alpha.1
17
+ - @mastra/core@0.14.0-alpha.1
18
+
19
+ ## 0.11.14-alpha.0
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [c30bca8]
24
+ - @mastra/core@0.13.3-alpha.0
25
+ - @mastra/deployer@0.13.3-alpha.0
26
+
27
+ ## 0.11.13
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies [d5330bf]
32
+ - Updated dependencies [aaf0224]
33
+ - Updated dependencies [2e74797]
34
+ - Updated dependencies [42cb4e9]
35
+ - Updated dependencies [8388649]
36
+ - Updated dependencies [a239d41]
37
+ - Updated dependencies [dd94a26]
38
+ - Updated dependencies [3ba6772]
39
+ - Updated dependencies [96169cc]
40
+ - Updated dependencies [b5cf2a3]
41
+ - Updated dependencies [2fff911]
42
+ - Updated dependencies [b32c50d]
43
+ - Updated dependencies [c6d2603]
44
+ - Updated dependencies [63449d0]
45
+ - Updated dependencies [121a3f8]
46
+ - Updated dependencies [ce04175]
47
+ - Updated dependencies [ec510e7]
48
+ - @mastra/core@0.13.2
49
+ - @mastra/deployer@0.13.2
50
+
3
51
  ## 0.11.13-alpha.0
4
52
 
5
53
  ### Patch Changes
@@ -250,53 +298,5 @@
250
298
  - Updated dependencies [7776324]
251
299
  - Updated dependencies [0b56518]
252
300
  - Updated dependencies [db5cc15]
253
- - Updated dependencies [2ba5b76]
254
- - Updated dependencies [7b57e2c]
255
- - Updated dependencies [5237998]
256
- - Updated dependencies [c3a30de]
257
- - Updated dependencies [37c1acd]
258
- - Updated dependencies [1aa60b1]
259
- - Updated dependencies [89ec9d4]
260
- - Updated dependencies [cf3a184]
261
- - Updated dependencies [fe4bbd4]
262
- - Updated dependencies [d6bfd60]
263
- - Updated dependencies [626b0f4]
264
- - Updated dependencies [c22a91f]
265
- - Updated dependencies [f7403ab]
266
- - Updated dependencies [6c89d7f]
267
- - @mastra/deployer@0.10.15
268
- - @mastra/core@0.10.15
269
-
270
- ## 0.11.6-alpha.0
271
-
272
- ### Patch Changes
273
-
274
- - Updated dependencies [7776324]
275
- - Updated dependencies [db5cc15]
276
- - Updated dependencies [7b57e2c]
277
- - Updated dependencies [5237998]
278
- - Updated dependencies [37c1acd]
279
- - Updated dependencies [1aa60b1]
280
- - Updated dependencies [89ec9d4]
281
- - Updated dependencies [626b0f4]
282
- - Updated dependencies [c22a91f]
283
- - Updated dependencies [f7403ab]
284
- - Updated dependencies [6c89d7f]
285
- - @mastra/deployer@0.10.15-alpha.0
286
- - @mastra/core@0.10.15-alpha.0
287
-
288
- ## 0.11.5
289
-
290
- ### Patch Changes
291
-
292
- - Updated dependencies [b4a9811]
293
- - Updated dependencies [4d5583d]
294
- - Updated dependencies [53e3f58]
295
- - @mastra/core@0.10.12
296
- - @mastra/deployer@0.10.12
297
-
298
- ## 0.11.5-alpha.0
299
-
300
- ### Patch Changes
301
301
 
302
- ... 2918 more lines hidden. See full changelog in package directory.
302
+ ... 2966 more lines hidden. See full changelog in package directory.