@mastra/code-sdk 1.5.2-alpha.3 → 1.5.3-alpha.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @mastra/code-sdk
2
2
 
3
+ ## 1.5.3-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`3e7eced`](https://github.com/mastra-ai/mastra/commit/3e7eced50f51fb068cba581763248a012f295ba4), [`3e7eced`](https://github.com/mastra-ai/mastra/commit/3e7eced50f51fb068cba581763248a012f295ba4), [`0a9d29c`](https://github.com/mastra-ai/mastra/commit/0a9d29c0c4dbbaa6afc1c8146cdd41759cbd4002)]:
8
+ - @mastra/libsql@1.22.2-alpha.0
9
+ - @mastra/pg@1.22.2-alpha.0
10
+ - @mastra/core@1.63.2-alpha.0
11
+
12
+ ## 1.5.2
13
+
14
+ ### Patch Changes
15
+
16
+ - Added Kimi For Coding account authentication, API key authentication, token refresh, and model routing. ([#22428](https://github.com/mastra-ai/mastra/pull/22428))
17
+
18
+ ```text
19
+ /connect
20
+ ```
21
+
22
+ - Fix knowledge captured in factory sessions being stored in the wrong tenant. ([#21823](https://github.com/mastra-ai/mastra/pull/21823))
23
+
24
+ Knowledge captured during a factory session is now always stored under the organization
25
+ that owns the session, so it is visible in that organization's knowledge graph. A session
26
+ whose organization cannot be determined no longer stores knowledge somewhere it could
27
+ never be read back from; it stops capturing and reports why. Local (TUI/studio) use is
28
+ unaffected and captures under a dedicated local scope.
29
+
30
+ - Updated dependencies [[`bae1502`](https://github.com/mastra-ai/mastra/commit/bae150254b06a4da6964d7c137af97f336362359), [`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), [`791bf5e`](https://github.com/mastra-ai/mastra/commit/791bf5e81cd27e2e1cff66122f1380ab8a3dda41)]:
31
+ - @mastra/core@1.63.1
32
+ - @mastra/memory@1.28.1
33
+ - @mastra/libsql@1.22.1
34
+ - @mastra/pg@1.22.1
35
+ - @mastra/observability@1.17.4
36
+ - @mastra/mcp@1.17.2
37
+
3
38
  ## 1.5.2-alpha.3
4
39
 
5
40
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/code-sdk",
3
- "version": "1.5.2-alpha.3",
3
+ "version": "1.5.3-alpha.0",
4
4
  "description": "Mastra Code SDK: the agent core behind Mastra Code (everything except the TUI) — build your own UIs and surfaces on top of it",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -58,19 +58,19 @@
58
58
  "yaml": "^2.7.1",
59
59
  "zod": "^4.3.6",
60
60
  "@mastra/agent-browser": "0.5.1",
61
- "@mastra/core": "1.63.1-alpha.3",
62
61
  "@mastra/duckdb": "1.6.3",
63
62
  "@mastra/fastembed": "1.3.0",
64
63
  "@mastra/github-signals": "0.3.0",
65
- "@mastra/observability": "1.17.4-alpha.0",
66
64
  "@mastra/mcp": "1.17.2",
67
- "@mastra/libsql": "1.22.1-alpha.0",
65
+ "@mastra/observability": "1.17.4",
66
+ "@mastra/core": "1.63.2-alpha.0",
67
+ "@mastra/libsql": "1.22.2-alpha.0",
68
68
  "@mastra/parallel": "0.1.0",
69
- "@mastra/pg": "1.22.1-alpha.0",
70
- "@mastra/memory": "1.28.1-alpha.1",
69
+ "@mastra/memory": "1.28.1",
70
+ "@mastra/pg": "1.22.2-alpha.0",
71
71
  "@mastra/schema-compat": "1.3.7",
72
- "@mastra/tavily": "1.1.1",
73
- "@mastra/stagehand": "0.3.3"
72
+ "@mastra/stagehand": "0.3.3",
73
+ "@mastra/tavily": "1.1.1"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@libsql/client": "^0.17.4",
@@ -81,9 +81,9 @@
81
81
  "typescript": "^6.0.3",
82
82
  "typescript-eslint": "^8.57.0",
83
83
  "vitest": "4.1.10",
84
- "@internal/lint": "0.0.127",
85
- "@internal/types-builder": "0.0.102",
86
- "@internal/workspace-test-utils": "0.0.71"
84
+ "@internal/lint": "0.0.128",
85
+ "@internal/types-builder": "0.0.103",
86
+ "@internal/workspace-test-utils": "0.0.72"
87
87
  },
88
88
  "engines": {
89
89
  "node": ">=22.19.0"