@mastra/nestjs 0.1.6-alpha.2 → 0.1.6

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 +18 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @mastra/nestjs
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed NestJS route matching so configured prefixes are enforced and partial prefix matches are ignored. For example, a prefix of `/api` no longer matches `/apiish/agents`; only `/api` and `/api/*` are treated as Mastra routes. ([#16637](https://github.com/mastra-ai/mastra/pull/16637))
8
+
9
+ - Updated dependencies [[`b661349`](https://github.com/mastra-ai/mastra/commit/b661349281514691db78941a9044e6e4f1cde7a7), [`816b974`](https://github.com/mastra-ai/mastra/commit/816b974b424e4a1bfae3af30cc41263b6f1c0344), [`271c044`](https://github.com/mastra-ai/mastra/commit/271c044f6b79ff38cfa3409f4385fbd26a0f3185), [`bad08e9`](https://github.com/mastra-ai/mastra/commit/bad08e99c5291884c3ac76743c78c74f53a302c2), [`816b974`](https://github.com/mastra-ai/mastra/commit/816b974b424e4a1bfae3af30cc41263b6f1c0344), [`b32ba5f`](https://github.com/mastra-ai/mastra/commit/b32ba5fde524b46a4ff1bdf38e30d62a2bb29b04), [`75c7c38`](https://github.com/mastra-ai/mastra/commit/75c7c38a4e9af9821931539dd339f57fcc6414e3)]:
10
+ - @mastra/core@1.35.0
11
+ - @mastra/server@1.35.0
12
+
13
+ ## 0.1.6-alpha.3
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [[`271c044`](https://github.com/mastra-ai/mastra/commit/271c044f6b79ff38cfa3409f4385fbd26a0f3185), [`75c7c38`](https://github.com/mastra-ai/mastra/commit/75c7c38a4e9af9821931539dd339f57fcc6414e3)]:
18
+ - @mastra/core@1.35.0-alpha.3
19
+ - @mastra/server@1.35.0-alpha.3
20
+
3
21
  ## 0.1.6-alpha.2
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/nestjs",
3
- "version": "0.1.6-alpha.2",
3
+ "version": "0.1.6",
4
4
  "description": "Mastra NestJS adapter for the server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -21,7 +21,7 @@
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
23
  "@fastify/busboy": "^3.2.0",
24
- "@mastra/server": "1.35.0-alpha.2"
24
+ "@mastra/server": "1.35.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@nestjs/common": "^10.4.15",
@@ -43,15 +43,15 @@
43
43
  "typescript": "^6.0.3",
44
44
  "vitest": "^3.2.4",
45
45
  "zod": "^3.25.0",
46
- "@internal/lint": "0.0.95",
47
- "@internal/server-adapter-test-utils": "0.0.20",
48
- "@internal/storage-test-utils": "0.0.91",
49
- "@internal/types-builder": "0.0.70",
46
+ "@internal/lint": "0.0.96",
47
+ "@internal/server-adapter-test-utils": "0.0.21",
48
+ "@internal/storage-test-utils": "0.0.92",
49
+ "@internal/types-builder": "0.0.71",
50
+ "@mastra/core": "1.35.0",
51
+ "@mastra/evals": "1.2.2",
52
+ "@mastra/libsql": "1.11.0",
50
53
  "@mastra/observability": "1.12.0",
51
- "@mastra/memory": "1.18.2-alpha.1",
52
- "@mastra/core": "1.35.0-alpha.2",
53
- "@mastra/libsql": "1.11.0-alpha.0",
54
- "@mastra/evals": "1.2.2"
54
+ "@mastra/memory": "1.18.2"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "@mastra/core": ">=1.32.0-0 <2.0.0-0",