create-mastra 0.16.0-alpha.1 → 0.16.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 +24 -0
- package/dist/index.js +2 -7
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# create-mastra
|
|
2
2
|
|
|
3
|
+
## 0.16.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Use model-router in create-mastra starter template ([#8631](https://github.com/mastra-ai/mastra/pull/8631))
|
|
8
|
+
|
|
9
|
+
- Fix auto tab for model picker in playground-ui, the UI no longer auto tabs to the next selector when selecting a model/provider. ([#8680](https://github.com/mastra-ai/mastra/pull/8680))
|
|
10
|
+
|
|
11
|
+
- Create unified Sidebar component to use on Playground and Cloud ([#8655](https://github.com/mastra-ai/mastra/pull/8655))
|
|
12
|
+
|
|
13
|
+
- Adds reset button to model picker to reset to original model set on the agent. ([#8633](https://github.com/mastra-ai/mastra/pull/8633))
|
|
14
|
+
|
|
15
|
+
- Use only zod validation in dynamic form ([#8802](https://github.com/mastra-ai/mastra/pull/8802))
|
|
16
|
+
|
|
17
|
+
- Add div wrapper around entity tables to fix table vertical position ([#8758](https://github.com/mastra-ai/mastra/pull/8758))
|
|
18
|
+
|
|
19
|
+
- Customize AITraces type to seamlessly work on Cloud too ([#8759](https://github.com/mastra-ai/mastra/pull/8759))
|
|
20
|
+
|
|
21
|
+
- Refactor EntryList component and Scorer and Observability pages ([#8652](https://github.com/mastra-ai/mastra/pull/8652))
|
|
22
|
+
|
|
23
|
+
- Stream finalResult from network loop ([#8795](https://github.com/mastra-ai/mastra/pull/8795))
|
|
24
|
+
|
|
25
|
+
- Improve README ([#8819](https://github.com/mastra-ai/mastra/pull/8819))
|
|
26
|
+
|
|
3
27
|
## 0.16.0-alpha.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -724,18 +724,13 @@ const format = (open, close) => {
|
|
|
724
724
|
// Handle nested colors.
|
|
725
725
|
|
|
726
726
|
// We could have done this, but it's too slow (as of Node.js 22).
|
|
727
|
-
// return openCode + string.replaceAll(closeCode,
|
|
727
|
+
// return openCode + string.replaceAll(closeCode, openCode) + closeCode;
|
|
728
728
|
|
|
729
729
|
let result = openCode;
|
|
730
730
|
let lastIndex = 0;
|
|
731
731
|
|
|
732
|
-
// SGR 22 resets both bold (1) and dim (2). When we encounter a nested
|
|
733
|
-
// close for styles that use 22, we need to re-open the outer style.
|
|
734
|
-
const reopenOnNestedClose = close === 22;
|
|
735
|
-
const replaceCode = (reopenOnNestedClose ? closeCode : '') + openCode;
|
|
736
|
-
|
|
737
732
|
while (index !== -1) {
|
|
738
|
-
result += string.slice(lastIndex, index) +
|
|
733
|
+
result += string.slice(lastIndex, index) + openCode;
|
|
739
734
|
lastIndex = index + closeCode.length;
|
|
740
735
|
index = string.indexOf(closeCode, lastIndex);
|
|
741
736
|
}
|