mastracode 0.37.0-alpha.3 → 0.37.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 CHANGED
@@ -1,5 +1,37 @@
1
1
  # mastracode
2
2
 
3
+ ## 0.37.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Added `/model` to change the model for the current mode. Mastra Code prompts for a provider API key when the selected model needs one, and cancelling the prompt leaves the mode unchanged. Changes persist across sessions. Built-in packs keep their identity and accept same-provider overrides, while custom packs continue to support mixed providers. Modified built-in packs are labeled in `/models` and can be activated with their overrides or reset to their original models. `/models` switches model packs and ranks ahead of `/model` in command lists, with `/packs` available as an alias. ([#22429](https://github.com/mastra-ai/mastra/pull/22429))
8
+
9
+ ```text
10
+ /model
11
+ /packs
12
+ ```
13
+
14
+ - Added Kimi For Coding account authentication, API key authentication, and models through `/connect`. ([#22428](https://github.com/mastra-ai/mastra/pull/22428))
15
+
16
+ ```text
17
+ /connect
18
+ ```
19
+
20
+ - Added `/connect` for provider accounts and API keys. `/login` continues to open provider account sign-in. ([#22426](https://github.com/mastra-ai/mastra/pull/22426))
21
+
22
+ ### Patch Changes
23
+
24
+ - Stopped showing the Git user email address in the startup header. ([#22430](https://github.com/mastra-ai/mastra/pull/22430))
25
+
26
+ - Updated dependencies [[`bae1502`](https://github.com/mastra-ai/mastra/commit/bae150254b06a4da6964d7c137af97f336362359), [`f7c4d1a`](https://github.com/mastra-ai/mastra/commit/f7c4d1ab8c9490c460c7642902eabc9d96dbd497), [`0885364`](https://github.com/mastra-ai/mastra/commit/0885364c2fc7fa31febcfc444fc1ba5231ac1257), [`295e506`](https://github.com/mastra-ai/mastra/commit/295e506b9e6cec99e7181c5f712648888cd9486f), [`b8cb683`](https://github.com/mastra-ai/mastra/commit/b8cb683ba66499df254ddd1f7edd8cae3f89d2e7), [`8c3be07`](https://github.com/mastra-ai/mastra/commit/8c3be0761a862c5c035ed6e5d633de87cbba20e7), [`078affd`](https://github.com/mastra-ai/mastra/commit/078affdaea57ac5e95a77e9e7b197d1878190684), [`a87ff53`](https://github.com/mastra-ai/mastra/commit/a87ff53cef9318bea80c38c3bf3d9d9d507ac3c1), [`9e3403e`](https://github.com/mastra-ai/mastra/commit/9e3403e9868240cb18841898e84cf008ebd7a87e), [`00707f3`](https://github.com/mastra-ai/mastra/commit/00707f376a7cea7a26ce8a18ddfaefdc947dcf5a), [`791bf5e`](https://github.com/mastra-ai/mastra/commit/791bf5e81cd27e2e1cff66122f1380ab8a3dda41)]:
27
+ - @mastra/core@1.63.1
28
+ - @mastra/code-sdk@1.5.2
29
+ - @mastra/memory@1.28.1
30
+ - @mastra/libsql@1.22.1
31
+ - @mastra/pg@1.22.1
32
+ - @mastra/observability@1.17.4
33
+ - @mastra/mcp@1.17.2
34
+
3
35
  ## 0.37.0-alpha.3
4
36
 
5
37
  ### Patch Changes
package/dist/cli.cjs CHANGED
@@ -41,7 +41,7 @@ function createShutdownCoordinator(cleanup, exit, timeoutMs = 5e3) {
41
41
  //#endregion
42
42
  //#region src/version.ts
43
43
  function getCurrentVersion() {
44
- return "0.37.0-alpha.3";
44
+ return "0.37.0";
45
45
  }
46
46
  //#endregion
47
47
  //#region src/main.ts
package/dist/cli.js CHANGED
@@ -40,7 +40,7 @@ function createShutdownCoordinator(cleanup, exit, timeoutMs = 5e3) {
40
40
  //#endregion
41
41
  //#region src/version.ts
42
42
  function getCurrentVersion() {
43
- return "0.37.0-alpha.3";
43
+ return "0.37.0";
44
44
  }
45
45
  //#endregion
46
46
  //#region src/main.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mastracode",
3
- "version": "0.37.0-alpha.3",
3
+ "version": "0.37.0",
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/core": "1.63.1-alpha.3",
103
+ "@mastra/core": "1.63.1",
104
104
  "@mastra/duckdb": "1.6.3",
105
105
  "@mastra/fastembed": "1.3.0",
106
106
  "@mastra/github-signals": "0.3.0",
107
- "@mastra/libsql": "1.22.1-alpha.0",
107
+ "@mastra/code-sdk": "^1.5.2",
108
+ "@mastra/libsql": "1.22.1",
108
109
  "@mastra/mcp": "1.17.2",
109
- "@mastra/memory": "1.28.1-alpha.1",
110
- "@mastra/pg": "1.22.1-alpha.0",
111
- "@mastra/observability": "1.17.4-alpha.0",
110
+ "@mastra/memory": "1.28.1",
111
+ "@mastra/observability": "1.17.4",
112
+ "@mastra/pg": "1.22.1",
112
113
  "@mastra/schema-compat": "1.3.7",
113
114
  "@mastra/stagehand": "0.3.3",
114
115
  "@mastra/tavily": "1.1.1",
115
116
  "@mastra/voice-deepgram": "0.13.0",
116
- "@mastra/code-sdk": "^1.5.2-alpha.3",
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/lint": "0.0.127",
132
- "@internal/types-builder": "0.0.102"
131
+ "@internal/lint": "0.0.128",
132
+ "@internal/types-builder": "0.0.103"
133
133
  },
134
134
  "engines": {
135
135
  "node": ">=22.19.0"