mastracode 0.28.0-alpha.3 → 0.28.0-alpha.4
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 +28 -0
- package/dist/{chunk-WPFVE6AA.js → chunk-L2WPY5DE.js} +3 -3
- package/dist/{chunk-WPFVE6AA.js.map → chunk-L2WPY5DE.js.map} +1 -1
- package/dist/{chunk-MHPIHF3L.cjs → chunk-LLFHXT5E.cjs} +4 -4
- package/dist/{chunk-MHPIHF3L.cjs.map → chunk-LLFHXT5E.cjs.map} +1 -1
- package/dist/cli.cjs +5 -5
- package/dist/cli.js +1 -1
- package/dist/tui.cjs +11 -11
- package/dist/tui.js +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# mastracode
|
|
2
2
|
|
|
3
|
+
## 0.28.0-alpha.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Removed named exports from the `@mastra/playground-ui` root entry. Import public APIs from exact package subpaths instead. ([#18791](https://github.com/mastra-ai/mastra/pull/18791))
|
|
8
|
+
|
|
9
|
+
**Before**
|
|
10
|
+
|
|
11
|
+
```ts
|
|
12
|
+
import { Button } from '@mastra/playground-ui';
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**After**
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
import { Button } from '@mastra/playground-ui/components/Button';
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
`mastracode` now uses the exact subpath imports, and lint rules prevent new broad `@mastra/playground-ui` imports.
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [[`6a61846`](https://github.com/mastra-ai/mastra/commit/6a61846eeda29fb714549b70f1bee2bf6b141c44), [`7952b3d`](https://github.com/mastra-ai/mastra/commit/7952b3d90e2437093ee322585e361ea6e62ed497)]:
|
|
24
|
+
- @mastra/core@1.49.0-alpha.4
|
|
25
|
+
- @mastra/playground-ui@38.1.0-alpha.4
|
|
26
|
+
- @mastra/client-js@1.29.1-alpha.4
|
|
27
|
+
- @mastra/react@1.2.2-alpha.4
|
|
28
|
+
- @mastra/server@1.49.0-alpha.4
|
|
29
|
+
- @mastra/hono@1.5.4-alpha.4
|
|
30
|
+
|
|
3
31
|
## 0.28.0-alpha.3
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
|
@@ -1178,7 +1178,7 @@ function getInstallCommand(pm, version) {
|
|
|
1178
1178
|
}
|
|
1179
1179
|
function getCurrentVersion() {
|
|
1180
1180
|
{
|
|
1181
|
-
return "0.28.0-alpha.
|
|
1181
|
+
return "0.28.0-alpha.4";
|
|
1182
1182
|
}
|
|
1183
1183
|
}
|
|
1184
1184
|
async function fetchLatestVersion() {
|
|
@@ -21786,5 +21786,5 @@ Would you like to update now?`;
|
|
|
21786
21786
|
};
|
|
21787
21787
|
|
|
21788
21788
|
export { AssistantMessageComponent, LoginDialogComponent, LoginSelectorComponent, MastraTUI, ModelSelectorComponent, OMProgressComponent, ToolExecutionComponentEnhanced, UserMessageComponent, createTUIState, detectTerminalTheme, formatOMStatus, getCurrentVersion };
|
|
21789
|
-
//# sourceMappingURL=chunk-
|
|
21790
|
-
//# sourceMappingURL=chunk-
|
|
21789
|
+
//# sourceMappingURL=chunk-L2WPY5DE.js.map
|
|
21790
|
+
//# sourceMappingURL=chunk-L2WPY5DE.js.map
|