@mastra/express 0.0.2-beta.2 → 0.0.2-beta.4

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 +20 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @mastra/express
2
2
 
3
+ ## 0.0.2-beta.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Add HonoApp interface to eliminate `as any` cast when passing Hono app to MastraServer. Users can now pass typed Hono apps directly without casting. ([#10846](https://github.com/mastra-ai/mastra/pull/10846))
8
+
9
+ Fix example type issues in server-adapters
10
+
11
+ - Updated dependencies [[`72df8ae`](https://github.com/mastra-ai/mastra/commit/72df8ae595584cdd7747d5c39ffaca45e4507227), [`9198899`](https://github.com/mastra-ai/mastra/commit/91988995c427b185c33714b7f3be955367911324), [`653e65a`](https://github.com/mastra-ai/mastra/commit/653e65ae1f9502c2958a32f47a5a2df11e612a92), [`c6fd6fe`](https://github.com/mastra-ai/mastra/commit/c6fd6fedd09e9cf8004b03a80925f5e94826ad7e), [`0bed332`](https://github.com/mastra-ai/mastra/commit/0bed332843f627202c6520eaf671771313cd20f3)]:
12
+ - @mastra/core@1.0.0-beta.9
13
+ - @mastra/server@1.0.0-beta.9
14
+
15
+ ## 0.0.2-beta.3
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
20
+ - @mastra/core@1.0.0-beta.8
21
+ - @mastra/server@1.0.0-beta.8
22
+
3
23
  ## 0.0.2-beta.2
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/express",
3
- "version": "0.0.2-beta.2",
3
+ "version": "0.0.2-beta.4",
4
4
  "description": "Mastra Express adapter for the server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
- "@mastra/server": "1.0.0-beta.7"
23
+ "@mastra/server": "1.0.0-beta.9"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "^20.19.0",
@@ -36,14 +36,14 @@
36
36
  "zod": "^3.25.0",
37
37
  "swagger-ui-express": "^5.0.1",
38
38
  "@types/swagger-ui-express": "^4.1.6",
39
- "@internal/server-adapter-test-utils": "0.0.1",
40
39
  "@internal/lint": "0.0.53",
41
40
  "@internal/storage-test-utils": "0.0.49",
42
- "@mastra/core": "1.0.0-beta.7",
41
+ "@mastra/core": "1.0.0-beta.9",
43
42
  "@mastra/evals": "1.0.0-beta.2",
44
- "@mastra/libsql": "1.0.0-beta.4",
45
43
  "@mastra/observability": "1.0.0-beta.3",
46
- "@mastra/memory": "1.0.0-beta.3",
44
+ "@internal/server-adapter-test-utils": "0.0.1",
45
+ "@mastra/libsql": "1.0.0-beta.6",
46
+ "@mastra/memory": "1.0.0-beta.4",
47
47
  "@internal/types-builder": "0.0.28"
48
48
  },
49
49
  "peerDependencies": {