mastracode 0.32.4-alpha.3 → 0.32.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 +15 -0
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# mastracode
|
|
2
2
|
|
|
3
|
+
## 0.32.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Extended Mastra Code's transient retry policy to cover provider server errors with up to 10 retries and exponential backoff starting at 500ms. ([#20393](https://github.com/mastra-ai/mastra/pull/20393))
|
|
8
|
+
|
|
9
|
+
- Fixed retry timing in Mastra Code so the TUI only shows a retry delay when a retry is actually scheduled. ([#20392](https://github.com/mastra-ai/mastra/pull/20392))
|
|
10
|
+
|
|
11
|
+
- Improved Mastra Code connection recovery with up to 10 retries, exponential backoff starting at 500ms, and visible retry progress in the TUI. ([#19724](https://github.com/mastra-ai/mastra/pull/19724))
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`1288cba`](https://github.com/mastra-ai/mastra/commit/1288cba09b8ab906dba38270c7e2a75400344a98), [`3f472b4`](https://github.com/mastra-ai/mastra/commit/3f472b468892a1ff14ccb43cc0343b86f7d8fd7d), [`ba369f2`](https://github.com/mastra-ai/mastra/commit/ba369f2a0aaf998da0d6aa033d26f64f96bef8ac), [`7457af7`](https://github.com/mastra-ai/mastra/commit/7457af7d309fa4ba4d975904249c0d05ec32e6b7), [`35b929b`](https://github.com/mastra-ai/mastra/commit/35b929b7abc3d20d85c7985880960ac2d04a6c86), [`55c9e24`](https://github.com/mastra-ai/mastra/commit/55c9e248c27c1d72b5bb7e94ea6b8a3999eee49f), [`dcfed93`](https://github.com/mastra-ai/mastra/commit/dcfed93e1e256c6abfa792cbb7ca836f5d0e8638), [`2876e15`](https://github.com/mastra-ai/mastra/commit/2876e15b4d2f616a3bc1ed3af57d546c268384ce), [`35b929b`](https://github.com/mastra-ai/mastra/commit/35b929b7abc3d20d85c7985880960ac2d04a6c86), [`9b3626a`](https://github.com/mastra-ai/mastra/commit/9b3626aeb1d16fcd34b0a8e94c114ddb80a3b240), [`6936517`](https://github.com/mastra-ai/mastra/commit/6936517137090304b735a32aca8f8694f91cb927), [`4696963`](https://github.com/mastra-ai/mastra/commit/469696312ac4c618bc8475b0c5ed7949b8a3455e), [`723aa54`](https://github.com/mastra-ai/mastra/commit/723aa5437106bdb708ae03c0ef6b77aa11291e73), [`4137863`](https://github.com/mastra-ai/mastra/commit/4137863eaa35f430117d21d5dc1bf2f534e64339), [`4137863`](https://github.com/mastra-ai/mastra/commit/4137863eaa35f430117d21d5dc1bf2f534e64339), [`07f5b4b`](https://github.com/mastra-ai/mastra/commit/07f5b4ba9d608d88865030732e580298296adf99), [`723aa54`](https://github.com/mastra-ai/mastra/commit/723aa5437106bdb708ae03c0ef6b77aa11291e73), [`723aa54`](https://github.com/mastra-ai/mastra/commit/723aa5437106bdb708ae03c0ef6b77aa11291e73), [`598080f`](https://github.com/mastra-ai/mastra/commit/598080f224edb3f0f5b801035b067fac50a56a03)]:
|
|
14
|
+
- @mastra/pg@1.18.1
|
|
15
|
+
- @mastra/core@1.55.0
|
|
16
|
+
- @mastra/code-sdk@1.1.1
|
|
17
|
+
|
|
3
18
|
## 0.32.4-alpha.3
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/cli.cjs
CHANGED
|
@@ -13,7 +13,7 @@ let _mastra_code_sdk_utils_stdin_pipe = require("@mastra/code-sdk/utils/stdin-pi
|
|
|
13
13
|
let _mastra_code_sdk_utils_thread_lock = require("@mastra/code-sdk/utils/thread-lock");
|
|
14
14
|
//#region src/version.ts
|
|
15
15
|
function getCurrentVersion() {
|
|
16
|
-
return "0.32.4
|
|
16
|
+
return "0.32.4";
|
|
17
17
|
}
|
|
18
18
|
//#endregion
|
|
19
19
|
//#region src/main.ts
|
package/dist/cli.js
CHANGED
|
@@ -12,7 +12,7 @@ import { drainPipedStdin, reopenStdinFromTTY } from "@mastra/code-sdk/utils/stdi
|
|
|
12
12
|
import { releaseAllThreadLocks } from "@mastra/code-sdk/utils/thread-lock";
|
|
13
13
|
//#region src/version.ts
|
|
14
14
|
function getCurrentVersion() {
|
|
15
|
-
return "0.32.4
|
|
15
|
+
return "0.32.4";
|
|
16
16
|
}
|
|
17
17
|
//#endregion
|
|
18
18
|
//#region src/main.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mastracode",
|
|
3
|
-
"version": "0.32.4
|
|
3
|
+
"version": "0.32.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -99,22 +99,22 @@
|
|
|
99
99
|
"vscode-languageserver-protocol": "^3.17.5",
|
|
100
100
|
"yaml": "^2.7.1",
|
|
101
101
|
"zod": "^4.3.6",
|
|
102
|
+
"@mastra/code-sdk": "^1.1.1",
|
|
102
103
|
"@mastra/agent-browser": "0.4.1",
|
|
103
104
|
"@mastra/fastembed": "1.2.0",
|
|
104
|
-
"@mastra/core": "1.55.0-alpha.3",
|
|
105
105
|
"@mastra/duckdb": "1.5.2",
|
|
106
|
-
"@mastra/code-sdk": "^1.1.1-alpha.3",
|
|
107
|
-
"@mastra/libsql": "1.18.0",
|
|
108
|
-
"@mastra/mcp": "1.15.0",
|
|
109
106
|
"@mastra/github-signals": "0.2.2",
|
|
107
|
+
"@mastra/core": "1.55.0",
|
|
108
|
+
"@mastra/mcp": "1.15.0",
|
|
110
109
|
"@mastra/memory": "1.24.0",
|
|
111
|
-
"@mastra/
|
|
112
|
-
"@mastra/schema-compat": "1.3.4",
|
|
113
|
-
"@mastra/pg": "1.18.1-alpha.0",
|
|
110
|
+
"@mastra/libsql": "1.18.0",
|
|
114
111
|
"@mastra/stagehand": "0.3.1",
|
|
115
|
-
"@mastra/
|
|
112
|
+
"@mastra/schema-compat": "1.3.4",
|
|
116
113
|
"@mastra/tavily": "1.1.1",
|
|
117
|
-
"@mastra/voice-
|
|
114
|
+
"@mastra/voice-deepgram": "0.13.0",
|
|
115
|
+
"@mastra/observability": "1.16.3",
|
|
116
|
+
"@mastra/voice-openai": "0.13.0",
|
|
117
|
+
"@mastra/pg": "1.18.1"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
120
|
"@copilotkit/aimock": "^1.29.0",
|
|
@@ -128,8 +128,8 @@
|
|
|
128
128
|
"typescript": "^6.0.3",
|
|
129
129
|
"typescript-eslint": "^8.57.0",
|
|
130
130
|
"vitest": "4.1.10",
|
|
131
|
-
"@internal/lint": "0.0.
|
|
132
|
-
"@internal/types-builder": "0.0.
|
|
131
|
+
"@internal/lint": "0.0.119",
|
|
132
|
+
"@internal/types-builder": "0.0.94"
|
|
133
133
|
},
|
|
134
134
|
"engines": {
|
|
135
135
|
"node": ">=22.19.0"
|