@powerhousedao/switchboard 2.5.0-dev.2 → 2.5.0-dev.20

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,123 @@
1
+ ## 2.5.0-dev.20 (2025-06-12)
2
+
3
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
4
+
5
+ ## 2.5.0-dev.19 (2025-06-12)
6
+
7
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
8
+
9
+ ## 2.5.0-dev.18 (2025-06-12)
10
+
11
+ ### 🚀 Features
12
+
13
+ - added docker publish workflow ([adf65ef8a](https://github.com/powerhouse-inc/powerhouse/commit/adf65ef8a))
14
+
15
+ ### ❤️ Thank You
16
+
17
+ - Frank
18
+
19
+ ## 2.5.0-dev.17 (2025-06-12)
20
+
21
+ ### 🚀 Features
22
+
23
+ - show app skeleton while loading and accessibility fixes ([4f96e2472](https://github.com/powerhouse-inc/powerhouse/commit/4f96e2472))
24
+
25
+ ### ❤️ Thank You
26
+
27
+ - acaldas
28
+
29
+ ## 2.5.0-dev.16 (2025-06-11)
30
+
31
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
32
+
33
+ ## 2.5.0-dev.15 (2025-06-11)
34
+
35
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
36
+
37
+ ## 2.5.0-dev.14 (2025-06-10)
38
+
39
+ ### 🚀 Features
40
+
41
+ - improved analytics frontend integration ([269aed50c](https://github.com/powerhouse-inc/powerhouse/commit/269aed50c))
42
+
43
+ ### ❤️ Thank You
44
+
45
+ - acaldas @acaldas
46
+
47
+ ## 2.5.0-dev.13 (2025-06-10)
48
+
49
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
50
+
51
+ ## 2.5.0-dev.12 (2025-06-10)
52
+
53
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
54
+
55
+ ## 2.5.0-dev.11 (2025-06-07)
56
+
57
+ ### 🚀 Features
58
+
59
+ - **connect:** updated diff-analyzer processor ([ce5d1219f](https://github.com/powerhouse-inc/powerhouse/commit/ce5d1219f))
60
+
61
+ ### ❤️ Thank You
62
+
63
+ - acaldas
64
+
65
+ ## 2.5.0-dev.10 (2025-06-06)
66
+
67
+ ### 🚀 Features
68
+
69
+ - run analytics db on web worker ([ecf79575f](https://github.com/powerhouse-inc/powerhouse/commit/ecf79575f))
70
+
71
+ ### ❤️ Thank You
72
+
73
+ - acaldas
74
+
75
+ ## 2.5.0-dev.9 (2025-06-05)
76
+
77
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
78
+
79
+ ## 2.5.0-dev.8 (2025-06-05)
80
+
81
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
82
+
83
+ ## 2.5.0-dev.7 (2025-06-05)
84
+
85
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
86
+
87
+ ## 2.5.0-dev.6 (2025-06-05)
88
+
89
+ ### 🩹 Fixes
90
+
91
+ - set node 22 in release branch workflow ([b33681938](https://github.com/powerhouse-inc/powerhouse/commit/b33681938))
92
+
93
+ ### ❤️ Thank You
94
+
95
+ - Frank
96
+
97
+ ## 2.5.0-dev.5 (2025-06-05)
98
+
99
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
100
+
101
+ ## 2.5.0-dev.4 (2025-06-05)
102
+
103
+ ### 🩹 Fixes
104
+
105
+ - **builder-tools:** move esbuild dev dep to deps ([baa22be6f](https://github.com/powerhouse-inc/powerhouse/commit/baa22be6f))
106
+
107
+ ### ❤️ Thank You
108
+
109
+ - ryanwolhuter @ryanwolhuter
110
+
111
+ ## 2.5.0-dev.3 (2025-06-05)
112
+
113
+ ### 🚀 Features
114
+
115
+ - **builder-tools:** add node polyfills esbuild plugin for connect build ([43dd16b4d](https://github.com/powerhouse-inc/powerhouse/commit/43dd16b4d))
116
+
117
+ ### ❤️ Thank You
118
+
119
+ - ryanwolhuter
120
+
1
121
  ## 2.5.0-dev.2 (2025-06-05)
2
122
 
3
123
  This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
package/Dockerfile CHANGED
@@ -38,9 +38,8 @@ ARG PH_TAG=latest
38
38
  ENV PH_TAG=$PH_TAG
39
39
 
40
40
  RUN pnpm add -g ph-cmd@$PH_TAG && \
41
- ph init powerhouse --package-manager pnpm && \
42
- cd /app/powerhouse && \
43
- ph use $PH_TAG
41
+ ph init powerhouse --package-manager pnpm --tag $PH_TAG && \
42
+ cd /app/powerhouse
44
43
 
45
44
  # Copy and set up entrypoint script
46
45