@powerhousedao/switchboard 4.1.0-dev.125 → 4.1.0-dev.127
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 +20 -0
- package/Dockerfile +1 -1
- package/entrypoint.sh +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## 4.1.0-dev.127 (2025-11-19)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **reactor-api:** downgraded prisma ([9a8a5cefd](https://github.com/powerhouse-inc/powerhouse/commit/9a8a5cefd))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Frank
|
|
10
|
+
|
|
11
|
+
## 4.1.0-dev.126 (2025-11-19)
|
|
12
|
+
|
|
13
|
+
### 🩹 Fixes
|
|
14
|
+
|
|
15
|
+
- **switchboard, ph-cli, document-drive:** --skip-generate on prisma db push ([a37f816a4](https://github.com/powerhouse-inc/powerhouse/commit/a37f816a4))
|
|
16
|
+
|
|
17
|
+
### ❤️ Thank You
|
|
18
|
+
|
|
19
|
+
- acaldas @acaldas
|
|
20
|
+
|
|
1
21
|
## 4.1.0-dev.125 (2025-11-19)
|
|
2
22
|
|
|
3
23
|
This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
|
package/Dockerfile
CHANGED
|
@@ -36,7 +36,7 @@ ENV PH_SWITCHBOARD_PORT=$PORT
|
|
|
36
36
|
ARG TAG=latest
|
|
37
37
|
ENV TAG=$TAG
|
|
38
38
|
# RUN apk add --no-cache openssl
|
|
39
|
-
RUN pnpm add -g ph-cmd@$TAG prisma
|
|
39
|
+
RUN pnpm add -g ph-cmd@$TAG prisma@5.17.0
|
|
40
40
|
RUN case "$TAG" in \
|
|
41
41
|
*dev*) ph init project --dev --package-manager pnpm ;; \
|
|
42
42
|
*staging*) ph init project --staging --package-manager pnpm ;; \
|
package/entrypoint.sh
CHANGED
|
@@ -14,7 +14,7 @@ fi
|
|
|
14
14
|
# Check if DATABASE_URL starts with postgres and run Prisma db push
|
|
15
15
|
if [ ! -z "$DATABASE_URL" ] && echo "$DATABASE_URL" | grep -q "^postgres"; then
|
|
16
16
|
echo "[entrypoint] DATABASE_URL starts with postgres, running Prisma db push..."
|
|
17
|
-
prisma db push --schema node_modules/document-drive/dist/prisma/schema.prisma
|
|
17
|
+
prisma db push --schema node_modules/document-drive/dist/prisma/schema.prisma --skip-generate
|
|
18
18
|
fi
|
|
19
19
|
|
|
20
20
|
echo "[entrypoint] Starting switchboard..."
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerhousedao/switchboard",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.1.0-dev.
|
|
4
|
+
"version": "4.1.0-dev.127",
|
|
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/
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
41
|
+
"@powerhousedao/config": "4.1.0-dev.127",
|
|
42
|
+
"@powerhousedao/reactor": "4.1.0-dev.127",
|
|
43
|
+
"@powerhousedao/reactor-api": "4.1.0-dev.127",
|
|
44
|
+
"document-drive": "4.1.0-dev.127",
|
|
45
|
+
"document-model": "4.1.0-dev.127"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/express": "^4.17.25",
|