@powerhousedao/switchboard 2.5.0-dev.9 → 2.5.0-staging.1
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 +31 -0
- package/Dockerfile +11 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/entrypoint.sh +0 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
## 2.5.0-staging.1 (2025-06-13)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- start dependent services with switchboard ([188c82c6a](https://github.com/powerhouse-inc/powerhouse/commit/188c82c6a))
|
|
6
|
+
- added hostnames in docker compose ([a590eea17](https://github.com/powerhouse-inc/powerhouse/commit/a590eea17))
|
|
7
|
+
- **docker-compose:** work with published images ([9f31b70fb](https://github.com/powerhouse-inc/powerhouse/commit/9f31b70fb))
|
|
8
|
+
- **ci:** build and publish docker images on newly created tags ([ee930c4a4](https://github.com/powerhouse-inc/powerhouse/commit/ee930c4a4))
|
|
9
|
+
- added docker publish workflow ([adf65ef8a](https://github.com/powerhouse-inc/powerhouse/commit/adf65ef8a))
|
|
10
|
+
- show app skeleton while loading and accessibility fixes ([4f96e2472](https://github.com/powerhouse-inc/powerhouse/commit/4f96e2472))
|
|
11
|
+
- improved analytics frontend integration ([269aed50c](https://github.com/powerhouse-inc/powerhouse/commit/269aed50c))
|
|
12
|
+
- **connect:** updated diff-analyzer processor ([ce5d1219f](https://github.com/powerhouse-inc/powerhouse/commit/ce5d1219f))
|
|
13
|
+
- run analytics db on web worker ([ecf79575f](https://github.com/powerhouse-inc/powerhouse/commit/ecf79575f))
|
|
14
|
+
|
|
15
|
+
### 🩹 Fixes
|
|
16
|
+
|
|
17
|
+
- **docker:** request write permissions ([29d4d3fd7](https://github.com/powerhouse-inc/powerhouse/commit/29d4d3fd7))
|
|
18
|
+
- **switchboard:** entrypoint script ([a50e5eb06](https://github.com/powerhouse-inc/powerhouse/commit/a50e5eb06))
|
|
19
|
+
- **switchboard:** added semicolons ([ce23c47f0](https://github.com/powerhouse-inc/powerhouse/commit/ce23c47f0))
|
|
20
|
+
- **ci:** set proper tags for docker images ([3cab91969](https://github.com/powerhouse-inc/powerhouse/commit/3cab91969))
|
|
21
|
+
- **ci:** connect deployment ([8ac8e423b](https://github.com/powerhouse-inc/powerhouse/commit/8ac8e423b))
|
|
22
|
+
|
|
23
|
+
### ❤️ Thank You
|
|
24
|
+
|
|
25
|
+
- acaldas
|
|
26
|
+
- Frank
|
|
27
|
+
|
|
28
|
+
## 2.5.0-staging.0 (2025-06-05)
|
|
29
|
+
|
|
30
|
+
This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
|
|
31
|
+
|
|
1
32
|
## 2.5.0-dev.9 (2025-06-05)
|
|
2
33
|
|
|
3
34
|
This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
|
package/Dockerfile
CHANGED
|
@@ -34,13 +34,18 @@ ENV PORT=4001
|
|
|
34
34
|
ENV PH_SWITCHBOARD_PORT=$PORT
|
|
35
35
|
|
|
36
36
|
# Other
|
|
37
|
-
ARG
|
|
38
|
-
ENV
|
|
37
|
+
ARG TAG=latest
|
|
38
|
+
ENV TAG=$TAG
|
|
39
39
|
|
|
40
|
-
RUN pnpm add -g ph-cmd@$
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
40
|
+
RUN pnpm add -g ph-cmd@$TAG
|
|
41
|
+
RUN if [ "$TAG" = "dev" ] || [ "$TAG" = "staging" ]; then \
|
|
42
|
+
ph init project --${TAG} --package-manager pnpm; \
|
|
43
|
+
else \
|
|
44
|
+
ph init project --package-manager pnpm; \
|
|
45
|
+
fi
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
WORKDIR /app/project
|
|
44
49
|
|
|
45
50
|
# Copy and set up entrypoint script
|
|
46
51
|
|