mastracode 0.33.2-alpha.8 → 0.33.2-alpha.9
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 +9 -0
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# mastracode
|
|
2
2
|
|
|
3
|
+
## 0.33.2-alpha.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`b0a2a07`](https://github.com/mastra-ai/mastra/commit/b0a2a07800d42bd9823292e7db832374ed084c9c), [`b0a2a07`](https://github.com/mastra-ai/mastra/commit/b0a2a07800d42bd9823292e7db832374ed084c9c), [`ccbbcd9`](https://github.com/mastra-ai/mastra/commit/ccbbcd974eedff4367a54ed0e24c9ee742ab2f61), [`3f5c6f7`](https://github.com/mastra-ai/mastra/commit/3f5c6f728ea35da344248de9aa070f12849f3aa0), [`77e6b1b`](https://github.com/mastra-ai/mastra/commit/77e6b1bc4c46ce94fe501023fb4393c812ec6be3), [`2e1d098`](https://github.com/mastra-ai/mastra/commit/2e1d0984e325fd319d32ea182f596b3170be3847)]:
|
|
8
|
+
- @mastra/memory@1.27.0-alpha.2
|
|
9
|
+
- @mastra/core@1.60.0-alpha.9
|
|
10
|
+
- @mastra/code-sdk@1.3.0-alpha.9
|
|
11
|
+
|
|
3
12
|
## 0.33.2-alpha.8
|
|
4
13
|
|
|
5
14
|
### 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.33.2-alpha.
|
|
16
|
+
return "0.33.2-alpha.9";
|
|
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.33.2-alpha.
|
|
15
|
+
return "0.33.2-alpha.9";
|
|
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.33.2-alpha.
|
|
3
|
+
"version": "0.33.2-alpha.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -100,20 +100,20 @@
|
|
|
100
100
|
"yaml": "^2.7.1",
|
|
101
101
|
"zod": "^4.3.6",
|
|
102
102
|
"@mastra/agent-browser": "0.5.1",
|
|
103
|
-
"@mastra/code-sdk": "^1.3.0-alpha.
|
|
104
|
-
"@mastra/core": "1.60.0-alpha.8",
|
|
103
|
+
"@mastra/code-sdk": "^1.3.0-alpha.9",
|
|
105
104
|
"@mastra/fastembed": "1.2.0",
|
|
106
|
-
"@mastra/
|
|
107
|
-
"@mastra/github-signals": "0.2.5",
|
|
105
|
+
"@mastra/core": "1.60.0-alpha.9",
|
|
108
106
|
"@mastra/libsql": "1.20.0",
|
|
107
|
+
"@mastra/github-signals": "0.2.5",
|
|
108
|
+
"@mastra/duckdb": "1.6.2-alpha.0",
|
|
109
109
|
"@mastra/mcp": "1.17.0-alpha.1",
|
|
110
|
-
"@mastra/memory": "1.27.0-alpha.
|
|
110
|
+
"@mastra/memory": "1.27.0-alpha.2",
|
|
111
|
+
"@mastra/observability": "1.17.1-alpha.2",
|
|
111
112
|
"@mastra/pg": "1.20.1-alpha.1",
|
|
113
|
+
"@mastra/schema-compat": "1.3.7",
|
|
112
114
|
"@mastra/stagehand": "0.3.3",
|
|
113
115
|
"@mastra/tavily": "1.1.1",
|
|
114
116
|
"@mastra/voice-deepgram": "0.13.0",
|
|
115
|
-
"@mastra/schema-compat": "1.3.7",
|
|
116
|
-
"@mastra/observability": "1.17.1-alpha.2",
|
|
117
117
|
"@mastra/voice-openai": "0.13.0"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
@@ -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/
|
|
132
|
-
"@internal/
|
|
131
|
+
"@internal/types-builder": "0.0.98",
|
|
132
|
+
"@internal/lint": "0.0.123"
|
|
133
133
|
},
|
|
134
134
|
"engines": {
|
|
135
135
|
"node": ">=22.19.0"
|