@powerhousedao/switchboard 5.0.1 → 5.0.3

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 (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/Dockerfile +7 -10
  3. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## 5.0.3 (2025-11-13)
2
+
3
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
4
+
5
+ ## 5.0.2 (2025-11-05)
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - **switchboard:** use POSIX-compliant syntax ([09f64bf3b](https://github.com/powerhouse-inc/powerhouse/commit/09f64bf3b))
10
+ - prisma openssl not found ([1c9370a93](https://github.com/powerhouse-inc/powerhouse/commit/1c9370a93))
11
+ - publish docker prod workflow ([d701f8dc0](https://github.com/powerhouse-inc/powerhouse/commit/d701f8dc0))
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - Frank
16
+
1
17
  ## 5.0.1 (2025-11-03)
2
18
 
3
19
  ### 🩹 Fixes
package/Dockerfile CHANGED
@@ -1,5 +1,4 @@
1
- FROM node:22-alpine AS build
2
- RUN apk update && apk add git
1
+ FROM node:22 AS build
3
2
  WORKDIR /app
4
3
  COPY . .
5
4
  RUN chmod +x entrypoint.sh
@@ -36,15 +35,13 @@ ENV PH_SWITCHBOARD_PORT=$PORT
36
35
  # Other
37
36
  ARG TAG=latest
38
37
  ENV TAG=$TAG
39
- RUN apk add --no-cache openssl
38
+ # RUN apk add --no-cache openssl
40
39
  RUN pnpm add -g ph-cmd@$TAG prisma
41
- RUN if [[ "$TAG" == *"dev"* ]]; then \
42
- ph init project --dev --package-manager pnpm; \
43
- elif [[ "$TAG" == *"staging"* ]]; then \
44
- ph init project --staging --package-manager pnpm; \
45
- else \
46
- ph init project --package-manager pnpm; \
47
- fi
40
+ RUN case "$TAG" in \
41
+ *dev*) ph init project --dev --package-manager pnpm ;; \
42
+ *staging*) ph init project --staging --package-manager pnpm ;; \
43
+ *) ph init project --package-manager pnpm ;; \
44
+ esac
48
45
 
49
46
 
50
47
  WORKDIR /app/project
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@powerhousedao/switchboard",
3
3
  "type": "module",
4
- "version": "5.0.1",
4
+ "version": "5.0.3",
5
5
  "main": "dist/src/index.js",
6
6
  "exports": {
7
7
  ".": {
@@ -38,11 +38,11 @@
38
38
  "express": "^4.21.2",
39
39
  "graphql": "^16.11.0",
40
40
  "redis": "^4.7.0",
41
- "@powerhousedao/config": "5.0.1",
42
- "@powerhousedao/reactor-api": "5.0.1",
43
- "@powerhousedao/reactor": "5.0.1",
44
- "document-model": "5.0.1",
45
- "document-drive": "5.0.1"
41
+ "@powerhousedao/config": "5.0.3",
42
+ "@powerhousedao/reactor": "5.0.3",
43
+ "@powerhousedao/reactor-api": "5.0.3",
44
+ "document-drive": "5.0.3",
45
+ "document-model": "5.0.3"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/express": "^5.0.3",