@powerhousedao/academy 4.1.0-dev.10 → 4.1.0-dev.100

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