@mastra/deployer 1.0.0-beta.23 → 1.0.0-beta.24
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 +10 -0
- package/dist/docs/README.md +1 -1
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/SOURCE_MAP.json +1 -1
- package/dist/server/index.cjs +7 -1
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +7 -1
- package/dist/server/index.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix a bug where `/openapi.json` was always generated during `mastra build`. The `server.build.openAPIDocs` setting is now observed. ([#11718](https://github.com/mastra-ai/mastra/pull/11718))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`1dbd8c7`](https://github.com/mastra-ai/mastra/commit/1dbd8c729fb6536ec52f00064d76b80253d346e9), [`c59e13c`](https://github.com/mastra-ai/mastra/commit/c59e13c7688284bd96b2baee3e314335003548de), [`f9a2509`](https://github.com/mastra-ai/mastra/commit/f9a25093ea72d210a5e52cfcb3bcc8b5e02dc25c), [`7a010c5`](https://github.com/mastra-ai/mastra/commit/7a010c56b846a313a49ae42fccd3d8de2b9f292d)]:
|
|
10
|
+
- @mastra/core@1.0.0-beta.24
|
|
11
|
+
- @mastra/server@1.0.0-beta.24
|
|
12
|
+
|
|
3
13
|
## 1.0.0-beta.23
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/docs/README.md
CHANGED
package/dist/docs/SKILL.md
CHANGED
package/dist/server/index.cjs
CHANGED
|
@@ -3726,7 +3726,7 @@ async function createHonoServer(mastra, options = {
|
|
|
3726
3726
|
tools: options.tools,
|
|
3727
3727
|
taskStore: a2aTaskStore,
|
|
3728
3728
|
bodyLimitOptions,
|
|
3729
|
-
openapiPath: "/openapi.json",
|
|
3729
|
+
openapiPath: options?.isDev || server?.build?.openAPIDocs ? "/openapi.json" : void 0,
|
|
3730
3730
|
customRouteAuthConfig
|
|
3731
3731
|
});
|
|
3732
3732
|
honoServerAdapter.registerContextMiddleware();
|
|
@@ -3802,6 +3802,12 @@ async function createHonoServer(mastra, options = {
|
|
|
3802
3802
|
}
|
|
3803
3803
|
await honoServerAdapter.registerRoutes();
|
|
3804
3804
|
if (options?.isDev || server?.build?.swaggerUI) {
|
|
3805
|
+
if (!options?.isDev && server?.build?.swaggerUI && !server?.build?.openAPIDocs) {
|
|
3806
|
+
const logger2 = mastra.getLogger();
|
|
3807
|
+
logger2.warn(
|
|
3808
|
+
"Swagger UI is enabled but OpenAPI documentation is disabled. The Swagger UI will not function properly without the OpenAPI endpoint. Please enable openAPIDocs in your server.build configuration:\n server: { build: { swaggerUI: true, openAPIDocs: true } }"
|
|
3809
|
+
);
|
|
3810
|
+
}
|
|
3805
3811
|
app.get(
|
|
3806
3812
|
"/swagger-ui",
|
|
3807
3813
|
describeRoute({
|