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

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