mastracode 0.26.1-alpha.0 → 0.27.0-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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # mastracode
2
2
 
3
+ ## 0.27.0-alpha.1
4
+
5
+ ### Minor Changes
6
+
7
+ - **Improved web settings data loading** ([#18518](https://github.com/mastra-ai/mastra/pull/18518))
8
+ - Settings panels now avoid duplicate requests and refresh lists after saves or removals.
9
+ - Provider keys, custom providers, model packs, observational memory, and the directory picker now stay in sync automatically.
10
+ - Streaming chat behavior is unchanged.
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`95857bc`](https://github.com/mastra-ai/mastra/commit/95857bcd6669da7193f503e803f0d72a2bd66be6), [`8e9c0fb`](https://github.com/mastra-ai/mastra/commit/8e9c0fb48fd58da2efcdff2cf1202ee41092c315)]:
15
+ - @mastra/core@1.48.0-alpha.1
16
+ - @mastra/server@1.48.0-alpha.1
17
+ - @mastra/hono@1.5.3-alpha.1
18
+
3
19
  ## 0.26.1-alpha.0
4
20
 
5
21
  ### Patch Changes
@@ -1175,7 +1175,7 @@ function getInstallCommand(pm, version) {
1175
1175
  }
1176
1176
  function getCurrentVersion() {
1177
1177
  {
1178
- return "0.26.1-alpha.0";
1178
+ return "0.27.0-alpha.1";
1179
1179
  }
1180
1180
  }
1181
1181
  async function fetchLatestVersion() {
@@ -16978,7 +16978,7 @@ async function dispatchEvent(event, ectx, state) {
16978
16978
  handleMessageStart(ectx, event.message);
16979
16979
  break;
16980
16980
  case "message_update":
16981
- if (state.decodeStartedAt === 0) {
16981
+ if (state.decodeStartedAt === 0 && event.message.content.some((part) => part.type === "text" && "text" in part && part.text.trim().length > 0)) {
16982
16982
  state.decodeStartedAt = Date.now();
16983
16983
  }
16984
16984
  handleMessageUpdate(ectx, event.message);
@@ -19436,5 +19436,5 @@ Would you like to update now?`;
19436
19436
  };
19437
19437
 
19438
19438
  export { AssistantMessageComponent, LoginDialogComponent, LoginSelectorComponent, MastraTUI, ModelSelectorComponent, OMProgressComponent, ToolExecutionComponentEnhanced, UserMessageComponent, createTUIState, detectTerminalTheme, formatOMStatus, getCurrentVersion };
19439
- //# sourceMappingURL=chunk-X3CUXLJP.js.map
19440
- //# sourceMappingURL=chunk-X3CUXLJP.js.map
19439
+ //# sourceMappingURL=chunk-5XISC7NQ.js.map
19440
+ //# sourceMappingURL=chunk-5XISC7NQ.js.map