@mastra/deployer 1.38.0-alpha.5 → 1.38.0-alpha.6
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 1.38.0-alpha.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dependencies updates: ([#17146](https://github.com/mastra-ai/mastra/pull/17146))
|
|
8
|
+
- Updated dependency [`@babel/core@^7.29.7` ↗︎](https://www.npmjs.com/package/@babel/core/v/7.29.7) (from `^7.29.0`, in `dependencies`)
|
|
9
|
+
- Updated dependency [`@babel/preset-typescript@^7.29.7` ↗︎](https://www.npmjs.com/package/@babel/preset-typescript/v/7.29.7) (from `^7.28.5`, in `dependencies`)
|
|
10
|
+
- Updated dependency [`@babel/traverse@^7.29.7` ↗︎](https://www.npmjs.com/package/@babel/traverse/v/7.29.7) (from `^7.29.0`, in `dependencies`)
|
|
11
|
+
|
|
12
|
+
- Enabled Studio via the CLI and deployers to use agent signal subscriptions by default while preserving `MASTRA_AGENT_SIGNALS=false`, `enableThreadSignals: false`, and explicit legacy Stream as opt-outs. The React `useChat()` hook remains opt-in for SDK consumers via `enableThreadSignals: true`. ([#17313](https://github.com/mastra-ai/mastra/pull/17313))
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`bb3fce8`](https://github.com/mastra-ai/mastra/commit/bb3fce8f8d80079170c0f98cb2efbb29ae34375d), [`19a8658`](https://github.com/mastra-ai/mastra/commit/19a86589c788ef48bb6c1b0612cc82a201857379), [`1a97509`](https://github.com/mastra-ai/mastra/commit/1a975099596faf8c3d7e19f6235d5b2969cc39a9), [`1fad344`](https://github.com/mastra-ai/mastra/commit/1fad344c6554142b2061f480ae0b336164ab5efb), [`a659a77`](https://github.com/mastra-ai/mastra/commit/a659a779bdebe3a52a518c56d2260592d0240fe0), [`3332be9`](https://github.com/mastra-ai/mastra/commit/3332be9701ecd77aba840959d9a1d1ce7aef02d3)]:
|
|
15
|
+
- @mastra/server@1.38.0-alpha.6
|
|
16
|
+
- @mastra/core@1.38.0-alpha.6
|
|
17
|
+
|
|
3
18
|
## 1.38.0-alpha.5
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/docs/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: mastra-deployer
|
|
|
3
3
|
description: Documentation for @mastra/deployer. Use when working with @mastra/deployer APIs, configuration, or implementation.
|
|
4
4
|
metadata:
|
|
5
5
|
package: "@mastra/deployer"
|
|
6
|
-
version: "1.38.0-alpha.
|
|
6
|
+
version: "1.38.0-alpha.6"
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## When to use
|
package/dist/server/index.cjs
CHANGED
|
@@ -4375,7 +4375,7 @@ async function createHonoServer(mastra, options = {
|
|
|
4375
4375
|
const experimentalFeatures = process.env.EXPERIMENTAL_FEATURES === "true" ? "true" : "false";
|
|
4376
4376
|
const experimentalUI = process.env.MASTRA_EXPERIMENTAL_UI === "true" ? "true" : "false";
|
|
4377
4377
|
const templatesEnabled = process.env.MASTRA_TEMPLATES === "true" ? "true" : "false";
|
|
4378
|
-
const agentSignals = process.env.MASTRA_AGENT_SIGNALS === "
|
|
4378
|
+
const agentSignals = process.env.MASTRA_AGENT_SIGNALS === "false" ? "false" : "true";
|
|
4379
4379
|
const requestContextPresets = process.env.MASTRA_REQUEST_CONTEXT_PRESETS || "";
|
|
4380
4380
|
const escapeForHtml = (json) => {
|
|
4381
4381
|
return json.replace(/\\/g, "\\\\").replace(/'/g, "\\'").replace(/\n/g, "\\n").replace(/\r/g, "\\r").replace(/</g, "\\u003c").replace(/>/g, "\\u003e").replace(/\u2028/g, "\\u2028").replace(/\u2029/g, "\\u2029");
|