@powerhousedao/switchboard 6.0.0-dev.24 → 6.0.0-dev.26

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 CHANGED
@@ -1,3 +1,22 @@
1
+ ## 6.0.0-dev.26 (2026-01-29)
2
+
3
+ ### 🚀 Features
4
+
5
+ - update minimum node version to 24 ([7a71107c5](https://github.com/powerhouse-inc/powerhouse/commit/7a71107c5))
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - undo my changes to the tsc script ([0a36d0a49](https://github.com/powerhouse-inc/powerhouse/commit/0a36d0a49))
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - acaldas @acaldas
14
+ - Benjamin Jordan (@thegoldenmule)
15
+
16
+ ## 6.0.0-dev.25 (2026-01-28)
17
+
18
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
19
+
1
20
  ## 6.0.0-dev.24 (2026-01-27)
2
21
 
3
22
  ### 🚀 Features
package/Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
1
  # Build stage
2
- FROM node:22-alpine AS build
2
+ FROM node:24-alpine AS build
3
3
 
4
4
  WORKDIR /app
5
5
 
@@ -44,7 +44,7 @@ RUN if [ -n "$PH_PACKAGES" ]; then \
44
44
  RUN prisma generate --schema node_modules/document-drive/dist/prisma/schema.prisma
45
45
 
46
46
  # Final stage - slim node image
47
- FROM node:22-alpine
47
+ FROM node:24-alpine
48
48
 
49
49
  WORKDIR /app
50
50
 
package/dist/src/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { config } from "./config.js";
3
3
  import { startSwitchboard } from "./server.js";
4
- function ensureNodeVersion(minVersion = "22") {
4
+ function ensureNodeVersion(minVersion = "24") {
5
5
  const version = process.versions.node;
6
6
  if (!version) {
7
7
  return;
@@ -12,7 +12,7 @@ function ensureNodeVersion(minVersion = "22") {
12
12
  }
13
13
  }
14
14
  // Ensure minimum Node.js version
15
- ensureNodeVersion("22");
15
+ ensureNodeVersion("24");
16
16
  process.on("SIGINT", () => {
17
17
  console.log("\nShutting down...");
18
18
  process.exit(0);