@mastra/mcp-docs-server 0.13.1-alpha.0 → 0.13.1-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.
- package/.docs/organized/changelogs/%40mastra%2Fclickhouse.md +15 -15
- package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +44 -44
- package/.docs/organized/changelogs/%40mastra%2Fcloudflare-d1.md +15 -15
- package/.docs/organized/changelogs/%40mastra%2Fcore.md +37 -37
- package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloudflare.md +53 -53
- package/.docs/organized/changelogs/%40mastra%2Fdeployer-netlify.md +53 -53
- package/.docs/organized/changelogs/%40mastra%2Fdeployer-vercel.md +54 -54
- package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +63 -63
- package/.docs/organized/changelogs/%40mastra%2Fdynamodb.md +40 -0
- package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +19 -19
- package/.docs/organized/changelogs/%40mastra%2Fmcp-registry-registry.md +24 -24
- package/.docs/organized/changelogs/%40mastra%2Fmcp.md +8 -8
- package/.docs/organized/changelogs/%40mastra%2Fmemory.md +13 -13
- package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +14 -14
- package/.docs/organized/changelogs/%40mastra%2Fpg.md +31 -31
- package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +50 -50
- package/.docs/organized/changelogs/%40mastra%2Fserver.md +47 -47
- package/.docs/organized/changelogs/%40mastra%2Fupstash.md +37 -37
- package/.docs/organized/changelogs/%40mastra%2Fvoice-gladia.md +9 -0
- package/.docs/organized/changelogs/%40mastra%2Fvoice-openai-realtime.md +12 -12
- package/.docs/organized/changelogs/create-mastra.md +15 -15
- package/.docs/organized/changelogs/mastra.md +86 -86
- package/.docs/organized/code-examples/agent.md +1 -1
- package/.docs/organized/code-examples/agui.md +4 -1
- package/.docs/organized/code-examples/ai-sdk-useChat.md +1 -1
- package/.docs/organized/code-examples/fireworks-r1.md +1 -1
- package/.docs/organized/code-examples/memory-with-processors.md +2 -2
- package/.docs/organized/code-examples/openapi-spec-writer.md +1 -1
- package/.docs/organized/code-examples/quick-start.md +1 -1
- package/.docs/organized/code-examples/weather-agent.md +7 -1
- package/.docs/raw/course/01-first-agent/03-verifying-installation.md +4 -2
- package/.docs/raw/course/01-first-agent/16-adding-memory-to-agent.md +1 -1
- package/.docs/raw/course/02-agent-tools-mcp/15-updating-mcp-config-github.md +1 -1
- package/.docs/raw/course/02-agent-tools-mcp/20-updating-mcp-config-hackernews.md +1 -1
- package/.docs/raw/course/02-agent-tools-mcp/26-updating-mcp-config-filesystem.md +1 -1
- package/.docs/raw/course/03-agent-memory/03-installing-memory.md +4 -2
- package/.docs/raw/course/03-agent-memory/04-creating-basic-memory-agent.md +1 -1
- package/.docs/raw/course/03-agent-memory/08-configuring-conversation-history.md +3 -3
- package/.docs/raw/course/03-agent-memory/13-vector-store-configuration.md +27 -0
- package/.docs/raw/course/03-agent-memory/{13-what-is-semantic-recall.md → 14-what-is-semantic-recall.md} +1 -1
- package/.docs/raw/course/03-agent-memory/16-configuring-semantic-recall.md +41 -0
- package/.docs/raw/course/03-agent-memory/18-advanced-configuration-semantic-recall.md +28 -0
- package/.docs/raw/course/03-agent-memory/21-configuring-working-memory.md +9 -9
- package/.docs/raw/course/03-agent-memory/22-custom-working-memory-templates.md +10 -2
- package/.docs/raw/course/03-agent-memory/25-combining-memory-features.md +8 -1
- package/.docs/raw/course/03-agent-memory/27-creating-learning-assistant.md +8 -1
- package/.docs/raw/deployment/deployment.mdx +26 -97
- package/.docs/raw/deployment/overview.mdx +18 -3
- package/.docs/raw/deployment/web-framework.mdx +63 -0
- package/.docs/raw/frameworks/web-frameworks/astro.mdx +7 -1
- package/.docs/raw/frameworks/web-frameworks/next-js.mdx +1 -1
- package/.docs/raw/getting-started/installation.mdx +98 -558
- package/.docs/raw/getting-started/project-structure.mdx +3 -16
- package/.docs/raw/rag/vector-databases.mdx +4 -7
- package/.docs/raw/reference/agents/generate.mdx +35 -3
- package/.docs/raw/reference/agents/stream.mdx +35 -3
- package/.docs/raw/reference/client-js/memory.mdx +14 -0
- package/.docs/raw/reference/client-js/workflows.mdx +28 -0
- package/.docs/raw/reference/deployer/cloudflare.mdx +9 -3
- package/.docs/raw/reference/deployer/deployer.mdx +1 -1
- package/.docs/raw/reference/deployer/netlify.mdx +25 -4
- package/.docs/raw/reference/deployer/vercel.mdx +10 -4
- package/.docs/raw/workflows/control-flow.mdx +45 -171
- package/.docs/raw/workflows/input-data-mapping.mdx +21 -88
- package/.docs/raw/workflows/overview.mdx +23 -46
- package/.docs/raw/workflows/suspend-and-resume.mdx +46 -34
- package/.docs/raw/workflows/using-with-agents-and-tools.mdx +55 -191
- package/dist/_tsup-dts-rollup.d.ts +14 -0
- package/dist/{chunk-QWIXFGFR.js → chunk-P5AHYMUI.js} +126 -20
- package/dist/prepare-docs/prepare.js +1 -1
- package/dist/stdio.js +42 -12
- package/package.json +3 -3
- package/.docs/raw/course/03-agent-memory/15-configuring-semantic-recall.md +0 -46
- package/.docs/raw/course/03-agent-memory/16-vector-store-configuration.md +0 -37
- package/.docs/raw/course/03-agent-memory/18-disabling-semantic-recall.md +0 -24
- /package/.docs/raw/{deployment/client.mdx → client-js/overview.mdx} +0 -0
- /package/.docs/raw/course/03-agent-memory/{14-how-semantic-recall-works.md → 15-how-semantic-recall-works.md} +0 -0
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @mastra/clickhouse
|
|
2
2
|
|
|
3
|
+
## 0.11.0-alpha.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 704d1ca: Thread Timestamp Auto-Update Enhancement
|
|
8
|
+
Added automatic thread updatedAt timestamp updates when messages are saved across all storage providers
|
|
9
|
+
Enhanced user experience: Threads now accurately reflect their latest activity with automatic timestamp updates when new messages are added
|
|
10
|
+
Universal implementation: Consistent behavior across all 7 storage backends (ClickHouse, Cloudflare D1, DynamoDB, MongoDB, PostgreSQL, Upstash, LibSQL)
|
|
11
|
+
Performance optimized: Updates execute in parallel with message saving operations for minimal performance impact
|
|
12
|
+
Backwards compatible: No breaking changes - existing code continues to work unchanged
|
|
13
|
+
Improved conversation ordering: Chat interfaces can now properly sort threads by actual last activity
|
|
14
|
+
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.
|
|
15
|
+
|
|
3
16
|
## 0.10.3-alpha.0
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -285,18 +298,5 @@
|
|
|
285
298
|
- Updated dependencies [6052aa6]
|
|
286
299
|
- Updated dependencies [967b41c]
|
|
287
300
|
- Updated dependencies [3d2fb5c]
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
- Updated dependencies [7eeb2bc]
|
|
291
|
-
- Updated dependencies [b804723]
|
|
292
|
-
- Updated dependencies [8607972]
|
|
293
|
-
- Updated dependencies [ccef9f9]
|
|
294
|
-
- Updated dependencies [0097d50]
|
|
295
|
-
- Updated dependencies [7eeb2bc]
|
|
296
|
-
- Updated dependencies [17826a9]
|
|
297
|
-
- Updated dependencies [7d8b7c7]
|
|
298
|
-
- Updated dependencies [fba031f]
|
|
299
|
-
- Updated dependencies [3a5f1e1]
|
|
300
|
-
- Updated dependencies [51e6923]
|
|
301
|
-
|
|
302
|
-
... 454 more lines hidden. See full changelog in package directory.
|
|
301
|
+
|
|
302
|
+
... 467 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
+
## 0.10.5-alpha.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [12a95fc]
|
|
8
|
+
- Updated dependencies [51264a5]
|
|
9
|
+
- Updated dependencies [8e6f677]
|
|
10
|
+
- @mastra/core@0.10.6-alpha.5
|
|
11
|
+
|
|
12
|
+
## 0.10.5-alpha.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [9589624]
|
|
17
|
+
- @mastra/core@0.10.6-alpha.4
|
|
18
|
+
|
|
19
|
+
## 0.10.5-alpha.3
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [d70c420]
|
|
24
|
+
- Updated dependencies [2a16996]
|
|
25
|
+
- @mastra/core@0.10.6-alpha.3
|
|
26
|
+
|
|
27
|
+
## 0.10.5-alpha.2
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [4b0f8a6]
|
|
32
|
+
- @mastra/core@0.10.6-alpha.2
|
|
33
|
+
|
|
34
|
+
## 0.10.5-alpha.1
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- ee9af57: Add api for polling run execution result and get run by id
|
|
39
|
+
- 3270d9d: Fix runtime context being undefined
|
|
40
|
+
- Updated dependencies [ee9af57]
|
|
41
|
+
- Updated dependencies [751c894]
|
|
42
|
+
- Updated dependencies [577ce3a]
|
|
43
|
+
- Updated dependencies [9260b3a]
|
|
44
|
+
- @mastra/core@0.10.6-alpha.1
|
|
45
|
+
|
|
3
46
|
## 0.10.5-alpha.0
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|
|
@@ -255,48 +298,5 @@
|
|
|
255
298
|
|
|
256
299
|
## 0.2.0-alpha.1
|
|
257
300
|
|
|
258
|
-
### Minor Changes
|
|
259
|
-
|
|
260
|
-
- 83da932: Move @mastra/core to peerdeps
|
|
261
|
-
- 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
|
|
262
|
-
|
|
263
|
-
### Patch Changes
|
|
264
|
-
|
|
265
|
-
- b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
|
|
266
|
-
- 0215b0b: Add description to vnext workflow response
|
|
267
|
-
- 5063646: Accept plain obects as runtimeContext
|
|
268
|
-
- Updated dependencies [b3a3d63]
|
|
269
|
-
- Updated dependencies [344f453]
|
|
270
|
-
- Updated dependencies [0a3ae6d]
|
|
271
|
-
- Updated dependencies [95911be]
|
|
272
|
-
- Updated dependencies [5eb5a99]
|
|
273
|
-
- Updated dependencies [7e632c5]
|
|
274
|
-
- Updated dependencies [1e9fbfa]
|
|
275
|
-
- Updated dependencies [b2ae5aa]
|
|
276
|
-
- Updated dependencies [a7292b0]
|
|
277
|
-
- Updated dependencies [0dcb9f0]
|
|
278
|
-
- @mastra/core@0.10.0-alpha.1
|
|
279
|
-
|
|
280
|
-
## 0.1.23-alpha.0
|
|
281
|
-
|
|
282
|
-
### Patch Changes
|
|
283
|
-
|
|
284
|
-
- f53a6ac: Add VNextWorkflowRuns type
|
|
285
|
-
- ccdabdc: Remove trailing / from mastraClient baseUrl
|
|
286
|
-
- a6e3881: Remove non serializable options from agent stream,generate
|
|
287
|
-
- fddae56: Add telemetry to cliend SDK streamParams
|
|
288
|
-
- 23f258c: Add new list and get routes for mcp servers. Changed route make-up for more consistency with existing API routes. Lastly, added in a lot of extra detail that can be optionally passed to the mcp server per the mcp spec.
|
|
289
|
-
- 2672a05: Add MCP servers and tool call execution to playground
|
|
290
|
-
- Updated dependencies [f53a6ac]
|
|
291
|
-
- Updated dependencies [eabdcd9]
|
|
292
|
-
- Updated dependencies [90be034]
|
|
293
|
-
- Updated dependencies [99f050a]
|
|
294
|
-
- Updated dependencies [d0ee3c6]
|
|
295
|
-
- Updated dependencies [23f258c]
|
|
296
|
-
- Updated dependencies [2672a05]
|
|
297
|
-
- @mastra/core@0.9.5-alpha.0
|
|
298
|
-
|
|
299
|
-
## 0.1.22
|
|
300
|
-
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 1227 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @mastra/cloudflare-d1
|
|
2
2
|
|
|
3
|
+
## 0.11.0-alpha.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 704d1ca: Thread Timestamp Auto-Update Enhancement
|
|
8
|
+
Added automatic thread updatedAt timestamp updates when messages are saved across all storage providers
|
|
9
|
+
Enhanced user experience: Threads now accurately reflect their latest activity with automatic timestamp updates when new messages are added
|
|
10
|
+
Universal implementation: Consistent behavior across all 7 storage backends (ClickHouse, Cloudflare D1, DynamoDB, MongoDB, PostgreSQL, Upstash, LibSQL)
|
|
11
|
+
Performance optimized: Updates execute in parallel with message saving operations for minimal performance impact
|
|
12
|
+
Backwards compatible: No breaking changes - existing code continues to work unchanged
|
|
13
|
+
Improved conversation ordering: Chat interfaces can now properly sort threads by actual last activity
|
|
14
|
+
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.
|
|
15
|
+
|
|
3
16
|
## 0.10.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -285,18 +298,5 @@
|
|
|
285
298
|
|
|
286
299
|
### Patch Changes
|
|
287
300
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
- Updated dependencies [6052aa6]
|
|
291
|
-
- Updated dependencies [967b41c]
|
|
292
|
-
- Updated dependencies [3d2fb5c]
|
|
293
|
-
- Updated dependencies [26738f4]
|
|
294
|
-
- Updated dependencies [4155f47]
|
|
295
|
-
- Updated dependencies [7eeb2bc]
|
|
296
|
-
- Updated dependencies [b804723]
|
|
297
|
-
- Updated dependencies [8607972]
|
|
298
|
-
- Updated dependencies [ccef9f9]
|
|
299
|
-
- Updated dependencies [0097d50]
|
|
300
|
-
- Updated dependencies [7eeb2bc]
|
|
301
|
-
|
|
302
|
-
... 227 more lines hidden. See full changelog in package directory.
|
|
301
|
+
|
|
302
|
+
... 240 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
+
## 0.10.6-alpha.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 12a95fc: Allow passing thread metadata to agent.generate and agent.stream. This will update or create the thread with the metadata passed in. Also simplifies the arguments for those two functions into a new memory property.
|
|
8
|
+
- 51264a5: Fix fetchMemory return type and value
|
|
9
|
+
- 8e6f677: Dynamic default llm options
|
|
10
|
+
|
|
11
|
+
## 0.10.6-alpha.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 9589624: Throw Mastra Errors when building and bundling mastra application
|
|
16
|
+
|
|
17
|
+
## 0.10.6-alpha.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- d70c420: fix(core, memory): fix fetchMemory regression
|
|
22
|
+
- 2a16996: Working Memory Schema and Template
|
|
23
|
+
|
|
24
|
+
## 0.10.6-alpha.2
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 4b0f8a6: Allow passing a string, ui message, core message, or mastra message to agent.genTitle and agent.generateTitleFromUserMessage to restore previously changed public behaviour
|
|
29
|
+
|
|
30
|
+
## 0.10.6-alpha.1
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- ee9af57: Add api for polling run execution result and get run by id
|
|
35
|
+
- 751c894: pass resourceId
|
|
36
|
+
- 577ce3a: deno support - use globalThis
|
|
37
|
+
- 9260b3a: changeset
|
|
38
|
+
|
|
3
39
|
## 0.10.6-alpha.0
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
@@ -262,41 +298,5 @@
|
|
|
262
298
|
|
|
263
299
|
## 0.10.0-alpha.1
|
|
264
300
|
|
|
265
|
-
### Minor Changes
|
|
266
|
-
|
|
267
|
-
- 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
|
|
268
|
-
- 7e632c5: Removed default LibSQLStore and LibSQLVector from @mastra/core. These now live in a separate package @mastra/libsql
|
|
269
|
-
- b2ae5aa: Added support for experimental authentication and authorization
|
|
270
|
-
- 0dcb9f0: Memory breaking changes: storage, vector, and embedder are now required. Working memory text streaming has been removed, only tool calling is supported for working memory updates now. Default settings have changed (lastMessages: 40->10, semanticRecall: true->false, threads.generateTitle: true->false)
|
|
271
|
-
|
|
272
|
-
### Patch Changes
|
|
273
|
-
|
|
274
|
-
- b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
|
|
275
|
-
- 344f453: Await onFinish & onStepFinish to ensure the stream doesn't close early
|
|
276
|
-
- 0a3ae6d: Fixed a bug where tool input schema properties that were optional became required
|
|
277
|
-
- 95911be: Fixed an issue where if @mastra/core was not released at the same time as create-mastra, create-mastra would match the alpha tag instead of latest tag when running npm create mastra@latest
|
|
278
|
-
- 1e9fbfa: Upgrade to OpenTelemetry JS SDK 2.x
|
|
279
|
-
- a7292b0: BREAKING(@mastra/core, all vector stores): Vector store breaking changes (remove deprecated functions and positional arguments)
|
|
280
|
-
|
|
281
|
-
## 0.9.5-alpha.0
|
|
282
|
-
|
|
283
|
-
### Patch Changes
|
|
284
|
-
|
|
285
|
-
- f53a6ac: Add VNextWorkflowRuns type
|
|
286
|
-
- eabdcd9: [MASTRA-3451] SQL Injection Protection
|
|
287
|
-
- 90be034: Pass zod schema directly to getInitData
|
|
288
|
-
- 99f050a: Bumped a workspace package zod version to attempt to prevent duplicate dep installs of @mastra/core
|
|
289
|
-
- d0ee3c6: Change all public functions and constructors in vector stores to use named args and prepare to phase out positional args
|
|
290
|
-
- 23f258c: Add new list and get routes for mcp servers. Changed route make-up for more consistency with existing API routes. Lastly, added in a lot of extra detail that can be optionally passed to the mcp server per the mcp spec.
|
|
291
|
-
- 2672a05: Add MCP servers and tool call execution to playground
|
|
292
|
-
|
|
293
|
-
## 0.9.4
|
|
294
|
-
|
|
295
|
-
### Patch Changes
|
|
296
|
-
|
|
297
|
-
- 396be50: updated mcp server routes for MCP SSE for use with hono server
|
|
298
|
-
- ab80e7e: Fix resume workflow throwing workflow run not found error
|
|
299
|
-
- c3bd795: [MASTRA-3358] Deprecate updateIndexById and deleteIndexById
|
|
300
|
-
- da082f8: Switch from serializing json schema string as a function to a library that creates a zod object in memory from the json schema. This reduces the errors we were seeing from zod schema code that could not be serialized.
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 1856 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# @mastra/deployer-cloudflare
|
|
2
2
|
|
|
3
|
+
## 0.10.6-alpha.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [12a95fc]
|
|
8
|
+
- Updated dependencies [51264a5]
|
|
9
|
+
- Updated dependencies [8e6f677]
|
|
10
|
+
- @mastra/core@0.10.6-alpha.5
|
|
11
|
+
- @mastra/deployer@0.10.6-alpha.5
|
|
12
|
+
|
|
13
|
+
## 0.10.6-alpha.4
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [79b9909]
|
|
18
|
+
- Updated dependencies [084f6aa]
|
|
19
|
+
- Updated dependencies [9589624]
|
|
20
|
+
- @mastra/deployer@0.10.6-alpha.4
|
|
21
|
+
- @mastra/core@0.10.6-alpha.4
|
|
22
|
+
|
|
23
|
+
## 0.10.6-alpha.3
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [4051477]
|
|
28
|
+
- Updated dependencies [c28ed65]
|
|
29
|
+
- Updated dependencies [d70c420]
|
|
30
|
+
- Updated dependencies [2a16996]
|
|
31
|
+
- @mastra/deployer@0.10.6-alpha.3
|
|
32
|
+
- @mastra/core@0.10.6-alpha.3
|
|
33
|
+
|
|
34
|
+
## 0.10.6-alpha.2
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- Updated dependencies [4b0f8a6]
|
|
39
|
+
- Updated dependencies [ec7f824]
|
|
40
|
+
- @mastra/core@0.10.6-alpha.2
|
|
41
|
+
- @mastra/deployer@0.10.6-alpha.2
|
|
42
|
+
|
|
43
|
+
## 0.10.6-alpha.1
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- Updated dependencies [ee9af57]
|
|
48
|
+
- Updated dependencies [3270d9d]
|
|
49
|
+
- Updated dependencies [751c894]
|
|
50
|
+
- Updated dependencies [577ce3a]
|
|
51
|
+
- Updated dependencies [9260b3a]
|
|
52
|
+
- @mastra/deployer@0.10.6-alpha.1
|
|
53
|
+
- @mastra/core@0.10.6-alpha.1
|
|
54
|
+
|
|
3
55
|
## 0.10.6-alpha.0
|
|
4
56
|
|
|
5
57
|
### Patch Changes
|
|
@@ -246,57 +298,5 @@
|
|
|
246
298
|
|
|
247
299
|
## 0.10.2-alpha.1
|
|
248
300
|
|
|
249
|
-
### Patch Changes
|
|
250
|
-
|
|
251
|
-
- Updated dependencies [ee77e78]
|
|
252
|
-
- Updated dependencies [2901125]
|
|
253
|
-
- @mastra/core@0.10.2-alpha.1
|
|
254
|
-
- @mastra/deployer@0.10.2-alpha.1
|
|
255
|
-
|
|
256
|
-
## 0.10.2-alpha.0
|
|
257
|
-
|
|
258
|
-
### Patch Changes
|
|
259
|
-
|
|
260
|
-
- Updated dependencies [592a2db]
|
|
261
|
-
- Updated dependencies [e5dc18d]
|
|
262
|
-
- @mastra/core@0.10.2-alpha.0
|
|
263
|
-
- @mastra/deployer@0.10.2-alpha.0
|
|
264
|
-
|
|
265
|
-
## 0.10.1
|
|
266
|
-
|
|
267
|
-
### Patch Changes
|
|
268
|
-
|
|
269
|
-
- d70b807: Improve storage.init
|
|
270
|
-
- 5c41100: Added binding support for cloudflare deployers, added cloudflare kv namespace changes, and removed randomUUID from buildExecutionGraph
|
|
271
|
-
- Updated dependencies [d70b807]
|
|
272
|
-
- Updated dependencies [6d16390]
|
|
273
|
-
- Updated dependencies [1e4a421]
|
|
274
|
-
- Updated dependencies [200d0da]
|
|
275
|
-
- Updated dependencies [bed0916]
|
|
276
|
-
- Updated dependencies [bf5f17b]
|
|
277
|
-
- Updated dependencies [5343f93]
|
|
278
|
-
- Updated dependencies [38aee50]
|
|
279
|
-
- Updated dependencies [5c41100]
|
|
280
|
-
- Updated dependencies [d6a759b]
|
|
281
|
-
- Updated dependencies [fe68410]
|
|
282
|
-
- Updated dependencies [6015bdf]
|
|
283
|
-
- @mastra/core@0.10.1
|
|
284
|
-
- @mastra/deployer@0.10.1
|
|
285
|
-
|
|
286
|
-
## 0.10.1-alpha.3
|
|
287
|
-
|
|
288
|
-
### Patch Changes
|
|
289
|
-
|
|
290
|
-
- d70b807: Improve storage.init
|
|
291
|
-
- Updated dependencies [d70b807]
|
|
292
|
-
- @mastra/core@0.10.1-alpha.3
|
|
293
|
-
- @mastra/deployer@0.10.1-alpha.3
|
|
294
|
-
|
|
295
|
-
## 0.10.1-alpha.2
|
|
296
|
-
|
|
297
|
-
### Patch Changes
|
|
298
|
-
|
|
299
|
-
- Updated dependencies [fe68410]
|
|
300
|
-
- Updated dependencies [6015bdf]
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 2389 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# @mastra/deployer-netlify
|
|
2
2
|
|
|
3
|
+
## 0.10.6-alpha.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [12a95fc]
|
|
8
|
+
- Updated dependencies [51264a5]
|
|
9
|
+
- Updated dependencies [8e6f677]
|
|
10
|
+
- @mastra/core@0.10.6-alpha.5
|
|
11
|
+
- @mastra/deployer@0.10.6-alpha.5
|
|
12
|
+
|
|
13
|
+
## 0.10.6-alpha.4
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [79b9909]
|
|
18
|
+
- Updated dependencies [084f6aa]
|
|
19
|
+
- Updated dependencies [9589624]
|
|
20
|
+
- @mastra/deployer@0.10.6-alpha.4
|
|
21
|
+
- @mastra/core@0.10.6-alpha.4
|
|
22
|
+
|
|
23
|
+
## 0.10.6-alpha.3
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [4051477]
|
|
28
|
+
- Updated dependencies [c28ed65]
|
|
29
|
+
- Updated dependencies [d70c420]
|
|
30
|
+
- Updated dependencies [2a16996]
|
|
31
|
+
- @mastra/deployer@0.10.6-alpha.3
|
|
32
|
+
- @mastra/core@0.10.6-alpha.3
|
|
33
|
+
|
|
34
|
+
## 0.10.6-alpha.2
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- Updated dependencies [4b0f8a6]
|
|
39
|
+
- Updated dependencies [ec7f824]
|
|
40
|
+
- @mastra/core@0.10.6-alpha.2
|
|
41
|
+
- @mastra/deployer@0.10.6-alpha.2
|
|
42
|
+
|
|
43
|
+
## 0.10.6-alpha.1
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- Updated dependencies [ee9af57]
|
|
48
|
+
- Updated dependencies [3270d9d]
|
|
49
|
+
- Updated dependencies [751c894]
|
|
50
|
+
- Updated dependencies [577ce3a]
|
|
51
|
+
- Updated dependencies [9260b3a]
|
|
52
|
+
- @mastra/deployer@0.10.6-alpha.1
|
|
53
|
+
- @mastra/core@0.10.6-alpha.1
|
|
54
|
+
|
|
3
55
|
## 0.10.6-alpha.0
|
|
4
56
|
|
|
5
57
|
### Patch Changes
|
|
@@ -246,57 +298,5 @@
|
|
|
246
298
|
|
|
247
299
|
## 0.10.2-alpha.0
|
|
248
300
|
|
|
249
|
-
### Patch Changes
|
|
250
|
-
|
|
251
|
-
- Updated dependencies [592a2db]
|
|
252
|
-
- Updated dependencies [e5dc18d]
|
|
253
|
-
- @mastra/core@0.10.2-alpha.0
|
|
254
|
-
- @mastra/deployer@0.10.2-alpha.0
|
|
255
|
-
|
|
256
|
-
## 0.10.1
|
|
257
|
-
|
|
258
|
-
### Patch Changes
|
|
259
|
-
|
|
260
|
-
- d70b807: Improve storage.init
|
|
261
|
-
- Updated dependencies [d70b807]
|
|
262
|
-
- Updated dependencies [6d16390]
|
|
263
|
-
- Updated dependencies [1e4a421]
|
|
264
|
-
- Updated dependencies [200d0da]
|
|
265
|
-
- Updated dependencies [bed0916]
|
|
266
|
-
- Updated dependencies [bf5f17b]
|
|
267
|
-
- Updated dependencies [5343f93]
|
|
268
|
-
- Updated dependencies [38aee50]
|
|
269
|
-
- Updated dependencies [5c41100]
|
|
270
|
-
- Updated dependencies [d6a759b]
|
|
271
|
-
- Updated dependencies [fe68410]
|
|
272
|
-
- Updated dependencies [6015bdf]
|
|
273
|
-
- @mastra/core@0.10.1
|
|
274
|
-
- @mastra/deployer@0.10.1
|
|
275
|
-
|
|
276
|
-
## 0.10.1-alpha.3
|
|
277
|
-
|
|
278
|
-
### Patch Changes
|
|
279
|
-
|
|
280
|
-
- d70b807: Improve storage.init
|
|
281
|
-
- Updated dependencies [d70b807]
|
|
282
|
-
- @mastra/core@0.10.1-alpha.3
|
|
283
|
-
- @mastra/deployer@0.10.1-alpha.3
|
|
284
|
-
|
|
285
|
-
## 0.10.1-alpha.2
|
|
286
|
-
|
|
287
|
-
### Patch Changes
|
|
288
|
-
|
|
289
|
-
- Updated dependencies [fe68410]
|
|
290
|
-
- Updated dependencies [6015bdf]
|
|
291
|
-
- @mastra/deployer@0.10.1-alpha.2
|
|
292
|
-
- @mastra/core@0.10.1-alpha.2
|
|
293
|
-
|
|
294
|
-
## 0.10.1-alpha.1
|
|
295
|
-
|
|
296
|
-
### Patch Changes
|
|
297
|
-
|
|
298
|
-
- Updated dependencies [200d0da]
|
|
299
|
-
- Updated dependencies [bed0916]
|
|
300
|
-
- Updated dependencies [bf5f17b]
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 2348 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,58 @@
|
|
|
1
1
|
# @mastra/deployer-vercel
|
|
2
2
|
|
|
3
|
+
## 0.10.6-alpha.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [12a95fc]
|
|
8
|
+
- Updated dependencies [51264a5]
|
|
9
|
+
- Updated dependencies [8e6f677]
|
|
10
|
+
- @mastra/core@0.10.6-alpha.5
|
|
11
|
+
- @mastra/deployer@0.10.6-alpha.5
|
|
12
|
+
|
|
13
|
+
## 0.10.6-alpha.4
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 5054889: Update vercel deployer to use build output. Fixes both cli and git deploys
|
|
18
|
+
- Updated dependencies [79b9909]
|
|
19
|
+
- Updated dependencies [084f6aa]
|
|
20
|
+
- Updated dependencies [9589624]
|
|
21
|
+
- @mastra/deployer@0.10.6-alpha.4
|
|
22
|
+
- @mastra/core@0.10.6-alpha.4
|
|
23
|
+
|
|
24
|
+
## 0.10.6-alpha.3
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [4051477]
|
|
29
|
+
- Updated dependencies [c28ed65]
|
|
30
|
+
- Updated dependencies [d70c420]
|
|
31
|
+
- Updated dependencies [2a16996]
|
|
32
|
+
- @mastra/deployer@0.10.6-alpha.3
|
|
33
|
+
- @mastra/core@0.10.6-alpha.3
|
|
34
|
+
|
|
35
|
+
## 0.10.6-alpha.2
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies [4b0f8a6]
|
|
40
|
+
- Updated dependencies [ec7f824]
|
|
41
|
+
- @mastra/core@0.10.6-alpha.2
|
|
42
|
+
- @mastra/deployer@0.10.6-alpha.2
|
|
43
|
+
|
|
44
|
+
## 0.10.6-alpha.1
|
|
45
|
+
|
|
46
|
+
### Patch Changes
|
|
47
|
+
|
|
48
|
+
- Updated dependencies [ee9af57]
|
|
49
|
+
- Updated dependencies [3270d9d]
|
|
50
|
+
- Updated dependencies [751c894]
|
|
51
|
+
- Updated dependencies [577ce3a]
|
|
52
|
+
- Updated dependencies [9260b3a]
|
|
53
|
+
- @mastra/deployer@0.10.6-alpha.1
|
|
54
|
+
- @mastra/core@0.10.6-alpha.1
|
|
55
|
+
|
|
3
56
|
## 0.10.6-alpha.0
|
|
4
57
|
|
|
5
58
|
### Patch Changes
|
|
@@ -245,58 +298,5 @@
|
|
|
245
298
|
- Updated dependencies [6d16390]
|
|
246
299
|
- Updated dependencies [1e4a421]
|
|
247
300
|
- Updated dependencies [200d0da]
|
|
248
|
-
- Updated dependencies [bed0916]
|
|
249
|
-
- Updated dependencies [bf5f17b]
|
|
250
|
-
- Updated dependencies [5343f93]
|
|
251
|
-
- Updated dependencies [38aee50]
|
|
252
|
-
- Updated dependencies [5c41100]
|
|
253
|
-
- Updated dependencies [d6a759b]
|
|
254
|
-
- Updated dependencies [fe68410]
|
|
255
|
-
- Updated dependencies [6015bdf]
|
|
256
|
-
- @mastra/core@0.10.1
|
|
257
|
-
- @mastra/deployer@0.10.1
|
|
258
|
-
|
|
259
|
-
## 0.10.1-alpha.3
|
|
260
|
-
|
|
261
|
-
### Patch Changes
|
|
262
|
-
|
|
263
|
-
- d70b807: Improve storage.init
|
|
264
|
-
- Updated dependencies [d70b807]
|
|
265
|
-
- @mastra/core@0.10.1-alpha.3
|
|
266
|
-
- @mastra/deployer@0.10.1-alpha.3
|
|
267
|
-
|
|
268
|
-
## 0.10.1-alpha.2
|
|
269
|
-
|
|
270
|
-
### Patch Changes
|
|
271
|
-
|
|
272
|
-
- Updated dependencies [fe68410]
|
|
273
|
-
- Updated dependencies [6015bdf]
|
|
274
|
-
- @mastra/deployer@0.10.1-alpha.2
|
|
275
|
-
- @mastra/core@0.10.1-alpha.2
|
|
276
|
-
|
|
277
|
-
## 0.10.1-alpha.1
|
|
278
|
-
|
|
279
|
-
### Patch Changes
|
|
280
|
-
|
|
281
|
-
- Updated dependencies [200d0da]
|
|
282
|
-
- Updated dependencies [bed0916]
|
|
283
|
-
- Updated dependencies [bf5f17b]
|
|
284
|
-
- Updated dependencies [5343f93]
|
|
285
|
-
- Updated dependencies [38aee50]
|
|
286
|
-
- Updated dependencies [5c41100]
|
|
287
|
-
- Updated dependencies [d6a759b]
|
|
288
|
-
- @mastra/core@0.10.1-alpha.1
|
|
289
|
-
- @mastra/deployer@0.10.1-alpha.1
|
|
290
|
-
|
|
291
|
-
## 0.10.1-alpha.0
|
|
292
|
-
|
|
293
|
-
### Patch Changes
|
|
294
|
-
|
|
295
|
-
- Updated dependencies [6d16390]
|
|
296
|
-
- Updated dependencies [1e4a421]
|
|
297
|
-
- @mastra/deployer@0.10.1-alpha.0
|
|
298
|
-
- @mastra/core@0.10.1-alpha.0
|
|
299
|
-
|
|
300
|
-
## 0.10.0
|
|
301
301
|
|
|
302
|
-
...
|
|
302
|
+
... 2336 more lines hidden. See full changelog in package directory.
|