mastracode 0.26.1-alpha.0 → 0.27.0-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/CHANGELOG.md +25 -0
- package/dist/{chunk-7BTCK3WA.cjs → chunk-DCGESDY4.cjs} +4 -4
- package/dist/chunk-DCGESDY4.cjs.map +1 -0
- package/dist/{chunk-X3CUXLJP.js → chunk-TTAHPRIC.js} +4 -4
- package/dist/chunk-TTAHPRIC.js.map +1 -0
- package/dist/cli.cjs +5 -5
- package/dist/cli.js +1 -1
- package/dist/tui/event-dispatch.d.ts.map +1 -1
- package/dist/tui.cjs +11 -11
- package/dist/tui.js +1 -1
- package/package.json +22 -13
- package/dist/chunk-7BTCK3WA.cjs.map +0 -1
- package/dist/chunk-X3CUXLJP.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# mastracode
|
|
2
2
|
|
|
3
|
+
## 0.27.0-alpha.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`e420b3c`](https://github.com/mastra-ai/mastra/commit/e420b3c3ffc98bbc5b791897ea390bb47af99696)]:
|
|
8
|
+
- @mastra/core@1.48.0-alpha.2
|
|
9
|
+
- @mastra/server@1.48.0-alpha.2
|
|
10
|
+
- @mastra/hono@1.5.3-alpha.2
|
|
11
|
+
|
|
12
|
+
## 0.27.0-alpha.1
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- **Improved web settings data loading** ([#18518](https://github.com/mastra-ai/mastra/pull/18518))
|
|
17
|
+
- Settings panels now avoid duplicate requests and refresh lists after saves or removals.
|
|
18
|
+
- Provider keys, custom providers, model packs, observational memory, and the directory picker now stay in sync automatically.
|
|
19
|
+
- Streaming chat behavior is unchanged.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [[`95857bc`](https://github.com/mastra-ai/mastra/commit/95857bcd6669da7193f503e803f0d72a2bd66be6), [`8e9c0fb`](https://github.com/mastra-ai/mastra/commit/8e9c0fb48fd58da2efcdff2cf1202ee41092c315)]:
|
|
24
|
+
- @mastra/core@1.48.0-alpha.1
|
|
25
|
+
- @mastra/server@1.48.0-alpha.1
|
|
26
|
+
- @mastra/hono@1.5.3-alpha.1
|
|
27
|
+
|
|
3
28
|
## 0.26.1-alpha.0
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -1202,7 +1202,7 @@ function getInstallCommand(pm, version) {
|
|
|
1202
1202
|
}
|
|
1203
1203
|
function getCurrentVersion() {
|
|
1204
1204
|
{
|
|
1205
|
-
return "0.
|
|
1205
|
+
return "0.27.0-alpha.2";
|
|
1206
1206
|
}
|
|
1207
1207
|
}
|
|
1208
1208
|
async function fetchLatestVersion() {
|
|
@@ -17005,7 +17005,7 @@ async function dispatchEvent(event, ectx, state) {
|
|
|
17005
17005
|
handleMessageStart(ectx, event.message);
|
|
17006
17006
|
break;
|
|
17007
17007
|
case "message_update":
|
|
17008
|
-
if (state.decodeStartedAt === 0) {
|
|
17008
|
+
if (state.decodeStartedAt === 0 && event.message.content.some((part) => part.type === "text" && "text" in part && part.text.trim().length > 0)) {
|
|
17009
17009
|
state.decodeStartedAt = Date.now();
|
|
17010
17010
|
}
|
|
17011
17011
|
handleMessageUpdate(ectx, event.message);
|
|
@@ -19474,5 +19474,5 @@ exports.createTUIState = createTUIState;
|
|
|
19474
19474
|
exports.detectTerminalTheme = detectTerminalTheme;
|
|
19475
19475
|
exports.formatOMStatus = formatOMStatus;
|
|
19476
19476
|
exports.getCurrentVersion = getCurrentVersion;
|
|
19477
|
-
//# sourceMappingURL=chunk-
|
|
19478
|
-
//# sourceMappingURL=chunk-
|
|
19477
|
+
//# sourceMappingURL=chunk-DCGESDY4.cjs.map
|
|
19478
|
+
//# sourceMappingURL=chunk-DCGESDY4.cjs.map
|