mastracode 0.15.1 → 0.15.2-alpha.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 +10 -0
- package/dist/{chunk-CUBTF4UK.js → chunk-BTTVDMR7.js} +7 -3
- package/dist/chunk-BTTVDMR7.js.map +1 -0
- package/dist/{chunk-CU7JVMZI.cjs → chunk-MBLKXDCO.cjs} +7 -3
- package/dist/chunk-MBLKXDCO.cjs.map +1 -0
- 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 +8 -8
- package/dist/chunk-CU7JVMZI.cjs.map +0 -1
- package/dist/chunk-CUBTF4UK.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# mastracode
|
|
2
2
|
|
|
3
|
+
## 0.15.2-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed custom slash commands to create the pending thread before sending the first prompt so the initial exchange stays in the same conversation. ([#15678](https://github.com/mastra-ai/mastra/pull/15678))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`733bf53`](https://github.com/mastra-ai/mastra/commit/733bf53d9352aedd3ef38c3d501edb275b65b43c), [`5405b3b`](https://github.com/mastra-ai/mastra/commit/5405b3b35325c5b8fb34fc7ac109bd2feb7bb6fe), [`c321127`](https://github.com/mastra-ai/mastra/commit/c3211275fc195de9ad1ead2746b354beb8eae6e8), [`a07bcef`](https://github.com/mastra-ai/mastra/commit/a07bcefea77c03d6d322caad973dca49b4b15fa1), [`b084a80`](https://github.com/mastra-ai/mastra/commit/b084a800db0f82d62e1fc3d6e3e3480da1ba5a53), [`82b7a96`](https://github.com/mastra-ai/mastra/commit/82b7a964169636c1d1e0c694fc892a213b0179d5), [`df97812`](https://github.com/mastra-ai/mastra/commit/df97812bd949dcafeb074b80ecab501724b49c3b), [`1422165`](https://github.com/mastra-ai/mastra/commit/14221652c8cd58c4a0be55e81bf05a5096bbb7d9), [`8bbe360`](https://github.com/mastra-ai/mastra/commit/8bbe36042af7fc4be0244dffd8913f6795179421), [`f6b8ba8`](https://github.com/mastra-ai/mastra/commit/f6b8ba8dbf533b7a8db90c72b6805ddc804a3a72), [`a07bcef`](https://github.com/mastra-ai/mastra/commit/a07bcefea77c03d6d322caad973dca49b4b15fa1)]:
|
|
10
|
+
- @mastra/core@1.28.0-alpha.0
|
|
11
|
+
- @mastra/agent-browser@0.2.1-alpha.0
|
|
12
|
+
|
|
3
13
|
## 0.15.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -878,7 +878,7 @@ function getInstallCommand(pm, version) {
|
|
|
878
878
|
}
|
|
879
879
|
function getCurrentVersion() {
|
|
880
880
|
{
|
|
881
|
-
return "0.15.
|
|
881
|
+
return "0.15.2-alpha.0";
|
|
882
882
|
}
|
|
883
883
|
}
|
|
884
884
|
async function fetchLatestVersion() {
|
|
@@ -7596,6 +7596,10 @@ async function handleCustomSlashCommand(state, command, args) {
|
|
|
7596
7596
|
state.allSlashCommandComponents.push(slashComp);
|
|
7597
7597
|
state.chatContainer.addChild(slashComp);
|
|
7598
7598
|
state.ui.requestRender();
|
|
7599
|
+
if (state.pendingNewThread) {
|
|
7600
|
+
await state.harness.createThread();
|
|
7601
|
+
state.pendingNewThread = false;
|
|
7602
|
+
}
|
|
7599
7603
|
const wrapped = `<slash-command name="${command.name}">
|
|
7600
7604
|
${processedContent.trim()}
|
|
7601
7605
|
</slash-command>`;
|
|
@@ -14015,5 +14019,5 @@ var LoginSelectorComponent = class extends Box {
|
|
|
14015
14019
|
};
|
|
14016
14020
|
|
|
14017
14021
|
export { AssistantMessageComponent, LoginDialogComponent, LoginSelectorComponent, MastraTUI, ModelSelectorComponent, OMProgressComponent, ToolExecutionComponentEnhanced, UserMessageComponent, createTUIState, detectTerminalTheme, formatOMStatus, getCurrentVersion };
|
|
14018
|
-
//# sourceMappingURL=chunk-
|
|
14019
|
-
//# sourceMappingURL=chunk-
|
|
14022
|
+
//# sourceMappingURL=chunk-BTTVDMR7.js.map
|
|
14023
|
+
//# sourceMappingURL=chunk-BTTVDMR7.js.map
|