@powerhousedao/switchboard 5.0.8 → 5.0.10
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 +14 -0
- package/entrypoint.sh +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 5.0.10 (2025-11-19)
|
|
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.9 (2025-11-19)
|
|
6
|
+
|
|
7
|
+
### 🩹 Fixes
|
|
8
|
+
|
|
9
|
+
- **switchboard:** use prisma 5.17 on schema push ([17412eb12](https://github.com/powerhouse-inc/powerhouse/commit/17412eb12))
|
|
10
|
+
|
|
11
|
+
### ❤️ Thank You
|
|
12
|
+
|
|
13
|
+
- Frank
|
|
14
|
+
|
|
1
15
|
## 5.0.8 (2025-11-19)
|
|
2
16
|
|
|
3
17
|
### 🚀 Features
|
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
|
+
pnpx prisma@5.17.0 db push --schema node_modules/document-drive/dist/prisma/schema.prisma
|
|
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": "5.0.
|
|
4
|
+
"version": "5.0.10",
|
|
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
|
-
"@powerhousedao/reactor": "5.0.
|
|
43
|
-
"@powerhousedao/
|
|
44
|
-
"document-drive": "5.0.
|
|
45
|
-
"document-model": "5.0.
|
|
41
|
+
"@powerhousedao/reactor": "5.0.10",
|
|
42
|
+
"@powerhousedao/reactor-api": "5.0.10",
|
|
43
|
+
"@powerhousedao/config": "5.0.10",
|
|
44
|
+
"document-drive": "5.0.10",
|
|
45
|
+
"document-model": "5.0.10"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/express": "^4.17.25",
|