@powerhousedao/switchboard 2.5.0-dev.23 → 2.5.0-dev.25

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 CHANGED
@@ -1,3 +1,33 @@
1
+ ## 2.5.0-dev.25 (2025-06-13)
2
+
3
+ ### 🚀 Features
4
+
5
+ - start dependent services with switchboard ([188c82c6a](https://github.com/powerhouse-inc/powerhouse/commit/188c82c6a))
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - **docker:** request write permissions ([29d4d3fd7](https://github.com/powerhouse-inc/powerhouse/commit/29d4d3fd7))
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - Frank
14
+
15
+ ## 2.5.0-dev.24 (2025-06-13)
16
+
17
+ ### 🚀 Features
18
+
19
+ - added hostnames in docker compose ([a590eea17](https://github.com/powerhouse-inc/powerhouse/commit/a590eea17))
20
+ - **docker-compose:** work with published images ([9f31b70fb](https://github.com/powerhouse-inc/powerhouse/commit/9f31b70fb))
21
+ - **ci:** build and publish docker images on newly created tags ([ee930c4a4](https://github.com/powerhouse-inc/powerhouse/commit/ee930c4a4))
22
+
23
+ ### 🩹 Fixes
24
+
25
+ - **switchboard:** entrypoint script ([a50e5eb06](https://github.com/powerhouse-inc/powerhouse/commit/a50e5eb06))
26
+
27
+ ### ❤️ Thank You
28
+
29
+ - Frank
30
+
1
31
  ## 2.5.0-dev.23 (2025-06-13)
2
32
 
3
33
  ### 🩹 Fixes
package/entrypoint.sh CHANGED
@@ -1,6 +1,5 @@
1
1
  #!/bin/sh
2
2
  set -e
3
- cd /app/powerhouse
4
3
 
5
4
  if [ ! -z "$PH_PACKAGES" ]; then
6
5
  # Convert comma-separated list to space-separated
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@powerhousedao/switchboard",
3
3
  "type": "module",
4
- "version": "2.5.0-dev.23",
4
+ "version": "2.5.0-dev.25",
5
5
  "main": "dist/src/index.js",
6
6
  "exports": {
7
7
  ".": "./dist/src/index.js",
@@ -29,10 +29,10 @@
29
29
  "express": "^4.21.2",
30
30
  "graphql": "^16.11.0",
31
31
  "redis": "^4.7.0",
32
- "@powerhousedao/reactor-api": "2.5.0-dev.23",
33
- "@powerhousedao/config": "2.5.0-dev.23",
34
- "document-drive": "2.5.0-dev.23",
35
- "document-model": "2.5.0-dev.23"
32
+ "@powerhousedao/config": "2.5.0-dev.25",
33
+ "@powerhousedao/reactor-api": "2.5.0-dev.25",
34
+ "document-drive": "2.5.0-dev.25",
35
+ "document-model": "2.5.0-dev.25"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/express": "^5.0.0",