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

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,19 @@
1
+ ## 2.5.0-dev.24 (2025-06-13)
2
+
3
+ ### 🚀 Features
4
+
5
+ - added hostnames in docker compose ([a590eea17](https://github.com/powerhouse-inc/powerhouse/commit/a590eea17))
6
+ - **docker-compose:** work with published images ([9f31b70fb](https://github.com/powerhouse-inc/powerhouse/commit/9f31b70fb))
7
+ - **ci:** build and publish docker images on newly created tags ([ee930c4a4](https://github.com/powerhouse-inc/powerhouse/commit/ee930c4a4))
8
+
9
+ ### 🩹 Fixes
10
+
11
+ - **switchboard:** entrypoint script ([a50e5eb06](https://github.com/powerhouse-inc/powerhouse/commit/a50e5eb06))
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - Frank
16
+
1
17
  ## 2.5.0-dev.23 (2025-06-13)
2
18
 
3
19
  ### 🩹 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.24",
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.24",
33
+ "@powerhousedao/reactor-api": "2.5.0-dev.24",
34
+ "document-drive": "2.5.0-dev.24",
35
+ "document-model": "2.5.0-dev.24"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/express": "^5.0.0",