@mastra/deployer 0.24.7-alpha.4 → 0.24.7

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 +39 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,44 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.24.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Improve nested ts-config paths resolution for NX users ([#10766](https://github.com/mastra-ai/mastra/pull/10766))
8
+
9
+ - Fix dev playground auth to allow non-protected paths to bypass authentication when `MASTRA_DEV=true`, while still requiring the `x-mastra-dev-playground` header for protected endpoints ([#10723](https://github.com/mastra-ai/mastra/pull/10723))
10
+
11
+ - Fixed a bug where ESM shims were incorrectly injected even when the user had already declared `__filename` or `__dirname` ([#10823](https://github.com/mastra-ai/mastra/pull/10823))
12
+
13
+ - Fix tsconfig.json parsing when file contains JSONC comments ([#11040](https://github.com/mastra-ai/mastra/pull/11040))
14
+
15
+ The `hasPaths()` function now uses `strip-json-comments` to properly parse tsconfig.json files that contain comments. Previously, `JSON.parse()` would fail silently on JSONC comments, causing path aliases like `@src/*` to be incorrectly treated as npm scoped packages.
16
+
17
+ - Fixed module not found errors during production builds by skipping transitive dependency validation. Production builds now only bundle direct dependencies, which also results in faster deployment times. ([#10589](https://github.com/mastra-ai/mastra/pull/10589))
18
+
19
+ Fixes #10116
20
+ Fixes #10055
21
+ Fixes #9951
22
+
23
+ - Add restart method to workflow run that allows restarting an active workflow run ([#10703](https://github.com/mastra-ai/mastra/pull/10703))
24
+ Add status filter to `getWorkflowRuns`
25
+ Add automatic restart to restart active workflow runs when server starts
26
+
27
+ - Fixed bundling to correctly exclude subpath imports of external packages. Previously, when a package like `lodash` was marked as external, subpath imports such as `lodash/merge` were still being bundled incorrectly. Now all subpaths are properly excluded. ([#10596](https://github.com/mastra-ai/mastra/pull/10596))
28
+
29
+ Fixes #10055
30
+
31
+ - Improved error messages when bundling fails during deployment. ([#10997](https://github.com/mastra-ai/mastra/pull/10997))
32
+
33
+ **What changed:**
34
+ - Build errors now show clearer messages that identify the problematic package
35
+ - Added detection for common issues like missing native builds and unresolved modules
36
+ - Errors in workspace packages are now properly identified with actionable guidance
37
+
38
+ - Updated dependencies [[`5cc85aa`](https://github.com/mastra-ai/mastra/commit/5cc85aa4329773cac8314f3aa0146227b6b158e4), [`c53f8e6`](https://github.com/mastra-ai/mastra/commit/c53f8e68df42464935f9a63eb0fc765a65aacb83), [`386ab43`](https://github.com/mastra-ai/mastra/commit/386ab4350cf2a814fb4ac0a5fc6983ca93158ffe), [`2b62302`](https://github.com/mastra-ai/mastra/commit/2b623027a9d65c1dbc963bf651e9e6a9d09da1fa), [`7d85da4`](https://github.com/mastra-ai/mastra/commit/7d85da42a5fab56009a959a9c20328558d14f4b5), [`3d7c5bd`](https://github.com/mastra-ai/mastra/commit/3d7c5bdbee1b2693cd45bf207b960dd9b7277680), [`31b381e`](https://github.com/mastra-ai/mastra/commit/31b381efb48e031c0ecc46bc6e410ae6e67b88e5), [`54cc99c`](https://github.com/mastra-ai/mastra/commit/54cc99cb99483b9e08ec41fa1502f43b71b4c351), [`e77a5f9`](https://github.com/mastra-ai/mastra/commit/e77a5f9718dc418e29e3c8a389299ed6dc0a6401), [`b685c9c`](https://github.com/mastra-ai/mastra/commit/b685c9c0b89f49e0d4542c4ac72569682db69794), [`b069af5`](https://github.com/mastra-ai/mastra/commit/b069af514c4dcfc4fdcb164303569bfff1c26e3d), [`ce01a90`](https://github.com/mastra-ai/mastra/commit/ce01a90ac4c32314c2f0cb4e4d0cf973afda11ec), [`7dc8304`](https://github.com/mastra-ai/mastra/commit/7dc830420296db516b86dcec663e54d0309b8fb8), [`6942109`](https://github.com/mastra-ai/mastra/commit/694210903c70e3c26b5ce8ca4f4637ca2d9eb369), [`62d13f4`](https://github.com/mastra-ai/mastra/commit/62d13f4d1db1c16742831f210fe4c2caf8a26d57), [`358ab98`](https://github.com/mastra-ai/mastra/commit/358ab98024c388e383aca15616e8988bf4a5b66e)]:
39
+ - @mastra/core@0.24.7
40
+ - @mastra/server@0.24.7
41
+
3
42
  ## 0.24.7-alpha.4
4
43
 
5
44
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer",
3
- "version": "0.24.7-alpha.4",
3
+ "version": "0.24.7",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -115,7 +115,7 @@
115
115
  "strip-json-comments": "^5.0.3",
116
116
  "tinyglobby": "^0.2.15",
117
117
  "typescript-paths": "^1.5.1",
118
- "@mastra/server": "^0.24.7-alpha.4"
118
+ "@mastra/server": "^0.24.7"
119
119
  },
120
120
  "devDependencies": {
121
121
  "@hono/node-server": "^1.19.5",
@@ -134,10 +134,10 @@
134
134
  "typescript": "^5.8.3",
135
135
  "vitest": "^3.2.4",
136
136
  "zod": "^3.25.76",
137
- "@internal/lint": "0.0.64",
138
- "@internal/types-builder": "0.0.39",
139
- "@mastra/core": "0.24.7-alpha.4",
140
- "@mastra/mcp": "^0.14.5-alpha.1"
137
+ "@internal/lint": "0.0.65",
138
+ "@internal/types-builder": "0.0.40",
139
+ "@mastra/core": "0.24.7",
140
+ "@mastra/mcp": "^0.14.5"
141
141
  },
142
142
  "peerDependencies": {
143
143
  "@mastra/core": ">=0.24.0-0 <0.25.0-0",