@powerhousedao/switchboard 6.0.0-dev.12 → 6.0.0-dev.120

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.
Files changed (47) hide show
  1. package/Auth.md +45 -27
  2. package/CHANGELOG.md +1007 -5
  3. package/Dockerfile +2 -2
  4. package/README.md +13 -12
  5. package/dist/src/config.d.ts +1 -1
  6. package/dist/src/config.d.ts.map +1 -1
  7. package/dist/src/index.js +33 -5
  8. package/dist/src/index.js.map +1 -1
  9. package/dist/src/metrics.d.ts +7 -0
  10. package/dist/src/metrics.d.ts.map +1 -0
  11. package/dist/src/metrics.js +34 -0
  12. package/dist/src/metrics.js.map +1 -0
  13. package/dist/src/profiler.d.ts +6 -1
  14. package/dist/src/profiler.d.ts.map +1 -1
  15. package/dist/src/profiler.js +31 -5
  16. package/dist/src/profiler.js.map +1 -1
  17. package/dist/src/renown.d.ts +24 -0
  18. package/dist/src/renown.d.ts.map +1 -0
  19. package/dist/src/renown.js +45 -0
  20. package/dist/src/renown.js.map +1 -0
  21. package/dist/src/server.d.ts +0 -1
  22. package/dist/src/server.d.ts.map +1 -1
  23. package/dist/src/server.js +146 -145
  24. package/dist/src/server.js.map +1 -1
  25. package/dist/src/types.d.ts +27 -18
  26. package/dist/src/types.d.ts.map +1 -1
  27. package/dist/src/utils.d.ts +2 -3
  28. package/dist/src/utils.d.ts.map +1 -1
  29. package/dist/src/utils.js +3 -32
  30. package/dist/src/utils.js.map +1 -1
  31. package/dist/test/metrics.test.d.ts +2 -0
  32. package/dist/test/metrics.test.d.ts.map +1 -0
  33. package/dist/test/metrics.test.js +121 -0
  34. package/dist/test/metrics.test.js.map +1 -0
  35. package/dist/tsconfig.tsbuildinfo +1 -1
  36. package/dist/vitest.config.d.ts +3 -0
  37. package/dist/vitest.config.d.ts.map +1 -0
  38. package/dist/vitest.config.js +11 -0
  39. package/dist/vitest.config.js.map +1 -0
  40. package/package.json +34 -25
  41. package/test/metrics.test.ts +202 -0
  42. package/tsconfig.json +17 -4
  43. package/vitest.config.ts +11 -0
  44. package/dist/src/connect-crypto.d.ts +0 -41
  45. package/dist/src/connect-crypto.d.ts.map +0 -1
  46. package/dist/src/connect-crypto.js +0 -127
  47. package/dist/src/connect-crypto.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,1005 @@
