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

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