@powerhousedao/academy 4.1.0-dev.11 → 4.1.0-dev.111

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 (108) hide show
  1. package/.vscode/settings.json +1 -1
  2. package/CHANGELOG.md +825 -0
  3. package/README.md +3 -3
  4. package/babel.config.js +1 -1
  5. package/blog/BeyondCommunication-ABlueprintForDevelopment.md +25 -24
  6. package/blog/TheChallengeOfChange.md +21 -21
  7. package/docs/academy/01-GetStarted/00-ExploreDemoPackage.mdx +67 -30
  8. package/docs/academy/01-GetStarted/01-CreateNewPowerhouseProject.md +38 -21
  9. package/docs/academy/01-GetStarted/02-DefineToDoListDocumentModel.md +24 -19
  10. package/docs/academy/01-GetStarted/03-ImplementOperationReducers.md +44 -41
  11. package/docs/academy/01-GetStarted/04-BuildToDoListEditor.md +10 -10
  12. package/docs/academy/01-GetStarted/05-VetraStudio.md +164 -0
  13. package/docs/academy/01-GetStarted/06-ReactorMCP.md +58 -0
  14. package/docs/academy/01-GetStarted/home.mdx +185 -90
  15. package/docs/academy/01-GetStarted/images/Modules.png +0 -0
  16. package/docs/academy/01-GetStarted/images/VetraStudioDrive.png +0 -0
  17. package/docs/academy/01-GetStarted/styles.module.css +5 -5
  18. package/docs/academy/02-MasteryTrack/01-BuilderEnvironment/01-Prerequisites.md +46 -18
  19. package/docs/academy/02-MasteryTrack/01-BuilderEnvironment/02-StandardDocumentModelWorkflow.md +118 -68
  20. package/docs/academy/02-MasteryTrack/01-BuilderEnvironment/03-BuilderTools.md +75 -33
  21. package/docs/academy/02-MasteryTrack/01-BuilderEnvironment/_category_.json +6 -6
  22. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/01-WhatIsADocumentModel.md +30 -21
  23. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/02-SpecifyTheStateSchema.md +41 -37
  24. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/03-SpecifyDocumentOperations.md +29 -25
  25. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/04-UseTheDocumentModelGenerator.md +36 -37
  26. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/05-ImplementDocumentReducers.md +128 -109
  27. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/06-ImplementDocumentModelTests.md +95 -86
  28. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/07-ExampleToDoListRepository.md +7 -9
  29. package/docs/academy/02-MasteryTrack/02-DocumentModelCreation/_category_.json +6 -6
  30. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/01-BuildingDocumentEditors.md +65 -47
  31. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/02-ConfiguringDrives.md +77 -62
  32. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/03-BuildingADriveExplorer.md +360 -349
  33. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/06-DocumentTools/00-DocumentToolbar.mdx +16 -10
  34. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/06-DocumentTools/01-OperationHistory.md +10 -7
  35. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/06-DocumentTools/02-RevisionHistoryTimeline.md +25 -17
  36. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/06-DocumentTools/_category_.json +6 -6
  37. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/07-Authorization/01-RenownAuthenticationFlow.md +14 -7
  38. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/07-Authorization/02-Authorization.md +0 -1
  39. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/07-Authorization/_category_.json +5 -5
  40. package/docs/academy/02-MasteryTrack/03-BuildingUserExperiences/_category_.json +1 -1
  41. package/docs/academy/02-MasteryTrack/04-WorkWithData/01-GraphQLAtPowerhouse.md +45 -33
  42. package/docs/academy/02-MasteryTrack/04-WorkWithData/02-UsingTheAPI.mdx +61 -18
  43. package/docs/academy/02-MasteryTrack/04-WorkWithData/03-UsingSubgraphs.md +105 -456
  44. package/docs/academy/02-MasteryTrack/04-WorkWithData/04-analytics-processor.md +126 -110
  45. package/docs/academy/02-MasteryTrack/04-WorkWithData/05-RelationalDbProcessor.md +98 -65
  46. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/GraphQL References/QueryingADocumentWithGraphQL.md +23 -21
  47. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/best-practices.md +9 -9
  48. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/graphql/index.md +11 -23
  49. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/graphql/integration.md +25 -9
  50. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/intro.md +10 -10
  51. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/benchmarks.md +1 -1
  52. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/index.md +16 -11
  53. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/memory.md +6 -5
  54. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/schema.md +2 -2
  55. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/typescript/utilities.md +7 -5
  56. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/use-cases/maker.md +32 -58
  57. package/docs/academy/02-MasteryTrack/04-WorkWithData/06-Analytics Engine/use-cases/processors.md +1 -1
  58. package/docs/academy/02-MasteryTrack/04-WorkWithData/07-drive-analytics.md +105 -71
  59. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_01-SetupBuilderEnvironment.md +22 -0
  60. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_02-CreateNewPowerhouseProject.md +9 -8
  61. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_03-GenerateAnAnalyticsProcessor.md +28 -32
  62. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_04-UpdateAnalyticsProcessor.md +25 -26
  63. package/docs/academy/02-MasteryTrack/04-WorkWithData/_ARCHIVE-AnalyticsProcessorTutorial/_category_.json +1 -1
  64. package/docs/academy/02-MasteryTrack/04-WorkWithData/_category_.json +7 -7
  65. package/docs/academy/02-MasteryTrack/05-Launch/01-IntroductionToPackages.md +3 -4
  66. package/docs/academy/02-MasteryTrack/05-Launch/02-PublishYourProject.md +69 -45
  67. package/docs/academy/02-MasteryTrack/05-Launch/03-SetupEnvironment.md +70 -40
  68. package/docs/academy/02-MasteryTrack/05-Launch/04-ConfigureEnvironment.md +1 -0
  69. package/docs/academy/02-MasteryTrack/05-Launch/_category_.json +7 -7
  70. package/docs/academy/02-MasteryTrack/_category_.json +6 -6
  71. package/docs/academy/03-ExampleUsecases/Chatroom/02-CreateNewPowerhouseProject.md +5 -3
  72. package/docs/academy/03-ExampleUsecases/Chatroom/03-DefineChatroomDocumentModel.md +38 -37
  73. package/docs/academy/03-ExampleUsecases/Chatroom/04-ImplementOperationReducers.md +45 -41
  74. package/docs/academy/03-ExampleUsecases/Chatroom/05-ImplementChatroomEditor.md +14 -14
  75. package/docs/academy/03-ExampleUsecases/Chatroom/06-LaunchALocalReactor.md +6 -6
  76. package/docs/academy/03-ExampleUsecases/Chatroom/_category_.json +1 -1
  77. package/docs/academy/04-APIReferences/00-PowerhouseCLI.md +179 -72
  78. package/docs/academy/04-APIReferences/01-ReactHooks.md +649 -141
  79. package/docs/academy/04-APIReferences/04-RelationalDatabase.md +121 -113
  80. package/docs/academy/04-APIReferences/05-PHDocumentMigrationGuide.md +48 -41
  81. package/docs/academy/04-APIReferences/_category_.json +6 -6
  82. package/docs/academy/05-Architecture/00-PowerhouseArchitecture.md +1 -2
  83. package/docs/academy/05-Architecture/01-WorkingWithTheReactor.md +11 -8
  84. package/docs/academy/05-Architecture/05-DocumentModelTheory/_category_.json +1 -1
  85. package/docs/academy/05-Architecture/_category_.json +6 -6
  86. package/docs/academy/06-ComponentLibrary/00-DocumentEngineering.md +25 -23
  87. package/docs/academy/06-ComponentLibrary/02-CreateCustomScalars.md +105 -93
  88. package/docs/academy/06-ComponentLibrary/03-IntegrateIntoAReactComponent.md +1 -0
  89. package/docs/academy/06-ComponentLibrary/_category_.json +7 -7
  90. package/docs/academy/07-Cookbook.md +268 -35
  91. package/docs/academy/08-Glossary.md +7 -1
  92. package/docs/bookofpowerhouse/01-Overview.md +2 -2
  93. package/docs/bookofpowerhouse/02-GeneralFrameworkAndPhilosophy.md +1 -7
  94. package/docs/bookofpowerhouse/03-PowerhouseSoftwareArchitecture.md +10 -7
  95. package/docs/bookofpowerhouse/04-DevelopmentApproaches.md +10 -4
  96. package/docs/bookofpowerhouse/05-SNOsandANewModelForOSSandPublicGoods.md +23 -30
  97. package/docs/bookofpowerhouse/06-SNOsInActionAndPlatformEconomies.md +0 -7
  98. package/docusaurus.config.ts +64 -66
  99. package/package.json +9 -7
  100. package/scripts/generate-combined-cli-docs.ts +43 -13
  101. package/sidebars.ts +2 -0
  102. package/src/components/HomepageFeatures/index.tsx +171 -78
  103. package/src/components/HomepageFeatures/styles.module.css +1 -2
  104. package/src/css/custom.css +89 -89
  105. package/src/pages/_archive-homepage.tsx +17 -16
  106. package/src/theme/DocCardList/index.tsx +9 -8
  107. package/static.json +6 -6
  108. package/tsconfig.tsbuildinfo +1 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,828 @@
