@powerhousedao/switchboard 6.2.3-dev.3 → 6.2.3-dev.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.
- package/.tsbuild/tsconfig.tsbuildinfo +1 -1
- package/CHANGELOG.md +12 -0
- package/dist/index.mjs +1 -1
- package/dist/{server-B2r6AQ4Q.mjs → server-CiKkVE6g.mjs} +6 -4
- package/dist/{server-B2r6AQ4Q.mjs.map → server-CiKkVE6g.mjs.map} +1 -1
- package/dist/server.d.mts.map +1 -1
- package/dist/server.mjs +3 -3
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 6.2.3-dev.4 (2026-09-12)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **reactor-api:** warn at boot when auth is on but anonymous is still admitted ([84605330c](https://github.com/powerhouse-inc/powerhouse/commit/84605330c))
|
|
6
|
+
- **document-model:** make ConsoleLogger methods safe to detach ([686032a9a](https://github.com/powerhouse-inc/powerhouse/commit/686032a9a))
|
|
7
|
+
|
|
8
|
+
### ❤️ Thank You
|
|
9
|
+
|
|
10
|
+
- Benjamin Jordan
|
|
11
|
+
- Claude Opus 5
|
|
12
|
+
|
|
1
13
|
## 6.2.3-dev.3 (2026-09-11)
|
|
2
14
|
|
|
3
15
|
### 🚀 Features
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="c6c10af1-f4cc-56a5-abf6-fa35cf0de956")}catch(e){}}();
|
|
4
|
-
import { a as parseForcePgVersion, r as startSwitchboard } from "./server-
|
|
4
|
+
import { a as parseForcePgVersion, r as startSwitchboard } from "./server-CiKkVE6g.mjs";
|
|
5
5
|
import "./utils-Baw7rThP.mjs";
|
|
6
6
|
import { metrics } from "@opentelemetry/api";
|
|
7
7
|
import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-http";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e2c62b7b-68fd-59c2-ab82-7d035e11698b")}catch(e){}}();
|
|
3
3
|
import { n as addDefaultReactorDrive, r as isPostgresUrl, t as addDefaultDrive } from "./utils-Baw7rThP.mjs";
|
|
4
4
|
import { register } from "node:module";
|
|
5
5
|
import { ReactorInstrumentation } from "@powerhousedao/opentelemetry-instrumentation-reactor";
|
|
@@ -1417,7 +1417,9 @@ async function initServer(serverPort, options, renown, renownConfig) {
|
|
|
1417
1417
|
packageManager: api.packageManager
|
|
1418
1418
|
});
|
|
1419
1419
|
packageManagementService.setOnModelsChanged(() => {
|
|
1420
|
-
graphqlManager.regenerateDocumentModelSubgraphs().catch(
|
|
1420
|
+
graphqlManager.regenerateDocumentModelSubgraphs().catch((error) => {
|
|
1421
|
+
logger.error("Failed to regenerate document model subgraphs: @error", error);
|
|
1422
|
+
});
|
|
1421
1423
|
});
|
|
1422
1424
|
const packagesSubgraph = new PackagesSubgraph({
|
|
1423
1425
|
relationalDb: void 0,
|
|
@@ -1549,5 +1551,5 @@ if (import.meta.main) await startSwitchboard();
|
|
|
1549
1551
|
//#endregion
|
|
1550
1552
|
export { parseForcePgVersion as a, applySwitchboardReactorDefaults as i, isPortAvailable as n, startSwitchboard as r, deriveAttachmentServiceConfig as t };
|
|
1551
1553
|
|
|
1552
|
-
//# sourceMappingURL=server-
|
|
1553
|
-
//# debugId=
|
|
1554
|
+
//# sourceMappingURL=server-CiKkVE6g.mjs.map
|
|
1555
|
+
//# debugId=e2c62b7b-68fd-59c2-ab82-7d035e11698b
|