mastracode 0.32.3-alpha.4 → 0.32.3

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,29 @@
1
1
  # mastracode
2
2
 
3
+ ## 0.32.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed observational memory staying on the Gemini default after you sign in to Anthropic or OpenAI. First-run setup and `/login` now select the small, cheap OM model of the provider you just connected, and the TUI tells you when it does. An OM model you picked yourself is never replaced. ([#20291](https://github.com/mastra-ai/mastra/pull/20291))
8
+
9
+ Providers with no cheap OM model (GitHub Copilot, xAI) no longer pin observation and reflection to their full-size coding model — OM stays open so a later login can set it.
10
+
11
+ When an OM run fails, the hint names the model OM is using and keeps the advice for the actual failure, so an authentication error still points at `/login` and a rate limit still tells you to wait, alongside `/memory` to switch OM models.
12
+
13
+ - Fixed `!` shell commands in Mastra Code: typing `!<command>` while the agent is still working now runs the command locally in your terminal instead of being sent to the model as a message. ([#20269](https://github.com/mastra-ai/mastra/pull/20269))
14
+
15
+ - The Mastra Code input prompt now switches to `!` when you start a message with `!`, matching the existing `/` and `@` affordances, so it is clear the line will run as a shell command. ([#20269](https://github.com/mastra-ai/mastra/pull/20269))
16
+
17
+ - Updated dependencies [[`ce93a3c`](https://github.com/mastra-ai/mastra/commit/ce93a3c114ea1cbfbd576f3db41d7c26c9844f5b), [`5718a22`](https://github.com/mastra-ai/mastra/commit/5718a229281dcfd36bcd1f42a242e3717e510a33), [`a211d09`](https://github.com/mastra-ai/mastra/commit/a211d09185dc65a746534914cf38b67f21ee9bac), [`0dca9d0`](https://github.com/mastra-ai/mastra/commit/0dca9d0b1356024a53b72ea6f040db528b126caa), [`6218217`](https://github.com/mastra-ai/mastra/commit/62182171b6cfca0b099f1c6a77a2e65e7639ab86), [`f014c26`](https://github.com/mastra-ai/mastra/commit/f014c26f3445118b684e286ee5819b46dfa943a0), [`5807d3a`](https://github.com/mastra-ai/mastra/commit/5807d3ae1d259b8b7d6df7e5bf2b485c694af9c8), [`57661af`](https://github.com/mastra-ai/mastra/commit/57661afeca52ff9af4e72675ede2134fa503d5a5), [`05db566`](https://github.com/mastra-ai/mastra/commit/05db566fcbdcbf33d0bffca0c72ec30129e2e3ca), [`57661af`](https://github.com/mastra-ai/mastra/commit/57661afeca52ff9af4e72675ede2134fa503d5a5), [`273bb71`](https://github.com/mastra-ai/mastra/commit/273bb71e82e74b656f3906288239429899398c0c), [`57661af`](https://github.com/mastra-ai/mastra/commit/57661afeca52ff9af4e72675ede2134fa503d5a5), [`05db566`](https://github.com/mastra-ai/mastra/commit/05db566fcbdcbf33d0bffca0c72ec30129e2e3ca), [`57661af`](https://github.com/mastra-ai/mastra/commit/57661afeca52ff9af4e72675ede2134fa503d5a5), [`5718a22`](https://github.com/mastra-ai/mastra/commit/5718a229281dcfd36bcd1f42a242e3717e510a33), [`57661af`](https://github.com/mastra-ai/mastra/commit/57661afeca52ff9af4e72675ede2134fa503d5a5), [`d1b7e3a`](https://github.com/mastra-ai/mastra/commit/d1b7e3a978a309a5653eeaa490d2d6c7c53bd093), [`29c584a`](https://github.com/mastra-ai/mastra/commit/29c584a13a88831e5ed1fdeb0ff8e82eae180433), [`8dadb6a`](https://github.com/mastra-ai/mastra/commit/8dadb6abfe449b7f8b129663671cc614f2cceeef), [`c093146`](https://github.com/mastra-ai/mastra/commit/c0931466404d3c521308ea119cb165bb7e695155), [`e075db9`](https://github.com/mastra-ai/mastra/commit/e075db9715c836bae5dfc37c50248492af397c3b), [`8124754`](https://github.com/mastra-ai/mastra/commit/8124754ae89fbc69f8136d1df4a91904d0f84c4e), [`d12b2e4`](https://github.com/mastra-ai/mastra/commit/d12b2e4023fd9e3d3e93a9169f5088bcee2a849c), [`d1b7e3a`](https://github.com/mastra-ai/mastra/commit/d1b7e3a978a309a5653eeaa490d2d6c7c53bd093)]:
18
+ - @mastra/core@1.54.0
19
+ - @mastra/libsql@1.18.0
20
+ - @mastra/memory@1.24.0
21
+ - @mastra/pg@1.18.0
22
+ - @mastra/code-sdk@1.1.0
23
+ - @mastra/duckdb@1.5.2
24
+ - @mastra/observability@1.16.3
25
+ - @mastra/mcp@1.15.0
26
+
3
27
  ## 0.32.3-alpha.4
4
28
 
5
29
  ### 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.3-alpha.4";
16
+ return "0.32.3";
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.3-alpha.4";
15
+ return "0.32.3";
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.3-alpha.4",
3
+ "version": "0.32.3",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -100,21 +100,21 @@
100
100
  "yaml": "^2.7.1",
101
101
  "zod": "^4.3.6",
102
102
  "@mastra/agent-browser": "0.4.1",
103
- "@mastra/duckdb": "1.5.2-alpha.0",
104
- "@mastra/core": "1.54.0-alpha.4",
105
- "@mastra/code-sdk": "^1.1.0-alpha.4",
106
- "@mastra/fastembed": "1.2.0",
103
+ "@mastra/code-sdk": "^1.1.0",
104
+ "@mastra/duckdb": "1.5.2",
105
+ "@mastra/core": "1.54.0",
107
106
  "@mastra/github-signals": "0.2.2",
107
+ "@mastra/fastembed": "1.2.0",
108
+ "@mastra/memory": "1.24.0",
108
109
  "@mastra/mcp": "1.15.0",
109
- "@mastra/observability": "1.16.3-alpha.0",
110
- "@mastra/pg": "1.18.0-alpha.2",
111
- "@mastra/libsql": "1.18.0-alpha.1",
112
- "@mastra/schema-compat": "1.3.4",
110
+ "@mastra/libsql": "1.18.0",
111
+ "@mastra/observability": "1.16.3",
113
112
  "@mastra/stagehand": "0.3.1",
114
- "@mastra/tavily": "1.1.1",
115
- "@mastra/memory": "1.24.0-alpha.0",
113
+ "@mastra/schema-compat": "1.3.4",
116
114
  "@mastra/voice-deepgram": "0.13.0",
117
- "@mastra/voice-openai": "0.13.0"
115
+ "@mastra/tavily": "1.1.1",
116
+ "@mastra/voice-openai": "0.13.0",
117
+ "@mastra/pg": "1.18.0"
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.117",
132
- "@internal/types-builder": "0.0.92"
131
+ "@internal/lint": "0.0.118",
132
+ "@internal/types-builder": "0.0.93"
133
133
  },
134
134
  "engines": {
135
135
  "node": ">=22.19.0"