1
+ ## 4.1.0-dev.111 (2025-11-12)
2
+
3
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
4
+
5
+ ## 4.1.0-dev.110 (2025-11-11)
6
+
7
+ ### 🚀 Features
8
+
9
+ - **connect,common,builder-tools:** optimize connect bundle chunks ([#2093](https://github.com/powerhouse-inc/powerhouse/pull/2093))
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - Ryan Wolhuter @ryanwolhuter
14
+
15
+ ## 4.1.0-dev.109 (2025-11-10)
16
+
17
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
18
+
19
+ ## 4.1.0-dev.108 (2025-11-10)
20
+
21
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
22
+
23
+ ## 4.1.0-dev.107 (2025-11-10)
24
+
25
+ ### 🚀 Features
26
+
27
+ - **monorepo:** exit with error code if circular import found ([3ca6d3512](https://github.com/powerhouse-inc/powerhouse/commit/3ca6d3512))
28
+ - **connect:** do not use redundant dev deps ([2a847e944](https://github.com/powerhouse-inc/powerhouse/commit/2a847e944))
29
+ - **connect,builder-tools:** improve chunking ([c089c7678](https://github.com/powerhouse-inc/powerhouse/commit/c089c7678))
30
+ - **codegen,design-system:** update path for import connect components ([f8f387023](https://github.com/powerhouse-inc/powerhouse/commit/f8f387023))
31
+ - **monorepo:** add circular imports check in ci ([d6e46a869](https://github.com/powerhouse-inc/powerhouse/commit/d6e46a869))
32
+ - **design-system:** resolve remaining circular imports ([b82cc2e3c](https://github.com/powerhouse-inc/powerhouse/commit/b82cc2e3c))
33
+ - **document-drive:** fix circular imports ([f2db50c23](https://github.com/powerhouse-inc/powerhouse/commit/f2db50c23))
34
+ - **monorepo:** add check circular imports scripts ([d633b37c2](https://github.com/powerhouse-inc/powerhouse/commit/d633b37c2))
35
+
36
+ ### 🩹 Fixes
37
+
38
+ - publish docker prod workflow ([d701f8dc0](https://github.com/powerhouse-inc/powerhouse/commit/d701f8dc0))
39
+
40
+ ### ❤️ Thank You
41
+
42
+ - Frank
43
+ - ryanwolhuter @ryanwolhuter
44
+
45
+ ## 4.1.0-dev.106 (2025-11-10)
46
+
47
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
48
+
49
+ ## 4.1.0-dev.105 (2025-11-08)
50
+
51
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
52
+
53
+ ## 4.1.0-dev.104 (2025-11-07)
54
+
55
+ ### 🚀 Features
56
+
57
+ - **ph-cli:** remove reactor-local command ([029e5db7d](https://github.com/powerhouse-inc/powerhouse/commit/029e5db7d))
58
+
59
+ ### ❤️ Thank You
60
+
61
+ - acaldas @acaldas
62
+
63
+ ## 4.1.0-dev.103 (2025-11-06)
64
+
65
+ ### 🚀 Features
66
+
67
+ - **connect:** remove circular imports ([a1632d41e](https://github.com/powerhouse-inc/powerhouse/commit/a1632d41e))
68
+
69
+ ### 🩹 Fixes
70
+
71
+ - **codegen:** move read-pkg to runtime dependency ([939f01045](https://github.com/powerhouse-inc/powerhouse/commit/939f01045))
72
+ - **codegen:** run prettier programmatically ([23f948c4d](https://github.com/powerhouse-inc/powerhouse/commit/23f948c4d))
73
+
74
+ ### ❤️ Thank You
75
+
76
+ - acaldas @acaldas
77
+
78
+ ## 4.1.0-dev.102 (2025-11-06)
79
+
80
+ ### 🚀 Features
81
+
82
+ - switching to tinybench for benchmarks ([5b915e025](https://github.com/powerhouse-inc/powerhouse/commit/5b915e025))
83
+
84
+ ### 🩹 Fixes
85
+
86
+ - try again with a pnpm upgrade ([ec081f743](https://github.com/powerhouse-inc/powerhouse/commit/ec081f743))
87
+ - trying a completely fresh lockfile ([c9888939a](https://github.com/powerhouse-inc/powerhouse/commit/c9888939a))
88
+ - update atlas packages ([fa174d00e](https://github.com/powerhouse-inc/powerhouse/commit/fa174d00e))
89
+
90
+ ### ❤️ Thank You
91
+
92
+ - Benjamin Jordan (@thegoldenmule)
93
+
94
+ ## 4.1.0-dev.101 (2025-11-05)
95
+
96
+ ### 🚀 Features
97
+
98
+ - **codegen, vetra:** update codegen templates ([#2056](https://github.com/powerhouse-inc/powerhouse/pull/2056))
99
+
100
+ ### ❤️ Thank You
101
+
102
+ - Ryan Wolhuter @ryanwolhuter
103
+
104
+ ## 4.1.0-dev.100 (2025-11-04)
105
+
106
+ ### 🚀 Features
107
+
108
+ - create default vetra package document when ph vetra is started for a remote drive ([#2066](https://github.com/powerhouse-inc/powerhouse/pull/2066))
109
+ - added some broken tests that are in progress ([c92e1f057](https://github.com/powerhouse-inc/powerhouse/commit/c92e1f057))
110
+
111
+ ### 🩹 Fixes
112
+
113
+ - **monorepo:** fix lockfile and test filter ([#2069](https://github.com/powerhouse-inc/powerhouse/pull/2069))
114
+ - publish docker prod workflow ([ab7c4e6cb](https://github.com/powerhouse-inc/powerhouse/commit/ab7c4e6cb))
115
+
116
+ ### ❤️ Thank You
117
+
118
+ - Benjamin Jordan (@thegoldenmule)
119
+ - Frank
120
+ - Guillermo Puente Sandoval @gpuente
121
+ - Ryan Wolhuter @ryanwolhuter
122
+
123
+ ## 4.1.0-dev.99 (2025-10-31)
124
+
125
+ ### 🚀 Features
126
+
127
+ - **ph-cmd, codegen:** allow specifying custom boilerplate branch to checkout on init ([cd50f8d38](https://github.com/powerhouse-inc/powerhouse/commit/cd50f8d38))
128
+
129
+ ### ❤️ Thank You
130
+
131
+ - acaldas @acaldas
132
+
133
+ ## 4.1.0-dev.98 (2025-10-31)
134
+
135
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
136
+
137
+ ## 4.1.0-dev.97 (2025-10-30)
138
+
139
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
140
+
141
+ ## 4.1.0-dev.96 (2025-10-30)
142
+
143
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
144
+
145
+ ## 4.1.0-dev.95 (2025-10-30)
146
+
147
+ ### 🚀 Features
148
+
149
+ - enabled ph init --remote-drives and ph checkout commands ([#2057](https://github.com/powerhouse-inc/powerhouse/pull/2057))
150
+
151
+ ### ❤️ Thank You
152
+
153
+ - Guillermo Puente Sandoval @gpuente
154
+
155
+ ## 4.1.0-dev.94 (2025-10-29)
156
+
157
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
158
+
159
+ ## 4.1.0-dev.93 (2025-10-29)
160
+
161
+ ### 🚀 Features
162
+
163
+ - first swing at a project to import these recorded operations ([41b139237](https://github.com/powerhouse-inc/powerhouse/commit/41b139237))
164
+
165
+ ### 🩹 Fixes
166
+
167
+ - package link issues ([3415df513](https://github.com/powerhouse-inc/powerhouse/commit/3415df513))
168
+
169
+ ### ❤️ Thank You
170
+
171
+ - Benjamin Jordan (@thegoldenmule)
172
+
173
+ ## 4.1.0-dev.92 (2025-10-28)
174
+
175
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
176
+
177
+ ## 4.1.0-dev.91 (2025-10-28)
178
+
179
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
180
+
181
+ ## 4.1.0-dev.90 (2025-10-27)
182
+
183
+ ### 🚀 Features
184
+
185
+ - **reactor-api:** updated apollo server to v5 ([66dffda7b](https://github.com/powerhouse-inc/powerhouse/commit/66dffda7b))
186
+
187
+ ### ❤️ Thank You
188
+
189
+ - acaldas
190
+
191
+ ## 4.1.0-dev.89 (2025-10-24)
192
+
193
+ ### 🩹 Fixes
194
+
195
+ - used fixed versions for codemirror dep ([183e487db](https://github.com/powerhouse-inc/powerhouse/commit/183e487db))
196
+
197
+ ### ❤️ Thank You
198
+
199
+ - Guillermo Puente @gpuente
200
+
201
+ ## 4.1.0-dev.88 (2025-10-24)
202
+
203
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
204
+
205
+ ## 4.1.0-dev.87 (2025-10-24)
206
+
207
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
208
+
209
+ ## 4.1.0-dev.86 (2025-10-23)
210
+
211
+ ### 🩹 Fixes
212
+
213
+ - **vetra:** added codegen debounce test and reduced logging ([bc360b8e0](https://github.com/powerhouse-inc/powerhouse/commit/bc360b8e0))
214
+
215
+ ### ❤️ Thank You
216
+
217
+ - acaldas @acaldas
218
+
219
+ ## 4.1.0-dev.85 (2025-10-22)
220
+
221
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
222
+
223
+ ## 4.1.0-dev.84 (2025-10-22)
224
+
225
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
226
+
227
+ ## 4.1.0-dev.83 (2025-10-22)
228
+
229
+ ### 🚀 Features
230
+
231
+ - add automated tests for vetra features ([#1962](https://github.com/powerhouse-inc/powerhouse/pull/1962))
232
+
233
+ ### ❤️ Thank You
234
+
235
+ - Guillermo Puente Sandoval @gpuente
236
+
237
+ ## 4.1.0-dev.82 (2025-10-21)
238
+
239
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
240
+
241
+ ## 4.1.0-dev.81 (2025-10-21)
242
+
243
+ ### 🚀 Features
244
+
245
+ - **reactor-browser:** remove catch all wildcard ([f09931a88](https://github.com/powerhouse-inc/powerhouse/commit/f09931a88))
246
+ - **reactor-browser,connect:** use new window function factory ([7886c284f](https://github.com/powerhouse-inc/powerhouse/commit/7886c284f))
247
+
248
+ ### ❤️ Thank You
249
+
250
+ - ryanwolhuter @ryanwolhuter
251
+
252
+ ## 4.1.0-dev.80 (2025-10-21)
253
+
254
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
255
+
256
+ ## 4.1.0-dev.79 (2025-10-20)
257
+
258
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
259
+
260
+ ## 4.1.0-dev.78 (2025-10-20)
261
+
262
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
263
+
264
+ ## 4.1.0-dev.77 (2025-10-20)
265
+
266
+ ### 🩹 Fixes
267
+
268
+ - add missing @openfeature/core peer dependency ([2c4a904b0](https://github.com/powerhouse-inc/powerhouse/commit/2c4a904b0))
269
+
270
+ ### ❤️ Thank You
271
+
272
+ - acaldas @acaldas
273
+
274
+ ## 4.1.0-dev.76 (2025-10-18)
275
+
276
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
277
+
278
+ ## 4.1.0-dev.75 (2025-10-17)
279
+
280
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
281
+
282
+ ## 4.1.0-dev.74 (2025-10-15)
283
+
284
+ ### 🩹 Fixes
285
+
286
+ - **codegen:** update graphql dependency in package.json ([257f368ac](https://github.com/powerhouse-inc/powerhouse/commit/257f368ac))
287
+
288
+ ### ❤️ Thank You
289
+
290
+ - Guillermo Puente @gpuente
291
+
292
+ ## 4.1.0-dev.73 (2025-10-15)
293
+
294
+ ### 🚀 Features
295
+
296
+ - **renown:** added login button ([f109c7305](https://github.com/powerhouse-inc/powerhouse/commit/f109c7305))
297
+
298
+ ### ❤️ Thank You
299
+
300
+ - Frank
301
+
302
+ ## 4.1.0-dev.72 (2025-10-15)
303
+
304
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
305
+
306
+ ## 4.1.0-dev.71 (2025-10-15)
307
+
308
+ ### 🩹 Fixes
309
+
310
+ - **codegen:** update analytics processor imports to use in processor templates ([#1954](https://github.com/powerhouse-inc/powerhouse/pull/1954))
311
+
312
+ ### ❤️ Thank You
313
+
314
+ - Guillermo Puente Sandoval @gpuente
315
+
316
+ ## 4.1.0-dev.70 (2025-10-14)
317
+
318
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
319
+
320
+ ## 4.1.0-dev.69 (2025-10-11)
321
+
322
+ ### 🚀 Features
323
+
324
+ - **builder-tools, ph-cli, connect:** reimplemented ph connect build and preview ([4f568517b](https://github.com/powerhouse-inc/powerhouse/commit/4f568517b))
325
+
326
+ ### ❤️ Thank You
327
+
328
+ - acaldas @acaldas
329
+
330
+ ## 4.1.0-dev.68 (2025-10-11)
331
+
332
+ ### 🚀 Features
333
+
334
+ - **vetra:** added read model to fetch vetra packages ([abb6d3742](https://github.com/powerhouse-inc/powerhouse/commit/abb6d3742))
335
+
336
+ ### ❤️ Thank You
337
+
338
+ - Frank
339
+
340
+ ## 4.1.0-dev.67 (2025-10-10)
341
+
342
+ ### 🚀 Features
343
+
344
+ - **vetra:** add open button to Package Information section ([#1930](https://github.com/powerhouse-inc/powerhouse/pull/1930))
345
+
346
+ ### ❤️ Thank You
347
+
348
+ - Guillermo Puente Sandoval @gpuente
349
+
350
+ ## 4.1.0-dev.66 (2025-10-09)
351
+
352
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
353
+
354
+ ## 4.1.0-dev.65 (2025-10-09)
355
+
356
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
357
+
358
+ ## 4.1.0-dev.64 (2025-10-09)
359
+
360
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
361
+
362
+ ## 4.1.0-dev.63 (2025-10-09)
363
+
364
+ ### 🚀 Features
365
+
366
+ - update @electric-sql/pglite version ([fa3529328](https://github.com/powerhouse-inc/powerhouse/commit/fa3529328))
367
+
368
+ ### ❤️ Thank You
369
+
370
+ - acaldas @acaldas
371
+
372
+ ## 4.1.0-dev.62 (2025-10-08)
373
+
374
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
375
+
376
+ ## 4.1.0-dev.61 (2025-10-08)
377
+
378
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
379
+
380
+ ## 4.1.0-dev.60 (2025-10-08)
381
+
382
+ ### 🚀 Features
383
+
384
+ - **vetra:** added read model to fetch vetra packages ([23c55364d](https://github.com/powerhouse-inc/powerhouse/commit/23c55364d))
385
+ - **monorepo:** use latest versions of react related deps ([#1905](https://github.com/powerhouse-inc/powerhouse/pull/1905))
386
+ - **monorepo:** remove global storybook installs ([#1903](https://github.com/powerhouse-inc/powerhouse/pull/1903))
387
+ - **monorepo:** update to react 19 ([#1902](https://github.com/powerhouse-inc/powerhouse/pull/1902))
388
+ - **vetra:** enabled HMR in dev mode ([8cf19757e](https://github.com/powerhouse-inc/powerhouse/commit/8cf19757e))
389
+ - **vetra:** new connect build setup on vetra ([8dd11a849](https://github.com/powerhouse-inc/powerhouse/commit/8dd11a849))
390
+ - **monorepo:** revert package versions ([8a1a02628](https://github.com/powerhouse-inc/powerhouse/commit/8a1a02628))
391
+ - **monorepo:** update eslint config ([ac97af97d](https://github.com/powerhouse-inc/powerhouse/commit/ac97af97d))
392
+ - adding feature flags to reactor-mcp ([fe4f2f683](https://github.com/powerhouse-inc/powerhouse/commit/fe4f2f683))
393
+ - stubbing out feature flag + reactor setup in connect and deleting unused code in reactor-browser ([793bbd7af](https://github.com/powerhouse-inc/powerhouse/commit/793bbd7af))
394
+ - syncing feature flag behavior between switchboard and reactor-local ([e45dc2bf7](https://github.com/powerhouse-inc/powerhouse/commit/e45dc2bf7))
395
+ - added initial pieces of the kysely operation store implementation ([3fbece162](https://github.com/powerhouse-inc/powerhouse/commit/3fbece162))
396
+ - **connect,builder-tools:** build rework ([#1871](https://github.com/powerhouse-inc/powerhouse/pull/1871))
397
+ - **codegen:** updated editor boilerplate with document state and example setName dispatch ([3e7c51cc3](https://github.com/powerhouse-inc/powerhouse/commit/3e7c51cc3))
398
+ - restructure document model to avoid circular imports ([#1874](https://github.com/powerhouse-inc/powerhouse/pull/1874))
399
+ - added watch-packages option to vetra command and disabled dynamic package loading by default ([#1875](https://github.com/powerhouse-inc/powerhouse/pull/1875))
400
+
401
+ ### ❤️ Thank You
402
+
403
+ - acaldas @acaldas
404
+ - Benjamin Jordan (@thegoldenmule)
405
+ - Frank
406
+ - Guillermo Puente @gpuente
407
+ - Guillermo Puente Sandoval @gpuente
408
+ - Ryan Wolhuter @ryanwolhuter
409
+ - ryanwolhuter @ryanwolhuter
410
+
411
+ ## 4.1.0-dev.59 (2025-09-24)
412
+
413
+ ### 🚀 Features
414
+
415
+ - **monorepo:** rename tsc to tsc:build ([c1385418b](https://github.com/powerhouse-inc/powerhouse/commit/c1385418b))
416
+
417
+ ### 🩹 Fixes
418
+
419
+ - **builder-tools:** declare @storybook/preview-api dependency ([705ac8da1](https://github.com/powerhouse-inc/powerhouse/commit/705ac8da1))
420
+ - lots of type fixes for modules ([8f4cf02fe](https://github.com/powerhouse-inc/powerhouse/commit/8f4cf02fe))
421
+
422
+ ### ❤️ Thank You
423
+
424
+ - acaldas @acaldas
425
+ - Benjamin Jordan (@thegoldenmule)
426
+ - ryanwolhuter @ryanwolhuter
427
+
428
+ ## 4.1.0-dev.58 (2025-09-18)
429
+
430
+ ### 🚀 Features
431
+
432
+ - adding feature flag to switchboard for controlling reactorv2 api ([4486c8a8d](https://github.com/powerhouse-inc/powerhouse/commit/4486c8a8d))
433
+
434
+ ### 🩹 Fixes
435
+
436
+ - test fix for document-drive package ([40f4b6416](https://github.com/powerhouse-inc/powerhouse/commit/40f4b6416))
437
+
438
+ ### ❤️ Thank You
439
+
440
+ - Benjamin Jordan (@thegoldenmule)
441
+
442
+ ## 4.1.0-dev.57 (2025-09-17)
443
+
444
+ ### 🚀 Features
445
+
446
+ - **monorepo:** empty commit to satisfy naming ([5aa18f417](https://github.com/powerhouse-inc/powerhouse/commit/5aa18f417))
447
+ - **monorepo:** merge main ([79f6472b1](https://github.com/powerhouse-inc/powerhouse/commit/79f6472b1))
448
+ - **monorepo:** update release branch workflow ([e9c221ab5](https://github.com/powerhouse-inc/powerhouse/commit/e9c221ab5))
449
+
450
+ ### 🩹 Fixes
451
+
452
+ - **monorepo:** re-add nx js plugin ([d477a49d7](https://github.com/powerhouse-inc/powerhouse/commit/d477a49d7))
453
+ - **monorepo:** regenerate lockfile ([7811171ff](https://github.com/powerhouse-inc/powerhouse/commit/7811171ff))
454
+ - **monorepo:** linting and type checking ([#1776](https://github.com/powerhouse-inc/powerhouse/pull/1776))
455
+
456
+ ### ❤️ Thank You
457
+
458
+ - Ryan Wolhuter @ryanwolhuter
459
+ - ryanwolhuter @ryanwolhuter
460
+
461
+ ## 4.1.0-dev.56 (2025-09-17)
462
+
463
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
464
+
465
+ ## 4.1.0-dev.55 (2025-09-16)
466
+
467
+ ### 🚀 Features
468
+
469
+ - enable supported document types for drag and drop feature ([#1860](https://github.com/powerhouse-inc/powerhouse/pull/1860))
470
+
471
+ ### ❤️ Thank You
472
+
473
+ - Guillermo Puente Sandoval @gpuente
474
+
475
+ ## 4.1.0-dev.54 (2025-09-16)
476
+
477
+ ### 🚀 Features
478
+
479
+ - adding reactor client to subgraph args ([d0a8011e6](https://github.com/powerhouse-inc/powerhouse/commit/d0a8011e6))
480
+
481
+ ### ❤️ Thank You
482
+
483
+ - Benjamin Jordan (@thegoldenmule)
484
+
485
+ ## 4.1.0-dev.53 (2025-09-13)
486
+
487
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
488
+
489
+ ## 4.1.0-dev.52 (2025-09-12)
490
+
491
+ ### 🩹 Fixes
492
+
493
+ - **connect-e2e:** fix failing tests ([88c3bea94](https://github.com/powerhouse-inc/powerhouse/commit/88c3bea94))
494
+
495
+ ### ❤️ Thank You
496
+
497
+ - acaldas @acaldas
498
+
499
+ ## 4.1.0-dev.51 (2025-09-11)
500
+
501
+ ### 🚀 Features
502
+
503
+ - **reactor-api:** generate sdk ([ec107015c](https://github.com/powerhouse-inc/powerhouse/commit/ec107015c))
504
+ - **reactor-api:** initial gql codegen ([3db9e9778](https://github.com/powerhouse-inc/powerhouse/commit/3db9e9778))
505
+ - **monorepo:** make format consistent across ignores ([98469560f](https://github.com/powerhouse-inc/powerhouse/commit/98469560f))
506
+ - **monorepo:** use consistent separate type imports ([6fd4ac0f4](https://github.com/powerhouse-inc/powerhouse/commit/6fd4ac0f4))
507
+ - **monorepo:** use consistent formatting ([d2a1182c5](https://github.com/powerhouse-inc/powerhouse/commit/d2a1182c5))
508
+
509
+ ### 🩹 Fixes
510
+
511
+ - linting fixes ([27fe7d397](https://github.com/powerhouse-inc/powerhouse/commit/27fe7d397))
512
+ - annoyingly, you have to add ignores to the root eslint ([bb6d993bd](https://github.com/powerhouse-inc/powerhouse/commit/bb6d993bd))
513
+ - **docs:** improve document hooks documentation ([d05fcb835](https://github.com/powerhouse-inc/powerhouse/commit/d05fcb835))
514
+
515
+ ### ❤️ Thank You
516
+
517
+ - Benjamin Jordan (@thegoldenmule)
518
+ - Callme-T
519
+ - ryanwolhuter @ryanwolhuter
520
+
521
+ ## 5.0.0-staging.9 (2025-09-09)
522
+
523
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
524
+
525
+ ## 5.0.0-staging.8 (2025-09-09)
526
+
527
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
528
+
529
+ ## 5.0.0-staging.7 (2025-09-09)
530
+
531
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
532
+
533
+ ## 5.0.0-staging.6 (2025-09-08)
534
+
535
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
536
+
537
+ ## 5.0.0-staging.5 (2025-09-08)
538
+
539
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
540
+
541
+ ## 5.0.0-staging.4 (2025-09-08)
542
+
543
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
544
+
545
+ ## 5.0.0-staging.3 (2025-09-08)
546
+
547
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
548
+
549
+ ## 5.0.0-staging.2 (2025-09-05)
550
+
551
+ ### 🩹 Fixes
552
+
553
+ - **docs:** added zip redundancy to release notes ([3acfe1027](https://github.com/powerhouse-inc/powerhouse/commit/3acfe1027))
554
+
555
+ ### ❤️ Thank You
556
+
557
+ - Callme-T
558
+
559
+ ## 5.0.0-staging.1 (2025-09-04)
560
+
561
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
562
+
563
+ ## 4.1.0-dev.44 (2025-09-04)
564
+
565
+ ### 🚀 Features
566
+
567
+ - **switchboard:** updated readme ([9659cf035](https://github.com/powerhouse-inc/powerhouse/commit/9659cf035))
568
+
569
+ ### ❤️ Thank You
570
+
571
+ - Frank
572
+
573
+ ## 4.1.0-dev.43 (2025-09-02)
574
+
575
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
576
+
577
+ ## 4.1.0-dev.42 (2025-09-02)
578
+
579
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
580
+
581
+ ## 4.1.0-dev.41 (2025-09-02)
582
+
583
+ ### 🩹 Fixes
584
+
585
+ - **document-drive:** install openssl ([89f21529e](https://github.com/powerhouse-inc/powerhouse/commit/89f21529e))
586
+ - **document-drive:** prisma build ([7884368a2](https://github.com/powerhouse-inc/powerhouse/commit/7884368a2))
587
+ - **switchboard, connect:** fetch proper tag ([79a0bc967](https://github.com/powerhouse-inc/powerhouse/commit/79a0bc967))
588
+
589
+ ### ❤️ Thank You
590
+
591
+ - Frank
592
+
593
+ ## 4.1.0-dev.40 (2025-09-02)
594
+
595
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
596
+
597
+ ## 4.1.0-dev.39 (2025-09-02)
598
+
599
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
600
+
601
+ ## 4.1.0-dev.38 (2025-08-30)
602
+
603
+ ### 🚀 Features
604
+
605
+ - gql-gen spec ([5bf2c7226](https://github.com/powerhouse-inc/powerhouse/commit/5bf2c7226))
606
+ - **reactor:** we have a reactor facade ([7a61e68ab](https://github.com/powerhouse-inc/powerhouse/commit/7a61e68ab))
607
+ - **reactor:** impstubbing out initial interface and types ([b74b194f9](https://github.com/powerhouse-inc/powerhouse/commit/b74b194f9))
608
+
609
+ ### ❤️ Thank You
610
+
611
+ - Benjamin Jordan (@thegoldenmule)
612
+
613
+ ## 4.1.0-dev.37 (2025-08-29)
614
+
615
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
616
+
617
+ ## 4.1.0-dev.36 (2025-08-28)
618
+
619
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
620
+
621
+ ## 4.1.0-dev.35 (2025-08-27)
622
+
623
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
624
+
625
+ ## 4.1.0-dev.34 (2025-08-26)
626
+
627
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
628
+
629
+ ## 4.1.0-dev.33 (2025-08-21)
630
+
631
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
632
+
633
+ ## 4.1.0-dev.32 (2025-08-21)
634
+
635
+ ### 🩹 Fixes
636
+
637
+ - **ph-cli:** resolve local document model loading in switchboard and vetra ([262f13035](https://github.com/powerhouse-inc/powerhouse/commit/262f13035))
638
+
639
+ ### ❤️ Thank You
640
+
641
+ - Guillermo Puente @gpuente
642
+
643
+ ## 4.1.0-dev.31 (2025-08-20)
644
+
645
+ ### 🚀 Features
646
+
647
+ - added interactive mode to vetra command ([#1775](https://github.com/powerhouse-inc/powerhouse/pull/1775))
648
+
649
+ ### ❤️ Thank You
650
+
651
+ - Guillermo Puente Sandoval @gpuente
652
+
653
+ ## 4.1.0-dev.30 (2025-08-20)
654
+
655
+ ### 🩹 Fixes
656
+
657
+ - add additional tags ([4f0cf8658](https://github.com/powerhouse-inc/powerhouse/commit/4f0cf8658))
658
+
659
+ ### ❤️ Thank You
660
+
661
+ - Frank
662
+
663
+ ## 4.1.0-dev.29 (2025-08-20)
664
+
665
+ ### 🩹 Fixes
666
+
667
+ - fetch tags :-) ([df0b7beba](https://github.com/powerhouse-inc/powerhouse/commit/df0b7beba))
668
+
669
+ ### ❤️ Thank You
670
+
671
+ - Frank
672
+
673
+ ## 4.1.0-dev.28 (2025-08-20)
674
+
675
+ ### 🩹 Fixes
676
+
677
+ - removed metadata extraction from commit ([637960021](https://github.com/powerhouse-inc/powerhouse/commit/637960021))
678
+
679
+ ### ❤️ Thank You
680
+
681
+ - Frank
682
+
683
+ ## 4.1.0-dev.27 (2025-08-20)
684
+
685
+ ### 🩹 Fixes
686
+
687
+ - extract metadata tags and labels for docker ([bb9c81ce7](https://github.com/powerhouse-inc/powerhouse/commit/bb9c81ce7))
688
+ - use github tag properly ([95ccff4b8](https://github.com/powerhouse-inc/powerhouse/commit/95ccff4b8))
689
+ - proper tag for docker images ([e73e10617](https://github.com/powerhouse-inc/powerhouse/commit/e73e10617))
690
+ - use patname secret instead of github token ([db9dfd5cd](https://github.com/powerhouse-inc/powerhouse/commit/db9dfd5cd))
691
+
692
+ ### ❤️ Thank You
693
+
694
+ - Frank
695
+
696
+ ## 4.1.0-dev.26 (2025-08-20)
697
+
698
+ ### 🩹 Fixes
699
+
700
+ - docker deploy alternative approach ([2a5522cdc](https://github.com/powerhouse-inc/powerhouse/commit/2a5522cdc))
701
+
702
+ ### ❤️ Thank You
703
+
704
+ - Frank
705
+
706
+ ## 4.1.0-dev.25 (2025-08-20)
707
+
708
+ ### 🩹 Fixes
709
+
710
+ - docker deploy ([b057a7cce](https://github.com/powerhouse-inc/powerhouse/commit/b057a7cce))
711
+
712
+ ### ❤️ Thank You
713
+
714
+ - Frank
715
+
716
+ ## 4.1.0-dev.24 (2025-08-20)
717
+
718
+ ### 🚀 Features
719
+
720
+ - **codegen:** add drive explorer template ([9c27219dc](https://github.com/powerhouse-inc/powerhouse/commit/9c27219dc))
721
+ - **connect,reactor-browser:** remove more old electron garbage ([5cd255568](https://github.com/powerhouse-inc/powerhouse/commit/5cd255568))
722
+ - **connect:** remove broken electron code ([3f28d6a46](https://github.com/powerhouse-inc/powerhouse/commit/3f28d6a46))
723
+ - **reactor-browser,connect,vetra:** move state hooks into reactor browser and eliminate redundant and dead code ([30fa16f1f](https://github.com/powerhouse-inc/powerhouse/commit/30fa16f1f))
724
+ - **connect,state,renown:** add state hook for renown ([5beb1252b](https://github.com/powerhouse-inc/powerhouse/commit/5beb1252b))
725
+ - **connect:** remove unused dep ([ef492bc7a](https://github.com/powerhouse-inc/powerhouse/commit/ef492bc7a))
726
+ - **connect,state,reactor-browser:** eliminate jotai ([53b1ab759](https://github.com/powerhouse-inc/powerhouse/commit/53b1ab759))
727
+ - **state:** rename to vetra packages ([c415b7dc2](https://github.com/powerhouse-inc/powerhouse/commit/c415b7dc2))
728
+ - **state:** use ph packages atoms ([6421fbeea](https://github.com/powerhouse-inc/powerhouse/commit/6421fbeea))
729
+
730
+ ### 🩹 Fixes
731
+
732
+ - today claude taught me I could mock a package to fix circular references ([dcb83174c](https://github.com/powerhouse-inc/powerhouse/commit/dcb83174c))
733
+ - **monorepo:** numerous build issues ([04349dd25](https://github.com/powerhouse-inc/powerhouse/commit/04349dd25))
734
+
735
+ ### ❤️ Thank You
736
+
737
+ - Benjamin Jordan (@thegoldenmule)
738
+ - ryanwolhuter @ryanwolhuter
739
+
740
+ ## 4.1.0-dev.23 (2025-08-19)
741
+
742
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
743
+
744
+ ## 4.1.0-dev.22 (2025-08-15)
745
+
746
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
747
+
748
+ ## 4.1.0-dev.21 (2025-08-15)
749
+
750
+ ### 🚀 Features
751
+
752
+ - **vetra:** update manifest when new module is added ([#1766](https://github.com/powerhouse-inc/powerhouse/pull/1766))
753
+ - **academy:** hooks documentation ([a517eadce](https://github.com/powerhouse-inc/powerhouse/commit/a517eadce))
754
+
755
+ ### 🩹 Fixes
756
+
757
+ - **academy:** subgraphs documentation update ([4f3a024ab](https://github.com/powerhouse-inc/powerhouse/commit/4f3a024ab))
758
+ - fixed debug launch configuration now that source maps are in the proper locations ([c75d793ed](https://github.com/powerhouse-inc/powerhouse/commit/c75d793ed))
759
+
760
+ ### ❤️ Thank You
761
+
762
+ - Benjamin Jordan (@thegoldenmule)
763
+ - Callme-T
764
+ - Guillermo Puente Sandoval @gpuente
765
+
766
+ ## 4.1.0-dev.20 (2025-08-15)
767
+
768
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
769
+
770
+ ## 4.1.0-dev.19 (2025-08-14)
771
+
772
+ ### 🩹 Fixes
773
+
774
+ - **academy:** subgraph example ([ae3e24458](https://github.com/powerhouse-inc/powerhouse/commit/ae3e24458))
775
+
776
+ ### ❤️ Thank You
777
+
778
+ - Frank
779
+
780
+ ## 4.1.0-dev.18 (2025-08-14)
781
+
782
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
783
+
784
+ ## 4.1.0-dev.17 (2025-08-12)
785
+
786
+ ### 🚀 Features
787
+
788
+ - refactor vetra command and remove vetra deps in connect and reactor ([#1753](https://github.com/powerhouse-inc/powerhouse/pull/1753))
789
+
790
+ ### ❤️ Thank You
791
+
792
+ - Guillermo Puente Sandoval @gpuente
793
+
794
+ ## 4.1.0-dev.16 (2025-08-12)
795
+
796
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
797
+
798
+ ## 4.1.0-dev.15 (2025-08-12)
799
+
800
+ ### 🚀 Features
801
+
802
+ - **reactor-mcp,reactor-api,reactor-local,switchboard,ph-cli:** run mcp on express app ([d51fa590e](https://github.com/powerhouse-inc/powerhouse/commit/d51fa590e))
803
+
804
+ ### ❤️ Thank You
805
+
806
+ - acaldas @acaldas
807
+
808
+ ## 4.1.0-dev.14 (2025-08-11)
809
+
810
+ ### 🚀 Features
811
+
812
+ - update document engineering dep ([54dcee90d](https://github.com/powerhouse-inc/powerhouse/commit/54dcee90d))
813
+
814
+ ### ❤️ Thank You
815
+
816
+ - acaldas @acaldas
817
+
818
+ ## 4.1.0-dev.13 (2025-08-09)
819
+
820
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
821
+
822
+ ## 4.1.0-dev.12 (2025-08-08)
823
+
824
+ This was a version bump only for @powerhousedao/academy to align it with other projects, there were no code changes.
825
+
1
826
  ## 4.1.0-dev.11 (2025-08-07)
2
827
 
3
828
  ### 🚀 Features