mastracode 0.17.0-alpha.6 → 0.17.0
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 +29 -0
- package/dist/{chunk-LVKIOX2M.js → chunk-SIB7A4ID.js} +3 -3
- package/dist/chunk-SIB7A4ID.js.map +1 -0
- package/dist/{chunk-INCBH57P.cjs → chunk-U7JDYUZB.cjs} +3 -3
- package/dist/{chunk-LVKIOX2M.js.map → chunk-U7JDYUZB.cjs.map} +1 -1
- package/dist/cli.cjs +4 -4
- package/dist/cli.js +1 -1
- package/dist/tui.cjs +11 -11
- package/dist/tui.js +1 -1
- package/package.json +11 -11
- package/dist/chunk-INCBH57P.cjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# mastracode
|
|
2
2
|
|
|
3
|
+
## 0.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Free-text answers to the `ask_user` tool can now span multiple lines. Press ([#15395](https://github.com/mastra-ai/mastra/pull/15395))
|
|
8
|
+
`Shift+Enter` or `\+Enter` to insert a newline, `Enter` to submit, and `Esc`
|
|
9
|
+
to cancel — long answers wrap inside the input box instead of scrolling
|
|
10
|
+
horizontally off-screen, and the raw text (including indentation and trailing
|
|
11
|
+
newlines) is forwarded to the agent intact.
|
|
12
|
+
|
|
13
|
+
Slash-command prompts that take short answers (paths, names, yes/no, model
|
|
14
|
+
picks) keep the existing single-line input, so muscle memory for those
|
|
15
|
+
prompts is unchanged.
|
|
16
|
+
|
|
17
|
+
Internally, this is opt-in via a new `multiline: true` flag on
|
|
18
|
+
`AskQuestionInlineComponent` / `AskQuestionDialogComponent`. The flag also
|
|
19
|
+
flows through `createStreaming` and `activate`, so the multiline editor is
|
|
20
|
+
available everywhere those components are mounted.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Fixed user message box border misalignment when the first line of text fills the full width. The right border no longer extends past the top corner. ([#15993](https://github.com/mastra-ai/mastra/pull/15993))
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [[`1723e09`](https://github.com/mastra-ai/mastra/commit/1723e099829892419ddbfe49287acfeac2522724), [`629f9e9`](https://github.com/mastra-ai/mastra/commit/629f9e9a7e56aa8f129515a3923c5813298790c7), [`25168fb`](https://github.com/mastra-ai/mastra/commit/25168fb9c1de9db7f8171df4f58ceb842c53aa29), [`ab34b5a`](https://github.com/mastra-ai/mastra/commit/ab34b5a2191b8e4353df1dbf7b9155e7d6628d79), [`5fb6c2a`](https://github.com/mastra-ai/mastra/commit/5fb6c2a95c1843cc231704b91354311fc1f34a71), [`2b0f355`](https://github.com/mastra-ai/mastra/commit/2b0f3553be3e9e5524da539a66e5cf82668440a4), [`711580e`](https://github.com/mastra-ai/mastra/commit/711580eeea6de34da1203b0a5d5a2b3589d38156), [`394f0cf`](https://github.com/mastra-ai/mastra/commit/394f0cfc31e6b4d801219fdef2e9cc69e5bc8682), [`b2deb29`](https://github.com/mastra-ai/mastra/commit/b2deb29412b300c868655b5840463614fbb7962d), [`66644be`](https://github.com/mastra-ai/mastra/commit/66644beac1aa560f0e417956ff007c89341dc382), [`e109607`](https://github.com/mastra-ai/mastra/commit/e10960749251e34d46b480a20648c490fd30381b), [`310b953`](https://github.com/mastra-ai/mastra/commit/310b95345f302dcd5ba3ed862bdc96f059d44122), [`3d7f709`](https://github.com/mastra-ai/mastra/commit/3d7f709b615e588050bb6283c4ee5cfe2978cbde), [`48a42f1`](https://github.com/mastra-ai/mastra/commit/48a42f114a4006a95e0b7a1b5ad1a24815a175c2), [`8091c7c`](https://github.com/mastra-ai/mastra/commit/8091c7c944d15e13fef6d61b6cfd903f158d4006), [`2c83efc`](https://github.com/mastra-ai/mastra/commit/2c83efc4482b3efe50830e3b8b4ba9a8d219edff), [`282a10c`](https://github.com/mastra-ai/mastra/commit/282a10c9446e9922afe80e10e3770481c8ac8a28), [`43f0e1d`](https://github.com/mastra-ai/mastra/commit/43f0e1d5d5a74ba6fc746f2ad89ebe0c64777a7d), [`da0b9e2`](https://github.com/mastra-ai/mastra/commit/da0b9e2ba7ecc560213b426d6c097fe63946086e), [`282a10c`](https://github.com/mastra-ai/mastra/commit/282a10c9446e9922afe80e10e3770481c8ac8a28), [`04151c7`](https://github.com/mastra-ai/mastra/commit/04151c7dcea934b4fe9076708a23fac161195414), [`8091c7c`](https://github.com/mastra-ai/mastra/commit/8091c7c944d15e13fef6d61b6cfd903f158d4006)]:
|
|
27
|
+
- @mastra/core@1.31.0
|
|
28
|
+
- @mastra/pg@1.9.4
|
|
29
|
+
- @mastra/observability@1.11.0
|
|
30
|
+
- @mastra/libsql@1.9.1
|
|
31
|
+
|
|
3
32
|
## 0.17.0-alpha.6
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
|
@@ -989,7 +989,7 @@ function getInstallCommand(pm, version) {
|
|
|
989
989
|
}
|
|
990
990
|
function getCurrentVersion() {
|
|
991
991
|
{
|
|
992
|
-
return "0.17.0
|
|
992
|
+
return "0.17.0";
|
|
993
993
|
}
|
|
994
994
|
}
|
|
995
995
|
async function fetchLatestVersion() {
|
|
@@ -14515,5 +14515,5 @@ var LoginSelectorComponent = class extends Box {
|
|
|
14515
14515
|
};
|
|
14516
14516
|
|
|
14517
14517
|
export { AssistantMessageComponent, LoginDialogComponent, LoginSelectorComponent, MastraTUI, ModelSelectorComponent, OMProgressComponent, ToolExecutionComponentEnhanced, UserMessageComponent, createTUIState, detectTerminalTheme, formatOMStatus, getCurrentVersion };
|
|
14518
|
-
//# sourceMappingURL=chunk-
|
|
14519
|
-
//# sourceMappingURL=chunk-
|
|
14518
|
+
//# sourceMappingURL=chunk-SIB7A4ID.js.map
|
|
14519
|
+
//# sourceMappingURL=chunk-SIB7A4ID.js.map
|