mastracode 0.17.1-alpha.1 → 0.17.1-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 +11 -0
- package/dist/{chunk-YHAWCGB7.cjs → chunk-FUC3AZM7.cjs} +5 -5
- package/dist/chunk-FUC3AZM7.cjs.map +1 -0
- package/dist/{chunk-DKXKWB6R.js → chunk-QEY73UWQ.js} +5 -5
- package/dist/chunk-QEY73UWQ.js.map +1 -0
- package/dist/cli.cjs +4 -4
- package/dist/cli.js +1 -1
- package/dist/tui/components/settings.d.ts.map +1 -1
- package/dist/tui.cjs +11 -11
- package/dist/tui.js +1 -1
- package/package.json +6 -6
- package/dist/chunk-DKXKWB6R.js.map +0 -1
- package/dist/chunk-YHAWCGB7.cjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# mastracode
|
|
2
2
|
|
|
3
|
+
## 0.17.1-alpha.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Normalize Enter/Escape key handling in the `/settings` storage backend submenu so submit/cancel works reliably across terminal emulators. ([#16135](https://github.com/mastra-ai/mastra/pull/16135))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`86c0298`](https://github.com/mastra-ai/mastra/commit/86c0298e647306423c842f9d5ac827bd616bd13d), [`c5daf48`](https://github.com/mastra-ai/mastra/commit/c5daf48556e98c46ae06caf00f92c249912007e9), [`7fce309`](https://github.com/mastra-ai/mastra/commit/7fce30912b14170bfc41f0ac736cca0f39fe0cd4), [`86c0298`](https://github.com/mastra-ai/mastra/commit/86c0298e647306423c842f9d5ac827bd616bd13d), [`7997c2e`](https://github.com/mastra-ai/mastra/commit/7997c2e55ddd121562a4098cd8d2b89c68433bf1), [`e97ccb9`](https://github.com/mastra-ai/mastra/commit/e97ccb900f8b7a390ce82c9f8eb8d6eb2c5e3777), [`c5daf48`](https://github.com/mastra-ai/mastra/commit/c5daf48556e98c46ae06caf00f92c249912007e9), [`cd96779`](https://github.com/mastra-ai/mastra/commit/cd9677937f113b2856dc8b9f3d4bdabcee58bb2e)]:
|
|
10
|
+
- @mastra/core@1.32.0-alpha.2
|
|
11
|
+
- @mastra/duckdb@1.3.0-alpha.0
|
|
12
|
+
- @mastra/mcp@1.6.1-alpha.1
|
|
13
|
+
|
|
3
14
|
## 0.17.1-alpha.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -1017,7 +1017,7 @@ function getInstallCommand(pm, version) {
|
|
|
1017
1017
|
}
|
|
1018
1018
|
function getCurrentVersion() {
|
|
1019
1019
|
{
|
|
1020
|
-
return "0.17.1-alpha.
|
|
1020
|
+
return "0.17.1-alpha.2";
|
|
1021
1021
|
}
|
|
1022
1022
|
}
|
|
1023
1023
|
async function fetchLatestVersion() {
|
|
@@ -5809,7 +5809,7 @@ var StorageBackendSubmenu = class extends piTui.Container {
|
|
|
5809
5809
|
this.selectList.handleInput(data);
|
|
5810
5810
|
return;
|
|
5811
5811
|
}
|
|
5812
|
-
if (data === "\r" || data === "\n") {
|
|
5812
|
+
if (piTui.matchesKey(data, "enter") || data === "\r" || data === "\n") {
|
|
5813
5813
|
const value = this.input.getValue().trim();
|
|
5814
5814
|
if (this.pendingBackend === "pg") {
|
|
5815
5815
|
if (value) {
|
|
@@ -5820,7 +5820,7 @@ var StorageBackendSubmenu = class extends piTui.Container {
|
|
|
5820
5820
|
}
|
|
5821
5821
|
return;
|
|
5822
5822
|
}
|
|
5823
|
-
if (data === "\x1B" || data === "\x1B\x1B") {
|
|
5823
|
+
if (piTui.matchesKey(data, "escape") || data === "\x1B" || data === "\x1B\x1B") {
|
|
5824
5824
|
this.onBack();
|
|
5825
5825
|
return;
|
|
5826
5826
|
}
|
|
@@ -14554,5 +14554,5 @@ exports.createTUIState = createTUIState;
|
|
|
14554
14554
|
exports.detectTerminalTheme = detectTerminalTheme;
|
|
14555
14555
|
exports.formatOMStatus = formatOMStatus;
|
|
14556
14556
|
exports.getCurrentVersion = getCurrentVersion;
|
|
14557
|
-
//# sourceMappingURL=chunk-
|
|
14558
|
-
//# sourceMappingURL=chunk-
|
|
14557
|
+
//# sourceMappingURL=chunk-FUC3AZM7.cjs.map
|
|
14558
|
+
//# sourceMappingURL=chunk-FUC3AZM7.cjs.map
|