@powerhousedao/switchboard 5.3.0-staging.3 → 5.3.0-staging.4
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 +18 -0
- package/Dockerfile +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 5.3.0-staging.4 (2026-01-19)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- new cicd flows ([0f52d237b](https://github.com/powerhouse-inc/powerhouse/commit/0f52d237b))
|
|
6
|
+
- **ci:** deploy staging tenant from release/staging/* branches ([3bce3ce41](https://github.com/powerhouse-inc/powerhouse/commit/3bce3ce41))
|
|
7
|
+
- **ci:** add Harbor registry to docker image publishing ([bb100a302](https://github.com/powerhouse-inc/powerhouse/commit/bb100a302))
|
|
8
|
+
|
|
9
|
+
### 🩹 Fixes
|
|
10
|
+
|
|
11
|
+
- **monorepo:** exclude root package from recursive build to prevent infinite loop ([bf8ecc244](https://github.com/powerhouse-inc/powerhouse/commit/bf8ecc244))
|
|
12
|
+
- **docker:** install prettier globally for ph init project ([b3bf4f1f6](https://github.com/powerhouse-inc/powerhouse/commit/b3bf4f1f6))
|
|
13
|
+
- workflow permissions ([6ea8e6b0e](https://github.com/powerhouse-inc/powerhouse/commit/6ea8e6b0e))
|
|
14
|
+
|
|
15
|
+
### ❤️ Thank You
|
|
16
|
+
|
|
17
|
+
- Frank
|
|
18
|
+
|
|
1
19
|
## 5.3.0-staging.3 (2026-01-19)
|
|
2
20
|
|
|
3
21
|
### 🩹 Fixes
|
package/Dockerfile
CHANGED
|
@@ -39,7 +39,7 @@ ENV TAG=$TAG
|
|
|
39
39
|
# RUN apk add --no-cache openssl
|
|
40
40
|
# Configure JSR registry for @jsr scoped packages
|
|
41
41
|
RUN pnpm config set @jsr:registry https://npm.jsr.io
|
|
42
|
-
RUN pnpm add -g ph-cmd@$TAG prisma@5.17.0
|
|
42
|
+
RUN pnpm add -g ph-cmd@$TAG prisma@5.17.0 prettier
|
|
43
43
|
|
|
44
44
|
RUN case "$TAG" in \
|
|
45
45
|
*dev*) ph init project --dev --package-manager pnpm ;; \
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerhousedao/switchboard",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.3.0-staging.
|
|
4
|
+
"version": "5.3.0-staging.4",
|
|
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": "5.3.0-staging.
|
|
46
|
-
"@
|
|
47
|
-
"
|
|
48
|
-
"@powerhousedao/reactor": "5.3.0-staging.
|
|
49
|
-
"
|
|
50
|
-
"document-model": "5.3.0-staging.
|
|
45
|
+
"@powerhousedao/config": "5.3.0-staging.4",
|
|
46
|
+
"@powerhousedao/reactor": "5.3.0-staging.4",
|
|
47
|
+
"@renown/sdk": "5.3.0-staging.4",
|
|
48
|
+
"@powerhousedao/reactor-api": "5.3.0-staging.4",
|
|
49
|
+
"document-drive": "5.3.0-staging.4",
|
|
50
|
+
"document-model": "5.3.0-staging.4"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/express": "^4.17.25",
|