@powerhousedao/switchboard 6.0.0-dev.17 → 6.0.0-dev.19

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,29 @@
1
+ ## 6.0.0-dev.19 (2026-01-26)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - **docker:** add ph-cli to global install for switchboard ([6cea7f52e](https://github.com/powerhouse-inc/powerhouse/commit/6cea7f52e))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Frank
10
+
11
+ ## 6.0.0-dev.18 (2026-01-26)
12
+
13
+ ### 🚀 Features
14
+
15
+ - **ph-cli, ph-cmd:** use cmd ts for remaining ph cmd commands ([#2209](https://github.com/powerhouse-inc/powerhouse/pull/2209))
16
+
17
+ ### 🩹 Fixes
18
+
19
+ - trailing newline in publish-docker-images workflow ([7d2e30db4](https://github.com/powerhouse-inc/powerhouse/commit/7d2e30db4))
20
+ - **ci:** remove deploy-k8s from publish-docker-images workflow ([c5869e82f](https://github.com/powerhouse-inc/powerhouse/commit/c5869e82f))
21
+
22
+ ### ❤️ Thank You
23
+
24
+ - Frank
25
+ - Ryan Wolhuter @ryanwolhuter
26
+
1
27
  ## 6.0.0-dev.17 (2026-01-26)
2
28
 
3
29
  This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
package/Dockerfile CHANGED
@@ -19,8 +19,8 @@ RUN pnpm config set @jsr:registry https://npm.jsr.io
19
19
  ARG TAG=latest
20
20
  ARG PH_PACKAGES=""
21
21
 
22
- # Install ph-cmd, prisma, and prettier
23
- RUN pnpm add -g ph-cmd@$TAG prisma@5.17.0 prettier
22
+ # Install ph-cmd, ph-cli, prisma, and prettier
23
+ RUN pnpm add -g ph-cmd@$TAG @powerhousedao/ph-cli@$TAG prisma@5.17.0 prettier
24
24
 
25
25
  # Initialize project based on tag
26
26
  RUN case "$TAG" in \
@@ -59,9 +59,9 @@ RUN corepack enable && corepack prepare pnpm@latest --activate
59
59
  # Configure JSR registry
60
60
  RUN pnpm config set @jsr:registry https://npm.jsr.io
61
61
 
62
- # Install ph-cmd and prisma globally (needed at runtime)
62
+ # Install ph-cmd, ph-cli and prisma globally (needed at runtime)
63
63
  ARG TAG=latest
64
- RUN pnpm add -g ph-cmd@$TAG prisma@5.17.0
64
+ RUN pnpm add -g ph-cmd@$TAG @powerhousedao/ph-cli@$TAG prisma@5.17.0
65
65
 
66
66
  # Copy built project from build stage
67
67
  COPY --from=build /app/project /app/project
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@powerhousedao/switchboard",
3
3
  "type": "module",
4
- "version": "6.0.0-dev.17",
4
+ "version": "6.0.0-dev.19",
5
5
  "main": "dist/src/index.js",
6
6
  "exports": {
7
7
  ".": {
@@ -42,12 +42,12 @@
42
42
  "kysely-pglite-dialect": "^1.1.1",
43
43
  "pg": "^8.13.0",
44
44
  "redis": "^4.7.0",
45
- "@powerhousedao/config": "6.0.0-dev.17",
46
- "@powerhousedao/reactor": "6.0.0-dev.17",
47
- "@renown/sdk": "6.0.0-dev.17",
48
- "@powerhousedao/reactor-api": "6.0.0-dev.17",
49
- "document-drive": "6.0.0-dev.17",
50
- "document-model": "6.0.0-dev.17"
45
+ "@powerhousedao/reactor": "6.0.0-dev.19",
46
+ "@powerhousedao/config": "6.0.0-dev.19",
47
+ "@powerhousedao/reactor-api": "6.0.0-dev.19",
48
+ "@renown/sdk": "6.0.0-dev.19",
49
+ "document-drive": "6.0.0-dev.19",
50
+ "document-model": "6.0.0-dev.19"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/express": "^4.17.25",