@mastra/nestjs 0.2.7-alpha.6 → 0.2.7-alpha.8
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 +16 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/nestjs
|
|
2
2
|
|
|
3
|
+
## 0.2.7-alpha.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`bd6d240`](https://github.com/mastra-ai/mastra/commit/bd6d2402db93dddaef0721667e7e8a030e7c6e16), [`0111486`](https://github.com/mastra-ai/mastra/commit/01114867612593eef5cfa2fda6a1194dfedda841), [`96a3749`](https://github.com/mastra-ai/mastra/commit/96a37492235f5b8076b3e3177d83ed5a5e44a640), [`02c2bd9`](https://github.com/mastra-ai/mastra/commit/02c2bd906b145ab806287712e1796d92bfc32c2a), [`3e26c87`](https://github.com/mastra-ai/mastra/commit/3e26c87de0c5bc2583b795ce6ca5889b6b161acb), [`a5008f2`](https://github.com/mastra-ai/mastra/commit/a5008f22ae710ad9402ea9f2547d8c02f74d384b)]:
|
|
8
|
+
- @mastra/core@1.51.0-alpha.8
|
|
9
|
+
- @mastra/server@1.51.0-alpha.8
|
|
10
|
+
|
|
11
|
+
## 0.2.7-alpha.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`25e7c12`](https://github.com/mastra-ai/mastra/commit/25e7c126a770069ae7fb7ecf1d2adb40e017b009), [`1ce5121`](https://github.com/mastra-ai/mastra/commit/1ce512155d122bb21f47d98383e82ffbf84b39e8), [`3cfc47a`](https://github.com/mastra-ai/mastra/commit/3cfc47a6b89940aadd0f46fb01ae9624a73a865d), [`2bb7817`](https://github.com/mastra-ai/mastra/commit/2bb78176112fde628483de2830528f7eee911e56), [`51d9870`](https://github.com/mastra-ai/mastra/commit/51d987032c689c2855374d0f244f5d654da809d1), [`5cab274`](https://github.com/mastra-ai/mastra/commit/5cab2744250e22d12fefa7b32637dce224233cee), [`7fa27d3`](https://github.com/mastra-ai/mastra/commit/7fa27d3b6f5ed68cd34e454a4d3ad9c482a0cfbc), [`a58dcbb`](https://github.com/mastra-ai/mastra/commit/a58dcbb546d7e1d65ebdc1f39e55f0908fcd9391), [`153bd3b`](https://github.com/mastra-ai/mastra/commit/153bd3b396bdfed6b74cf43de12db8fd2d83c04a), [`07bb863`](https://github.com/mastra-ai/mastra/commit/07bb8631919c6f7cf377dccd45b096e0f17fbed0), [`8a586ec`](https://github.com/mastra-ai/mastra/commit/8a586eca9a4914f31dff6140d0d45ac375b00669), [`3927473`](https://github.com/mastra-ai/mastra/commit/392747323ddb10c643d12be7b9ae913159dfaeed), [`25e7c12`](https://github.com/mastra-ai/mastra/commit/25e7c126a770069ae7fb7ecf1d2adb40e017b009), [`dce50dc`](https://github.com/mastra-ai/mastra/commit/dce50dc9a1c1fcd0f427bb5f6250ec74910cb04b), [`634caff`](https://github.com/mastra-ai/mastra/commit/634caff29a9200ad058b67d53f96d9e5832fb8a2), [`25e7c12`](https://github.com/mastra-ai/mastra/commit/25e7c126a770069ae7fb7ecf1d2adb40e017b009)]:
|
|
16
|
+
- @mastra/core@1.51.0-alpha.7
|
|
17
|
+
- @mastra/server@1.51.0-alpha.7
|
|
18
|
+
|
|
3
19
|
## 0.2.7-alpha.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/nestjs",
|
|
3
|
-
"version": "0.2.7-alpha.
|
|
3
|
+
"version": "0.2.7-alpha.8",
|
|
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.51.0-alpha.
|
|
24
|
+
"@mastra/server": "1.51.0-alpha.8"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@nestjs/common": "^11.1.26",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@nestjs/testing": "^11.1.26",
|
|
31
31
|
"@types/express": "^5.0.6",
|
|
32
32
|
"@types/node": "^20.19.43",
|
|
33
|
-
"@ai-sdk/openai": "^2.0.
|
|
33
|
+
"@ai-sdk/openai": "^2.0.110",
|
|
34
34
|
"cors": "^2.8.5",
|
|
35
35
|
"@types/cors": "^2.8.19",
|
|
36
36
|
"eslint": "^10.4.1",
|
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
"vitest": "^4.1.8",
|
|
45
45
|
"zod": "^3.25.0",
|
|
46
46
|
"@internal/server-adapter-test-utils": "0.0.25",
|
|
47
|
-
"@internal/lint": "0.0.113",
|
|
48
|
-
"@internal/storage-test-utils": "0.0.109",
|
|
49
47
|
"@internal/types-builder": "0.0.88",
|
|
50
|
-
"@mastra/core": "1.51.0-alpha.
|
|
48
|
+
"@mastra/core": "1.51.0-alpha.8",
|
|
51
49
|
"@mastra/evals": "1.5.1",
|
|
52
50
|
"@mastra/libsql": "1.16.0-alpha.0",
|
|
53
|
-
"@
|
|
54
|
-
"@mastra/
|
|
51
|
+
"@internal/storage-test-utils": "0.0.109",
|
|
52
|
+
"@mastra/observability": "1.16.1-alpha.1",
|
|
53
|
+
"@mastra/memory": "1.23.0-alpha.3",
|
|
54
|
+
"@internal/lint": "0.0.113"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"@mastra/core": ">=1.50.0-0 <2.0.0-0",
|