1
+ ## 6.0.0-dev.120 (2026-03-29)
2
+
3
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
4
+
5
+ ## 6.0.0-dev.119 (2026-03-29)
6
+
7
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
8
+
9
+ ## 6.0.0-dev.118 (2026-03-28)
10
+
11
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
12
+
13
+ ## 6.0.0-dev.117 (2026-03-28)
14
+
15
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
16
+
17
+ ## 6.0.0-dev.116 (2026-03-27)
18
+
19
+ ### 🚀 Features
20
+
21
+ - verify signatures on switchboard an consider actions without an app key on signer as unsigned ([c9a45d2e7](https://github.com/powerhouse-inc/powerhouse/commit/c9a45d2e7))
22
+
23
+ ### 🩹 Fixes
24
+
25
+ - **reactor-api:** deserialize signatures in pushSyncEnvelopes resolver ([ab5a33eb6](https://github.com/powerhouse-inc/powerhouse/commit/ab5a33eb6))
26
+ - dependency improvements ([a41a67741](https://github.com/powerhouse-inc/powerhouse/commit/a41a67741))
27
+ - **document-drive:** exclude self from collision check when renaming nodes ([7dfc73268](https://github.com/powerhouse-inc/powerhouse/commit/7dfc73268))
28
+
29
+ ### ❤️ Thank You
30
+
31
+ - acaldas @acaldas
32
+ - Guillermo Puente @gpuente
33
+
34
+ ## 6.0.0-dev.115 (2026-03-27)
35
+
36
+ ### 🚀 Features
37
+
38
+ - **reactor-api:** add MercuriusGatewayAdapter implementing IGatewayAdapter ([ea05779a3](https://github.com/powerhouse-inc/powerhouse/commit/ea05779a3))
39
+ - **reactor-api:** add FastifyHttpAdapter with dispatch-map design ([969d56af3](https://github.com/powerhouse-inc/powerhouse/commit/969d56af3))
40
+ - **reactor-api:** add FastifyHttpAdapter implementing IHttpAdapter ([94d3d9b48](https://github.com/powerhouse-inc/powerhouse/commit/94d3d9b48))
41
+
42
+ ### ❤️ Thank You
43
+
44
+ - Samuel Hawksby-Robinson @Samyoul
45
+
46
+ ## 6.0.0-dev.114 (2026-03-27)
47
+
48
+ ### 🚀 Features
49
+
50
+ - **registry:** simplify Dockerfile to install from npm ([7e2c2fa91](https://github.com/powerhouse-inc/powerhouse/commit/7e2c2fa91))
51
+
52
+ ### 🩹 Fixes
53
+
54
+ - **reactor-api:** resolve ESLint unsafe-any errors in mountNodeRoute and Sentry handler ([40777f429](https://github.com/powerhouse-inc/powerhouse/commit/40777f429))
55
+
56
+ ### ❤️ Thank You
57
+
58
+ - acaldas @acaldas
59
+ - Claude Opus 4.6 (1M context)
60
+ - Samuel Hawksby-Robinson @Samyoul
61
+
62
+ ## 6.0.0-dev.113 (2026-03-27)
63
+
64
+ ### 🚀 Features
65
+
66
+ - expand codegen tests to cover new cases ([#2432](https://github.com/powerhouse-inc/powerhouse/pull/2432))
67
+
68
+ ### 🩹 Fixes
69
+
70
+ - **codegen:** e2e tests for doc model and subgraph generation -- and a fix for a bug they found ([1c58a34df](https://github.com/powerhouse-inc/powerhouse/commit/1c58a34df))
71
+ - **codegen:** handle JSONC comments in ensureTsconfigPaths ([ae3cd38fe](https://github.com/powerhouse-inc/powerhouse/commit/ae3cd38fe))
72
+ - **vetra:** move connect dependency to root and fix CSS import ([1e288a8a9](https://github.com/powerhouse-inc/powerhouse/commit/1e288a8a9))
73
+ - **vetra:** add missing Connect boilerplate files for ph vetra ([bfe64f705](https://github.com/powerhouse-inc/powerhouse/commit/bfe64f705))
74
+
75
+ ### ❤️ Thank You
76
+
77
+ - Benjamin Jordan
78
+ - Guillermo Puente @gpuente
79
+ - Ryan Wolhuter @ryanwolhuter
80
+
81
+ ## 6.0.0-dev.112 (2026-03-26)
82
+
83
+ ### 🚀 Features
84
+
85
+ - **codegen:** e2e codegen processor tests ([08686abc6](https://github.com/powerhouse-inc/powerhouse/commit/08686abc6))
86
+
87
+ ### ❤️ Thank You
88
+
89
+ - Benjamin Jordan
90
+
91
+ ## 6.0.0-dev.111 (2026-03-25)
92
+
93
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
94
+
95
+ ## 6.0.0-dev.110 (2026-03-25)
96
+
97
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
98
+
99
+ ## 6.0.0-dev.109 (2026-03-24)
100
+
101
+ ### 🚀 Features
102
+
103
+ - **vetra-e2e:** add editor creation, registry publish, and consumer install e2e tests ([a215a7d7e](https://github.com/powerhouse-inc/powerhouse/commit/a215a7d7e))
104
+
105
+ ### 🩹 Fixes
106
+
107
+ - **switchboard:** use DATABASE_URL for read model storage instead of PGlite ([fabdf4e96](https://github.com/powerhouse-inc/powerhouse/commit/fabdf4e96))
108
+ - **switchboard:** cast api.app.handle to Express for Vite middleware mount ([87197a864](https://github.com/powerhouse-inc/powerhouse/commit/87197a864))
109
+ - lockfile ([292187fae](https://github.com/powerhouse-inc/powerhouse/commit/292187fae))
110
+
111
+ ### ❤️ Thank You
112
+
113
+ - Benjamin Jordan
114
+ - Frank
115
+ - Guillermo Puente @gpuente
116
+ - Samuel Hawksby-Robinson @Samyoul
117
+
118
+ ## 6.0.0-dev.108 (2026-03-24)
119
+
120
+ ### 🚀 Features
121
+
122
+ - register vetra document models and processors in switchboard ([b50da707e](https://github.com/powerhouse-inc/powerhouse/commit/b50da707e))
123
+ - **switchboard:** add DYNAMIC_MODEL_LOADING feature flag ([50aa9c40e](https://github.com/powerhouse-inc/powerhouse/commit/50aa9c40e))
124
+ - add document drive bundle step ([4c5085630](https://github.com/powerhouse-inc/powerhouse/commit/4c5085630))
125
+ - bundle cli shared stuff separately ([0f1f1ed8e](https://github.com/powerhouse-inc/powerhouse/commit/0f1f1ed8e))
126
+ - move shared cli types ([437455beb](https://github.com/powerhouse-inc/powerhouse/commit/437455beb))
127
+ - deal with an absolutely ridiculous amount of wrong exports ([d45e52ab9](https://github.com/powerhouse-inc/powerhouse/commit/d45e52ab9))
128
+ - **switchboard:** resolve registry URL from powerhouse.config.json ([a524fa593](https://github.com/powerhouse-inc/powerhouse/commit/a524fa593))
129
+ - dang that's a lot of files ([d7c198c22](https://github.com/powerhouse-inc/powerhouse/commit/d7c198c22))
130
+ - add versioned deps as dep of vetra-e2e ([884de81e5](https://github.com/powerhouse-inc/powerhouse/commit/884de81e5))
131
+ - update config for versioned documents test package ([a29d6b9ab](https://github.com/powerhouse-inc/powerhouse/commit/a29d6b9ab))
132
+ - make vetra a common package in connect ([4b366d892](https://github.com/powerhouse-inc/powerhouse/commit/4b366d892))
133
+ - re-implement package manager and add start connect function ([1fd9946b4](https://github.com/powerhouse-inc/powerhouse/commit/1fd9946b4))
134
+ - add build command ([b8427cbca](https://github.com/powerhouse-inc/powerhouse/commit/b8427cbca))
135
+ - remove dependency on knex from analytics engine browser ([e87e0c75a](https://github.com/powerhouse-inc/powerhouse/commit/e87e0c75a))
136
+ - **vetra:** do not bundle processors isomorphically ([6f9d380a6](https://github.com/powerhouse-inc/powerhouse/commit/6f9d380a6))
137
+ - **registry:** use tsdown in registry ([fd3da952b](https://github.com/powerhouse-inc/powerhouse/commit/fd3da952b))
138
+ - **analytics-engine:** use tsdown in analytics engine ([ef8bce39c](https://github.com/powerhouse-inc/powerhouse/commit/ef8bce39c))
139
+ - **builder-tools:** use tsdown for builder tools ([076657a43](https://github.com/powerhouse-inc/powerhouse/commit/076657a43))
140
+ - **ph-cmd:** use tsdown for ph-cmd ([23ea5bc8d](https://github.com/powerhouse-inc/powerhouse/commit/23ea5bc8d))
141
+ - start using tsdown ([b8b03f73a](https://github.com/powerhouse-inc/powerhouse/commit/b8b03f73a))
142
+ - **ph-cli:** use tsdown to bundle ph-cli ([b32726fc1](https://github.com/powerhouse-inc/powerhouse/commit/b32726fc1))
143
+ - add tsdown ([276222480](https://github.com/powerhouse-inc/powerhouse/commit/276222480))
144
+
145
+ ### 🩹 Fixes
146
+
147
+ - include academy tenant in dev releases ([a459f0edf](https://github.com/powerhouse-inc/powerhouse/commit/a459f0edf))
148
+ - add retry loop for k8s push race conditions ([31659b5e3](https://github.com/powerhouse-inc/powerhouse/commit/31659b5e3))
149
+ - deps ([cbb8c5da9](https://github.com/powerhouse-inc/powerhouse/commit/cbb8c5da9))
150
+ - codegen tests ([b857b8ab6](https://github.com/powerhouse-inc/powerhouse/commit/b857b8ab6))
151
+ - **reactor-api:** resolve tsconfig path aliases in switchboard's Vite SSR loader ([dd812a933](https://github.com/powerhouse-inc/powerhouse/commit/dd812a933))
152
+ - **document-drive:** fix tsc build and prisma ESM \_\_dirname error ([f0c252d96](https://github.com/powerhouse-inc/powerhouse/commit/f0c252d96))
153
+ - stop mixing node and browser code ([9d5513533](https://github.com/powerhouse-inc/powerhouse/commit/9d5513533))
154
+ - always build css after bundle ([36dca2c95](https://github.com/powerhouse-inc/powerhouse/commit/36dca2c95))
155
+ - always build css after bundling ([565d11dca](https://github.com/powerhouse-inc/powerhouse/commit/565d11dca))
156
+ - so much, too much to even describe ([4aa9ebf54](https://github.com/powerhouse-inc/powerhouse/commit/4aa9ebf54))
157
+ - e2e tests ([d1bfe5f08](https://github.com/powerhouse-inc/powerhouse/commit/d1bfe5f08))
158
+ - **connect,vetra:** move vite plugin node polyfills to specific packages ([e3b0fa37b](https://github.com/powerhouse-inc/powerhouse/commit/e3b0fa37b))
159
+ - strange export style in reactor browser which caused circular references ([683e17196](https://github.com/powerhouse-inc/powerhouse/commit/683e17196))
160
+ - handle both node and browser types ([90f793133](https://github.com/powerhouse-inc/powerhouse/commit/90f793133))
161
+
162
+ ### ❤️ Thank You
163
+
164
+ - Frank
165
+ - Guillermo Puente @gpuente
166
+ - ryanwolhuter @ryanwolhuter
167
+
168
+ ## 6.0.0-dev.107 (2026-03-23)
169
+
170
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
171
+
172
+ ## 6.0.0-dev.106 (2026-03-23)
173
+
174
+ ### 🚀 Features
175
+
176
+ - add ph build command 2 ([#2415](https://github.com/powerhouse-inc/powerhouse/pull/2415))
177
+
178
+ ### 🩹 Fixes
179
+
180
+ - **release:** remove stale build-connect step, now covered by build-bundle ([e00eed45a](https://github.com/powerhouse-inc/powerhouse/commit/e00eed45a))
181
+ - add git pull --rebase before push in k8s update jobs to avoid race conditions ([fa7af726f](https://github.com/powerhouse-inc/powerhouse/commit/fa7af726f))
182
+
183
+ ### ❤️ Thank You
184
+
185
+ - Frank
186
+ - Ryan Wolhuter @ryanwolhuter
187
+
188
+ ## 6.0.0-dev.105 (2026-03-23)
189
+
190
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
191
+
192
+ ## 6.0.0-dev.104 (2026-03-22)
193
+
194
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
195
+
196
+ ## 6.0.0-dev.103 (2026-03-21)
197
+
198
+ ### 🩹 Fixes
199
+
200
+ - **reactor:** temporary fix for deleting documents and cleaning up all edges too -- very costly ([8a15a0604](https://github.com/powerhouse-inc/powerhouse/commit/8a15a0604))
201
+
202
+ ### ❤️ Thank You
203
+
204
+ - Benjamin Jordan
205
+
206
+ ## 6.0.0-dev.102 (2026-03-20)
207
+
208
+ ### 🩹 Fixes
209
+
210
+ - update workflow to use refname for tag in case it is not annotated, and provide a clear error message when there is no tag ([269758716](https://github.com/powerhouse-inc/powerhouse/commit/269758716))
211
+ - **builder-tools,reactor-browser:** bundling fixes ([59dfd75b6](https://github.com/powerhouse-inc/powerhouse/commit/59dfd75b6))
212
+
213
+ ### ❤️ Thank You
214
+
215
+ - acaldas @acaldas
216
+ - Benjamin Jordan
217
+
218
+ ## 6.0.0-dev.101 (2026-03-20)
219
+
220
+ ### 🚀 Features
221
+
222
+ - **examples:** add Discord webhook processor example ([fc09a4d66](https://github.com/powerhouse-inc/powerhouse/commit/fc09a4d66))
223
+
224
+ ### ❤️ Thank You
225
+
226
+ - Benjamin Jordan
227
+ - Claude Opus 4.6
228
+
229
+ ## 6.0.0-dev.100 (2026-03-19)
230
+
231
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
232
+
233
+ ## 6.0.0-dev.99 (2026-03-18)
234
+
235
+ ### 🚀 Features
236
+
237
+ - **test-subscription:** adding a cli test-client for testing reactor api subscriptions ([563a8ac7d](https://github.com/powerhouse-inc/powerhouse/commit/563a8ac7d))
238
+
239
+ ### 🩹 Fixes
240
+
241
+ - updated pnpm-lock ([c2843dc5b](https://github.com/powerhouse-inc/powerhouse/commit/c2843dc5b))
242
+
243
+ ### ❤️ Thank You
244
+
245
+ - acaldas
246
+ - Benjamin Jordan
247
+
248
+ ## 6.0.0-dev.98 (2026-03-18)
249
+
250
+ ### 🩹 Fixes
251
+
252
+ - **connect:** declare dependencies ([6aa6910d3](https://github.com/powerhouse-inc/powerhouse/commit/6aa6910d3))
253
+
254
+ ### ❤️ Thank You
255
+
256
+ - acaldas
257
+
258
+ ## 6.0.0-dev.97 (2026-03-18)
259
+
260
+ ### 🩹 Fixes
261
+
262
+ - **design-system:** removed zod dependency ([fdc7c2ef7](https://github.com/powerhouse-inc/powerhouse/commit/fdc7c2ef7))
263
+
264
+ ### ❤️ Thank You
265
+
266
+ - acaldas @acaldas
267
+
268
+ ## 6.0.0-dev.96 (2026-03-17)
269
+
270
+ ### 🩹 Fixes
271
+
272
+ - **switchboard:** avoid double /v1/metrics suffix in OTLP exporter URL ([c184093c3](https://github.com/powerhouse-inc/powerhouse/commit/c184093c3))
273
+ - **switchboard:** enforce OTel provider registration ordering via StartServerOptions ([c797fd242](https://github.com/powerhouse-inc/powerhouse/commit/c797fd242))
274
+
275
+ ### ❤️ Thank You
276
+
277
+ - Samuel Hawksby-Robinson @Samyoul
278
+
279
+ ## 6.0.0-dev.95 (2026-03-17)
280
+
281
+ ### 🚀 Features
282
+
283
+ - **switchboard:** add OTel metrics export via OTEL_EXPORTER_OTLP_ENDPOINT ([52f34aa1f](https://github.com/powerhouse-inc/powerhouse/commit/52f34aa1f))
284
+
285
+ ### 🩹 Fixes
286
+
287
+ - **codegen:** added missing deps to boilerplate ([721dcb581](https://github.com/powerhouse-inc/powerhouse/commit/721dcb581))
288
+ - **switchboard:** derive exportTimeoutMillis from exportIntervalMillis ([775a77f3b](https://github.com/powerhouse-inc/powerhouse/commit/775a77f3b))
289
+ - **switchboard:** set exportTimeoutMillis to stay under shutdown deadline ([341d88d9e](https://github.com/powerhouse-inc/powerhouse/commit/341d88d9e))
290
+ - **switchboard:** address further OTel metrics review feedback ([dee185ba8](https://github.com/powerhouse-inc/powerhouse/commit/dee185ba8))
291
+ - **switchboard:** address OTel metrics review feedback ([c5ac016fc](https://github.com/powerhouse-inc/powerhouse/commit/c5ac016fc))
292
+
293
+ ### ❤️ Thank You
294
+
295
+ - acaldas @acaldas
296
+ - Samuel Hawksby-Robinson @Samyoul
297
+
298
+ ## 6.0.0-dev.94 (2026-03-17)
299
+
300
+ ### 🩹 Fixes
301
+
302
+ - **common:** added missing runtime dependencies ([b0f647f75](https://github.com/powerhouse-inc/powerhouse/commit/b0f647f75))
303
+
304
+ ### ❤️ Thank You
305
+
306
+ - acaldas @acaldas
307
+
308
+ ## 6.0.0-dev.93 (2026-03-17)
309
+
310
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
311
+
312
+ ## 6.0.0-dev.92 (2026-03-17)
313
+
314
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
315
+
316
+ ## 6.0.0-dev.91 (2026-03-17)
317
+
318
+ ### 🩹 Fixes
319
+
320
+ - adding build-bundle to simulate-ci-workflow ([ca93d1a2b](https://github.com/powerhouse-inc/powerhouse/commit/ca93d1a2b))
321
+
322
+ ### ❤️ Thank You
323
+
324
+ - Benjamin Jordan
325
+
326
+ ## 6.0.0-dev.90 (2026-03-14)
327
+
328
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
329
+
330
+ ## 6.0.0-dev.89 (2026-03-13)
331
+
332
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
333
+
334
+ ## 6.0.0-dev.88 (2026-03-12)
335
+
336
+ ### 🚀 Features
337
+
338
+ - reactor-hypercore example ([d5557973a](https://github.com/powerhouse-inc/powerhouse/commit/d5557973a))
339
+
340
+ ### ❤️ Thank You
341
+
342
+ - Benjamin Jordan
343
+
344
+ ## 6.0.0-dev.87 (2026-03-12)
345
+
346
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
347
+
348
+ ## 6.0.0-dev.86 (2026-03-12)
349
+
350
+ ### 🚀 Features
351
+
352
+ - **renown,reactor-browser:** renown integration improvements ([a65731a73](https://github.com/powerhouse-inc/powerhouse/commit/a65731a73))
353
+
354
+ ### ❤️ Thank You
355
+
356
+ - acaldas @acaldas
357
+
358
+ ## 6.0.0-dev.85 (2026-03-12)
359
+
360
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
361
+
362
+ ## 6.0.0-dev.84 (2026-03-11)
363
+
364
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
365
+
366
+ ## 6.0.0-dev.83 (2026-03-11)
367
+
368
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
369
+
370
+ ## 6.0.0-dev.82 (2026-03-11)
371
+
372
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
373
+
374
+ ## 6.0.0-dev.81 (2026-03-11)
375
+
376
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
377
+
378
+ ## 6.0.0-dev.80 (2026-03-11)
379
+
380
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
381
+
382
+ ## 6.0.0-dev.79 (2026-03-11)
383
+
384
+ ### 🚀 Features
385
+
386
+ - **ci:** add gitops action for registry image updates ([ba91d00dd](https://github.com/powerhouse-inc/powerhouse/commit/ba91d00dd))
387
+
388
+ ### ❤️ Thank You
389
+
390
+ - Frank
391
+
392
+ ## 6.0.0-dev.78 (2026-03-11)
393
+
394
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
395
+
396
+ ## 6.0.0-dev.77 (2026-03-10)
397
+
398
+ ### 🩹 Fixes
399
+
400
+ - **renown:** moved e2e script test to reactor-browser ([3c9b41045](https://github.com/powerhouse-inc/powerhouse/commit/3c9b41045))
401
+
402
+ ### ❤️ Thank You
403
+
404
+ - acaldas @acaldas
405
+
406
+ ## 6.0.0-dev.76 (2026-03-10)
407
+
408
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
409
+
410
+ ## 6.0.0-dev.75 (2026-03-10)
411
+
412
+ ### 🩹 Fixes
413
+
414
+ - **registry:** resolve catalog references in Dockerfile with sed ([765e8fbdd](https://github.com/powerhouse-inc/powerhouse/commit/765e8fbdd))
415
+ - **registry:** copy pnpm-workspace.yaml for Docker build catalog resolution ([7407700b1](https://github.com/powerhouse-inc/powerhouse/commit/7407700b1))
416
+
417
+ ### ❤️ Thank You
418
+
419
+ - Frank
420
+
421
+ ## 6.0.0-dev.74 (2026-03-10)
422
+
423
+ ### 🚀 Features
424
+
425
+ - **ci:** add registry Docker image to publish workflow ([17544abad](https://github.com/powerhouse-inc/powerhouse/commit/17544abad))
426
+
427
+ ### ❤️ Thank You
428
+
429
+ - Frank
430
+
431
+ ## 6.0.0-dev.73 (2026-03-10)
432
+
433
+ ### 🚀 Features
434
+
435
+ - opentelementry-instrumentation-reactor package ([67d5c31e5](https://github.com/powerhouse-inc/powerhouse/commit/67d5c31e5))
436
+
437
+ ### ❤️ Thank You
438
+
439
+ - Benjamin Jordan
440
+
441
+ ## 6.0.0-dev.72 (2026-03-09)
442
+
443
+ ### 🚀 Features
444
+
445
+ - **renown,reactor-browser,connect:** cleanup renown integration ([fe6112c2c](https://github.com/powerhouse-inc/powerhouse/commit/fe6112c2c))
446
+
447
+ ### ❤️ Thank You
448
+
449
+ - acaldas @acaldas
450
+
451
+ ## 6.0.0-dev.71 (2026-03-07)
452
+
453
+ ### 🚀 Features
454
+
455
+ - **connect,reactor-browser:** add dynamic package loading from HTTP registry ([f92816782](https://github.com/powerhouse-inc/powerhouse/commit/f92816782))
456
+ - **document-model,reactor-api,reactor-browser:** implemented remote document controller ([6299c21da](https://github.com/powerhouse-inc/powerhouse/commit/6299c21da))
457
+
458
+ ### 🩹 Fixes
459
+
460
+ - **reactor-browser:** removed subexports ([4cda7f44c](https://github.com/powerhouse-inc/powerhouse/commit/4cda7f44c))
461
+
462
+ ### ❤️ Thank You
463
+
464
+ - acaldas @acaldas
465
+ - Guillermo Puente @gpuente
466
+
467
+ ## 6.0.0-dev.70 (2026-03-06)
468
+
469
+ ### 🚀 Features
470
+
471
+ - **switchboard,reactor-api,registry:** add runtime dynamic pacage loading from HTTP registry ([37f91250e](https://github.com/powerhouse-inc/powerhouse/commit/37f91250e))
472
+ - add new bundling for connect ([#2390](https://github.com/powerhouse-inc/powerhouse/pull/2390))
473
+
474
+ ### 🩹 Fixes
475
+
476
+ - eslint config ([fb20b3726](https://github.com/powerhouse-inc/powerhouse/commit/fb20b3726))
477
+
478
+ ### ❤️ Thank You
479
+
480
+ - Guillermo Puente @gpuente
481
+ - Ryan Wolhuter @ryanwolhuter
482
+
483
+ ## 6.0.0-dev.69 (2026-03-05)
484
+
485
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
486
+
487
+ ## 6.0.0-dev.68 (2026-03-04)
488
+
489
+ ### 🩹 Fixes
490
+
491
+ - **vetra:** remove custom subgraphs from vetra ([3a1e3b9b0](https://github.com/powerhouse-inc/powerhouse/commit/3a1e3b9b0))
492
+ - resolve empty name causing silent ADD_FILE failure in drives ([b44ed0c1c](https://github.com/powerhouse-inc/powerhouse/commit/b44ed0c1c))
493
+ - **reactor-mcp:** adopt new reactor client interface for MCP server ([1b8e6fb19](https://github.com/powerhouse-inc/powerhouse/commit/1b8e6fb19))
494
+
495
+ ### ❤️ Thank You
496
+
497
+ - Guillermo Puente @gpuente
498
+
499
+ ## 6.0.0-dev.67 (2026-03-03)
500
+
501
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
502
+
503
+ ## 6.0.0-dev.66 (2026-03-03)
504
+
505
+ ### 🚀 Features
506
+
507
+ - move reactor logic from connect to reactor browser ([#2385](https://github.com/powerhouse-inc/powerhouse/pull/2385))
508
+
509
+ ### ❤️ Thank You
510
+
511
+ - Ryan Wolhuter @ryanwolhuter
512
+
513
+ ## 6.0.0-dev.65 (2026-03-03)
514
+
515
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
516
+
517
+ ## 6.0.0-dev.64 (2026-03-03)
518
+
519
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
520
+
521
+ ## 6.0.0-dev.62 (2026-03-03)
522
+
523
+ ### 🚀 Features
524
+
525
+ - **ci:** push academy to Harbor academy project and update k8s for academy namespace ([efbf8f58d](https://github.com/powerhouse-inc/powerhouse/commit/efbf8f58d))
526
+
527
+ ### 🩹 Fixes
528
+
529
+ - cherry-picked fixes ([a73630a6a](https://github.com/powerhouse-inc/powerhouse/commit/a73630a6a))
530
+ - moving analytics processors to shared and fixing them, fixing other linting errors toos ([0c8f7fe98](https://github.com/powerhouse-inc/powerhouse/commit/0c8f7fe98))
531
+
532
+ ### ❤️ Thank You
533
+
534
+ - Benjamin Jordan
535
+ - Frank
536
+
537
+ ## 6.0.0-dev.61 (2026-02-27)
538
+
539
+ ### 🚀 Features
540
+
541
+ - **ci:** update k8s-hosting academy image tag after docker publish ([0b98b73a9](https://github.com/powerhouse-inc/powerhouse/commit/0b98b73a9))
542
+ - add bundle step for ph cli ([#2375](https://github.com/powerhouse-inc/powerhouse/pull/2375))
543
+
544
+ ### ❤️ Thank You
545
+
546
+ - Frank
547
+ - Ryan Wolhuter @ryanwolhuter
548
+
549
+ ## 6.0.0-dev.60 (2026-02-27)
550
+
551
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
552
+
553
+ ## 6.0.0-dev.59 (2026-02-26)
554
+
555
+ ### 🚀 Features
556
+
557
+ - use update-ts-references tool which also removes unused ones ([#2374](https://github.com/powerhouse-inc/powerhouse/pull/2374))
558
+
559
+ ### ❤️ Thank You
560
+
561
+ - Ryan Wolhuter @ryanwolhuter
562
+
563
+ ## 6.0.0-dev.58 (2026-02-25)
564
+
565
+ ### 🚀 Features
566
+
567
+ - added ability to configure max reshuffle depth in reactor orchestrator ([94f3ae986](https://github.com/powerhouse-inc/powerhouse/commit/94f3ae986))
568
+
569
+ ### 🔥 Performance
570
+
571
+ - **reducer:** pre-allocate operation arrays to avoid resize overhead ([1cf1c0078](https://github.com/powerhouse-inc/powerhouse/commit/1cf1c0078))
572
+
573
+ ### ❤️ Thank You
574
+
575
+ - Benjamin Jordan
576
+ - Samuel Hawksby-Robinson @Samyoul
577
+
578
+ ## 6.0.0-dev.57 (2026-02-24)
579
+
580
+ ### 🚀 Features
581
+
582
+ - run sync integration test as part of reactor flow ([7dea8bf3e](https://github.com/powerhouse-inc/powerhouse/commit/7dea8bf3e))
583
+
584
+ ### 🩹 Fixes
585
+
586
+ - switchboard needs build:misc ([916f761b8](https://github.com/powerhouse-inc/powerhouse/commit/916f761b8))
587
+ - arg, workflow changes should trigger the workflow ([645cca08f](https://github.com/powerhouse-inc/powerhouse/commit/645cca08f))
588
+ - build step before integration test ([0b6b48f74](https://github.com/powerhouse-inc/powerhouse/commit/0b6b48f74))
589
+
590
+ ### ❤️ Thank You
591
+
592
+ - Benjamin Jordan
593
+
594
+ ## 6.0.0-dev.56 (2026-02-21)
595
+
596
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
597
+
598
+ ## 6.0.0-dev.55 (2026-02-20)
599
+
600
+ ### 🚀 Features
601
+
602
+ - test-connect and reactor gql updates to pass along more context ([ae581e8e8](https://github.com/powerhouse-inc/powerhouse/commit/ae581e8e8))
603
+
604
+ ### ❤️ Thank You
605
+
606
+ - Benjamin Jordan
607
+
608
+ ## 6.0.0-dev.54 (2026-02-19)
609
+
610
+ ### 🚀 Features
611
+
612
+ - wip orchestrator for the test-client ([186d7c015](https://github.com/powerhouse-inc/powerhouse/commit/186d7c015))
613
+ - **connect:** build tweaks ([22b6bc7d5](https://github.com/powerhouse-inc/powerhouse/commit/22b6bc7d5))
614
+ - improved logging on vetra, switchboard and connect ([3fb127687](https://github.com/powerhouse-inc/powerhouse/commit/3fb127687))
615
+
616
+ ### 🩹 Fixes
617
+
618
+ - **ph-cli,switchboard:** create preview drive on new reactor ([1e5ed8794](https://github.com/powerhouse-inc/powerhouse/commit/1e5ed8794))
619
+
620
+ ### ❤️ Thank You
621
+
622
+ - acaldas @acaldas
623
+ - Benjamin Jordan
624
+
625
+ ## 6.0.0-dev.53 (2026-02-18)
626
+
627
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
628
+
629
+ ## 6.0.0-dev.52 (2026-02-17)
630
+
631
+ ### 🩹 Fixes
632
+
633
+ - **reactor-api:** improved subgraph path matching and removed name parameter from reactor subgraph ([dcadf7fb3](https://github.com/powerhouse-inc/powerhouse/commit/dcadf7fb3))
634
+
635
+ ### ❤️ Thank You
636
+
637
+ - acaldas @acaldas
638
+
639
+ ## 6.0.0-dev.51 (2026-02-17)
640
+
641
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
642
+
643
+ ## 6.0.0-dev.50 (2026-02-17)
644
+
645
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
646
+
647
+ ## 6.0.0-dev.49 (2026-02-17)
648
+
649
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
650
+
651
+ ## 6.0.0-dev.47 (2026-02-17)
652
+
653
+ ### 🩹 Fixes
654
+
655
+ - **monorepo:** make shared package publicly available ([#2348](https://github.com/powerhouse-inc/powerhouse/pull/2348))
656
+
657
+ ### ❤️ Thank You
658
+
659
+ - Ryan Wolhuter @ryanwolhuter
660
+
661
+ ## 6.0.0-dev.46 (2026-02-17)
662
+
663
+ ### 🚀 Features
664
+
665
+ - **connect:** re enable processors in connect ([#2342](https://github.com/powerhouse-inc/powerhouse/pull/2342))
666
+
667
+ ### ❤️ Thank You
668
+
669
+ - Ryan Wolhuter @ryanwolhuter
670
+
671
+ ## 6.0.0-dev.45 (2026-02-16)
672
+
673
+ ### 🚀 Features
674
+
675
+ - **monorepo:** ensure shared is only in dev deps ([#2341](https://github.com/powerhouse-inc/powerhouse/pull/2341))
676
+
677
+ ### ❤️ Thank You
678
+
679
+ - Ryan Wolhuter @ryanwolhuter
680
+
681
+ ## 6.0.0-dev.44 (2026-02-15)
682
+
683
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
684
+
685
+ ## 6.0.0-dev.43 (2026-02-14)
686
+
687
+ ### 🚀 Features
688
+
689
+ - **monorepo:** move more shared stuff to shared ([#2335](https://github.com/powerhouse-inc/powerhouse/pull/2335))
690
+
691
+ ### ❤️ Thank You
692
+
693
+ - Ryan Wolhuter @ryanwolhuter
694
+
695
+ ## 6.0.0-dev.42 (2026-02-13)
696
+
697
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
698
+
699
+ ## 6.0.0-dev.41 (2026-02-12)
700
+
701
+ ### 🚀 Features
702
+
703
+ - **monorepo:** use catalog for other shared deps ([#2330](https://github.com/powerhouse-inc/powerhouse/pull/2330))
704
+ - **vetra:** add processor apps input to vetra ([#2329](https://github.com/powerhouse-inc/powerhouse/pull/2329))
705
+
706
+ ### 🩹 Fixes
707
+
708
+ - **builder-tools:** use same class-variance-authority as design-systom ([d600feb49](https://github.com/powerhouse-inc/powerhouse/commit/d600feb49))
709
+ - **design-system:** copy assets to dist folder to enable relative path import ([de5cb5e4e](https://github.com/powerhouse-inc/powerhouse/commit/de5cb5e4e))
710
+ - **monorepo:** add build-cli to old release workflow ([a30624bd2](https://github.com/powerhouse-inc/powerhouse/commit/a30624bd2))
711
+
712
+ ### ❤️ Thank You
713
+
714
+ - acaldas @acaldas
715
+ - Ryan Wolhuter @ryanwolhuter
716
+ - ryanwolhuter @ryanwolhuter
717
+
718
+ ## 6.0.0-dev.40 (2026-02-12)
719
+
720
+ ### 🚀 Features
721
+
722
+ - **monorepo:** add shared package ([#2324](https://github.com/powerhouse-inc/powerhouse/pull/2324))
723
+
724
+ ### ❤️ Thank You
725
+
726
+ - Ryan Wolhuter @ryanwolhuter
727
+
728
+ ## 6.0.0-dev.39 (2026-02-11)
729
+
730
+ ### 🚀 Features
731
+
732
+ - **reactor,codegen:** handle processor apps in cli ([#2319](https://github.com/powerhouse-inc/powerhouse/pull/2319))
733
+
734
+ ### ❤️ Thank You
735
+
736
+ - Ryan Wolhuter @ryanwolhuter
737
+
738
+ ## 6.0.0-dev.38 (2026-02-10)
739
+
740
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
741
+
742
+ ## 6.0.0-dev.37 (2026-02-10)
743
+
744
+ ### 🚀 Features
745
+
746
+ - **reactor-api:** added nested operations query on phdocument and Graphql client update ([67584e3fc](https://github.com/powerhouse-inc/powerhouse/commit/67584e3fc))
747
+
748
+ ### ❤️ Thank You
749
+
750
+ - acaldas
751
+
752
+ ## 6.0.0-dev.36 (2026-02-06)
753
+
754
+ ### 🚀 Features
755
+
756
+ - **codegen:** use bun for the slowest tests ([#2303](https://github.com/powerhouse-inc/powerhouse/pull/2303))
757
+
758
+ ### ❤️ Thank You
759
+
760
+ - Ryan Wolhuter @ryanwolhuter
761
+
762
+ ## 6.0.0-dev.35 (2026-02-06)
763
+
764
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
765
+
766
+ ## 6.0.0-dev.34 (2026-02-05)
767
+
768
+ ### 🚀 Features
769
+
770
+ - **codegen:** update processors codegen ([#2293](https://github.com/powerhouse-inc/powerhouse/pull/2293))
771
+
772
+ ### 🩹 Fixes
773
+
774
+ - **ci:** allow release to continue when academy build fails ([477d9ef71](https://github.com/powerhouse-inc/powerhouse/commit/477d9ef71))
775
+
776
+ ### 🔥 Performance
777
+
778
+ - **document-model:** optimize getDocumentLastModified from O(n log n) to O(n) ([bb94ff310](https://github.com/powerhouse-inc/powerhouse/commit/bb94ff310))
779
+
780
+ ### ❤️ Thank You
781
+
782
+ - Frank
783
+ - Ryan Wolhuter @ryanwolhuter
784
+ - Samuel Hawksby-Robinson @Samyoul
785
+
786
+ ## 6.0.0-dev.33 (2026-02-05)
787
+
788
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
789
+
790
+ ## 6.0.0-dev.32 (2026-02-04)
791
+
792
+ ### 🩹 Fixes
793
+
794
+ - remove duplicate trigger-downstream from publish-docker-images ([1f70c8041](https://github.com/powerhouse-inc/powerhouse/commit/1f70c8041))
795
+
796
+ ### ❤️ Thank You
797
+
798
+ - Frank
799
+
800
+ ## 6.0.0-dev.31 (2026-02-04)
801
+
802
+ ### 🚀 Features
803
+
804
+ - trigger powerhouse-demo after release ([f5b63728d](https://github.com/powerhouse-inc/powerhouse/commit/f5b63728d))
805
+ - **profiling:** add Pyroscope monitoring to reactor-direct ([2c7779229](https://github.com/powerhouse-inc/powerhouse/commit/2c7779229))
806
+ - **profiling:** add reactor-direct.ts for direct reactor performance profiling ([806714e27](https://github.com/powerhouse-inc/powerhouse/commit/806714e27))
807
+ - align document-model-subgraph with ReactorSubgraph patterns ([0c0813ef7](https://github.com/powerhouse-inc/powerhouse/commit/0c0813ef7))
808
+ - add new document model subgraph with new reactor API ([a282586c3](https://github.com/powerhouse-inc/powerhouse/commit/a282586c3))
809
+
810
+ ### 🩹 Fixes
811
+
812
+ - linting issues ([e1eb2c806](https://github.com/powerhouse-inc/powerhouse/commit/e1eb2c806))
813
+ - ignore release.ts ([25a40d2a6](https://github.com/powerhouse-inc/powerhouse/commit/25a40d2a6))
814
+
815
+ ### ❤️ Thank You
816
+
817
+ - Benjamin Jordan
818
+ - Frank
819
+ - Guillermo Puente @gpuente
820
+ - Samuel Hawksby-Robinson @Samyoul
821
+
822
+ ## 6.0.0-dev.30 (2026-02-03)
823
+
824
+ ### 🩹 Fixes
825
+
826
+ - **release:** ignore errors on git stage ([e0c10d604](https://github.com/powerhouse-inc/powerhouse/commit/e0c10d604))
827
+ - **releases:** remove problematic publish dry run ([8b9b065b9](https://github.com/powerhouse-inc/powerhouse/commit/8b9b065b9))
828
+ - **releases:** include git side effects check in all booleans ([19c44503d](https://github.com/powerhouse-inc/powerhouse/commit/19c44503d))
829
+
830
+ ### ❤️ Thank You
831
+
832
+ - ryanwolhuter @ryanwolhuter
833
+
834
+ ## 6.0.0-dev.29 (2026-02-03)
835
+
836
+ ### 🚀 Features
837
+
838
+ - **release:** add doc comments ([3ab9879d4](https://github.com/powerhouse-inc/powerhouse/commit/3ab9879d4))
839
+ - **monorepo:** simplified release workflow ([#2276](https://github.com/powerhouse-inc/powerhouse/pull/2276))
840
+
841
+ ### 🩹 Fixes
842
+
843
+ - package.json onlyBuilt ([3b6165267](https://github.com/powerhouse-inc/powerhouse/commit/3b6165267))
844
+ - **release:** move checkout action ([4ed305d57](https://github.com/powerhouse-inc/powerhouse/commit/4ed305d57))
845
+
846
+ ### ❤️ Thank You
847
+
848
+ - Benjamin Jordan (@thegoldenmule)
849
+ - Ryan Wolhuter @ryanwolhuter
850
+ - ryanwolhuter @ryanwolhuter
851
+
852
+ ## 6.0.0-dev.28 (2026-01-31)
853
+
854
+ ### 🚀 Features
855
+
856
+ - add e2e tests to simulate ([6ba43d19b](https://github.com/powerhouse-inc/powerhouse/commit/6ba43d19b))
857
+ - adding signal handlers and removing old feature flags ([f08253a2d](https://github.com/powerhouse-inc/powerhouse/commit/f08253a2d))
858
+
859
+ ### ❤️ Thank You
860
+
861
+ - Benjamin Jordan (@thegoldenmule)
862
+
863
+ ## 6.0.0-dev.27 (2026-01-30)
864
+
865
+ ### 🚀 Features
866
+
867
+ - renown sdk improvements ([bc1099d94](https://github.com/powerhouse-inc/powerhouse/commit/bc1099d94))
868
+ - **ph-cmd:** fix forwarding and versioning bug ([#2272](https://github.com/powerhouse-inc/powerhouse/pull/2272))
869
+
870
+ ### ❤️ Thank You
871
+
872
+ - acaldas
873
+ - Ryan Wolhuter @ryanwolhuter
874
+
875
+ ## 6.0.0-dev.26 (2026-01-29)
876
+
877
+ ### 🚀 Features
878
+
879
+ - update minimum node version to 24 ([7a71107c5](https://github.com/powerhouse-inc/powerhouse/commit/7a71107c5))
880
+
881
+ ### 🩹 Fixes
882
+
883
+ - undo my changes to the tsc script ([0a36d0a49](https://github.com/powerhouse-inc/powerhouse/commit/0a36d0a49))
884
+
885
+ ### ❤️ Thank You
886
+
887
+ - acaldas @acaldas
888
+ - Benjamin Jordan (@thegoldenmule)
889
+
890
+ ## 6.0.0-dev.25 (2026-01-28)
891
+
892
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
893
+
894
+ ## 6.0.0-dev.24 (2026-01-27)
895
+
896
+ ### 🚀 Features
897
+
898
+ - **switchboard:** enhance pyroscope profiler with wall and heap support ([254c0cea9](https://github.com/powerhouse-inc/powerhouse/commit/254c0cea9))
899
+ - **monorepo:** ensure the same typescript version is used everywhere ([#2258](https://github.com/powerhouse-inc/powerhouse/pull/2258))
900
+
901
+ ### 🩹 Fixes
902
+
903
+ - **vetra,switchboard:** fix TypeScript errors in permission tests and profiler ([7726f95a3](https://github.com/powerhouse-inc/powerhouse/commit/7726f95a3))
904
+
905
+ ### ❤️ Thank You
906
+
907
+ - Frank
908
+ - Ryan Wolhuter @ryanwolhuter
909
+
910
+ ## 6.0.0-dev.23 (2026-01-27)
911
+
912
+ ### 🚀 Features
913
+
914
+ - **monorepo:** add diff filter to exclude deleted files in changed files action ([e86961e79](https://github.com/powerhouse-inc/powerhouse/commit/e86961e79))
915
+ - **academy:** added release slides to academy project ([eab5e56fe](https://github.com/powerhouse-inc/powerhouse/commit/eab5e56fe))
916
+
917
+ ### ❤️ Thank You
918
+
919
+ - acaldas @acaldas
920
+ - ryanwolhuter @ryanwolhuter
921
+
922
+ ## 6.0.0-dev.22 (2026-01-27)
923
+
924
+ ### 🩹 Fixes
925
+
926
+ - **monorepo:** inefficient workflows ([#2250](https://github.com/powerhouse-inc/powerhouse/pull/2250))
927
+
928
+ ### ❤️ Thank You
929
+
930
+ - Ryan Wolhuter @ryanwolhuter
931
+
932
+ ## 6.0.0-dev.21 (2026-01-27)
933
+
934
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
935
+
936
+ ## 6.0.0-dev.20 (2026-01-26)
937
+
938
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
939
+
940
+ ## 6.0.0-dev.19 (2026-01-26)
941
+
942
+ ### 🩹 Fixes
943
+
944
+ - **docker:** add ph-cli to global install for switchboard ([6cea7f52e](https://github.com/powerhouse-inc/powerhouse/commit/6cea7f52e))
945
+
946
+ ### ❤️ Thank You
947
+
948
+ - Frank
949
+
950
+ ## 6.0.0-dev.18 (2026-01-26)
951
+
952
+ ### 🚀 Features
953
+
954
+ - **ph-cli, ph-cmd:** use cmd ts for remaining ph cmd commands ([#2209](https://github.com/powerhouse-inc/powerhouse/pull/2209))
955
+
956
+ ### 🩹 Fixes
957
+
958
+ - trailing newline in publish-docker-images workflow ([7d2e30db4](https://github.com/powerhouse-inc/powerhouse/commit/7d2e30db4))
959
+ - **ci:** remove deploy-k8s from publish-docker-images workflow ([c5869e82f](https://github.com/powerhouse-inc/powerhouse/commit/c5869e82f))
960
+
961
+ ### ❤️ Thank You
962
+
963
+ - Frank
964
+ - Ryan Wolhuter @ryanwolhuter
965
+
966
+ ## 6.0.0-dev.17 (2026-01-26)
967
+
968
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
969
+
970
+ ## 6.0.0-dev.16 (2026-01-24)
971
+
972
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
973
+
974
+ ## 6.0.0-dev.15 (2026-01-23)
975
+
976
+ This was a version bump only for @powerhousedao/switchboard to align it with other projects, there were no code changes.
977
+
978
+ ## 6.0.0-dev.14 (2026-01-22)
979
+
980
+ ### 🩹 Fixes
981
+
982
+ - pnpm filtering ([3875e271c](https://github.com/powerhouse-inc/powerhouse/commit/3875e271c))
983
+ - do not run profiling tests by default ([a196a19da](https://github.com/powerhouse-inc/powerhouse/commit/a196a19da))
984
+ - **profiling:** add TypeScript configuration for profiling scripts ([d0ee094c7](https://github.com/powerhouse-inc/powerhouse/commit/d0ee094c7))
985
+ - **design-system:** declare document-drive and reactor-browser as runtime dependencies ([3db4afa38](https://github.com/powerhouse-inc/powerhouse/commit/3db4afa38))
986
+
987
+ ### ❤️ Thank You
988
+
989
+ - acaldas @acaldas
990
+ - Benjamin Jordan (@thegoldenmule)
991
+ - Samuel Hawksby-Robinson @Samyoul
992
+
993
+ ## 6.0.0-dev.13 (2026-01-21)
994
+
995
+ ### 🚀 Features
996
+
997
+ - add workflow to trigger downstream package updates ([e8c6cce75](https://github.com/powerhouse-inc/powerhouse/commit/e8c6cce75))
998
+
999
+ ### ❤️ Thank You
1000
+
1001
+ - Frank
1002
+
1
1003
  ## 6.0.0-dev.12 (2026-01-20)
2
1004
 
3
1005
  ### 🩹 Fixes
@@ -45,7 +1047,7 @@
45
1047
  ### 🚀 Features
46
1048
 
47
1049
  - **design-system:** default styles tweaks and DocumentStateViewer ([c0a66720c](https://github.com/powerhouse-inc/powerhouse/commit/c0a66720c))
48
- - **ci:** deploy staging tenant from release/staging/* branches ([8761579e7](https://github.com/powerhouse-inc/powerhouse/commit/8761579e7))
1050
+ - **ci:** deploy staging tenant from release/staging/\* branches ([8761579e7](https://github.com/powerhouse-inc/powerhouse/commit/8761579e7))
49
1051
  - **ci:** add Harbor registry to docker image publishing ([f3a2fab69](https://github.com/powerhouse-inc/powerhouse/commit/f3a2fab69))
50
1052
 
51
1053
  ### 🩹 Fixes
@@ -2670,7 +3672,7 @@ This was a version bump only for @powerhousedao/switchboard to align it with oth
2670
3672
 
2671
3673
  - **reactor-api:** init project ([#388](https://github.com/powerhouse-inc/powerhouse/pull/388))
2672
3674
 
2673
- ### ❤️ Thank You
3675
+ ### ❤️ Thank You
2674
3676
 
2675
3677
  - acaldas
2676
3678
 
@@ -2684,7 +3686,7 @@ This was a version bump only for @powerhousedao/switchboard to align it with oth
2684
3686
 
2685
3687
  - Updated @powerhousedao/reactor-api to 1.1.0
2686
3688
 
2687
- ### ❤️ Thank You
3689
+ ### ❤️ Thank You
2688
3690
 
2689
3691
  - acaldas
2690
3692
 
@@ -2698,6 +3700,6 @@ This was a version bump only for @powerhousedao/switchboard to align it with oth
2698
3700
 
2699
3701
  - Updated @powerhousedao/general-document-indexer to 1.1.0
2700
3702
 
2701
- ### ❤️ Thank You
3703
+ ### ❤️ Thank You
2702
3704
 
2703
- - acaldas
3705
+ - acaldas