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

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