@mastra/factory 0.10.1-alpha.0 → 0.10.1-alpha.1
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 +19 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @mastra/factory
|
|
2
2
|
|
|
3
|
+
## 0.10.1-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Factory now uses Mona Sans across the whole app, matching Studio, instead of the system font. ([#22385](https://github.com/mastra-ai/mastra/pull/22385))
|
|
8
|
+
|
|
9
|
+
The sidebar was retuned to go with it: each section is titled by what it lists, with an icon for work items, review sessions and user sessions, and the "Factory" title is gone since the links under it name themselves.
|
|
10
|
+
|
|
11
|
+
- Retuned the Factory chat so the composer and the tool output read as part of the conversation. ([#22403](https://github.com/mastra-ai/mastra/pull/22403))
|
|
12
|
+
|
|
13
|
+
- The text you type is now the same size as the transcript, in a softer grey, on a lighter box.
|
|
14
|
+
- The composer sits slightly wider than the messages above it and closer to the bottom edge, at every screen width.
|
|
15
|
+
- Slash command suggestions highlight the selected row against the lighter composer instead of blending into it.
|
|
16
|
+
- Diff blocks inside a tool call sit one step above the chat surface, so they read as a block again.
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [[`7677a2c`](https://github.com/mastra-ai/mastra/commit/7677a2cd47729221ca28afc5067d26e22d925b59), [`f7a7467`](https://github.com/mastra-ai/mastra/commit/f7a74678193921e7ea4790232d707b3237626cac), [`f9c56f3`](https://github.com/mastra-ai/mastra/commit/f9c56f336ee8c250763a438990f8e60a428353c9)]:
|
|
19
|
+
- @mastra/core@1.63.0-alpha.1
|
|
20
|
+
- @mastra/code-sdk@1.5.1-alpha.1
|
|
21
|
+
|
|
3
22
|
## 0.10.1-alpha.0
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/factory",
|
|
3
|
-
"version": "0.10.1-alpha.
|
|
3
|
+
"version": "0.10.1-alpha.1",
|
|
4
4
|
"description": "Mastra Software Factory module: the server core behind the Mastra Software Factory — storage domains, integrations, and surfaces for agent-powered software delivery",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"@octokit/rest": "^22.0.1",
|
|
52
52
|
"hono": "^4.12.8",
|
|
53
53
|
"zod": "^4.3.6",
|
|
54
|
-
"@mastra/auth-workos": "1.6.4",
|
|
55
|
-
"@mastra/code-sdk": "1.5.1-alpha.0",
|
|
56
|
-
"@mastra/core": "1.63.0-alpha.0",
|
|
57
54
|
"@mastra/auth-studio": "1.3.4",
|
|
55
|
+
"@mastra/auth-workos": "1.6.4",
|
|
56
|
+
"@mastra/code-sdk": "1.5.1-alpha.1",
|
|
57
|
+
"@mastra/core": "1.63.0-alpha.1",
|
|
58
58
|
"@mastra/slack": "1.6.2-alpha.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
"typescript-eslint": "^8.57.0",
|
|
66
66
|
"vitest": "4.1.10",
|
|
67
67
|
"@internal/lint": "0.0.126",
|
|
68
|
+
"@mastra/libsql": "1.22.0",
|
|
68
69
|
"@mastra/pg": "1.22.0",
|
|
69
|
-
"@internal/types-builder": "0.0.101"
|
|
70
|
-
"@mastra/libsql": "1.22.0"
|
|
70
|
+
"@internal/types-builder": "0.0.101"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
73
|
"node": ">=22.19.0"
|