@powerhousedao/academy 4.1.0-dev.59 → 4.1.0-dev.61

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,38 @@
1
+ ## 4.1.0-dev.61 (2025-10-08)
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.60 (2025-10-08)
6
+
7
+ ### 🚀 Features
8
+
9
+ - **vetra:** added read model to fetch vetra packages ([23c55364d](https://github.com/powerhouse-inc/powerhouse/commit/23c55364d))
10
+ - **monorepo:** use latest versions of react related deps ([#1905](https://github.com/powerhouse-inc/powerhouse/pull/1905))
11
+ - **monorepo:** remove global storybook installs ([#1903](https://github.com/powerhouse-inc/powerhouse/pull/1903))
12
+ - **monorepo:** update to react 19 ([#1902](https://github.com/powerhouse-inc/powerhouse/pull/1902))
13
+ - **vetra:** enabled HMR in dev mode ([8cf19757e](https://github.com/powerhouse-inc/powerhouse/commit/8cf19757e))
14
+ - **vetra:** new connect build setup on vetra ([8dd11a849](https://github.com/powerhouse-inc/powerhouse/commit/8dd11a849))
15
+ - **monorepo:** revert package versions ([8a1a02628](https://github.com/powerhouse-inc/powerhouse/commit/8a1a02628))
16
+ - **monorepo:** update eslint config ([ac97af97d](https://github.com/powerhouse-inc/powerhouse/commit/ac97af97d))
17
+ - adding feature flags to reactor-mcp ([fe4f2f683](https://github.com/powerhouse-inc/powerhouse/commit/fe4f2f683))
18
+ - stubbing out feature flag + reactor setup in connect and deleting unused code in reactor-browser ([793bbd7af](https://github.com/powerhouse-inc/powerhouse/commit/793bbd7af))
19
+ - syncing feature flag behavior between switchboard and reactor-local ([e45dc2bf7](https://github.com/powerhouse-inc/powerhouse/commit/e45dc2bf7))
20
+ - added initial pieces of the kysely operation store implementation ([3fbece162](https://github.com/powerhouse-inc/powerhouse/commit/3fbece162))
21
+ - **connect,builder-tools:** build rework ([#1871](https://github.com/powerhouse-inc/powerhouse/pull/1871))
22
+ - **codegen:** updated editor boilerplate with document state and example setName dispatch ([3e7c51cc3](https://github.com/powerhouse-inc/powerhouse/commit/3e7c51cc3))
23
+ - restructure document model to avoid circular imports ([#1874](https://github.com/powerhouse-inc/powerhouse/pull/1874))
24
+ - added watch-packages option to vetra command and disabled dynamic package loading by default ([#1875](https://github.com/powerhouse-inc/powerhouse/pull/1875))
25
+
26
+ ### ❤️ Thank You
27
+
28
+ - acaldas @acaldas
29
+ - Benjamin Jordan (@thegoldenmule)
30
+ - Frank
31
+ - Guillermo Puente @gpuente
32
+ - Guillermo Puente Sandoval @gpuente
33
+ - Ryan Wolhuter @ryanwolhuter
34
+ - ryanwolhuter @ryanwolhuter
35
+
1
36
  ## 4.1.0-dev.59 (2025-09-24)
2
37
 
3
38
  ### 🚀 Features
@@ -756,6 +756,10 @@ Options:
756
756
  will prompt for user confirmation before generating code. This is useful
757
757
  for development when you want control over when code regeneration happens.
758
758
 
759
+ --watch-packages Enable dynamic loading for document-models and editors in connect-studio
760
+ and switchboard. When enabled, the system will watch for changes in these
761
+ directories and reload them dynamically. Default is disabled for better performance.
762
+
759
763
  Examples:
760
764
  $ ph vetra # Start Vetra environment with defaults
761
765
  $ ph vetra --switchboard-port 5000 --connect-port 3001 # Use custom ports
@@ -765,6 +769,7 @@ Examples:
765
769
  $ ph vetra --remote-drive http://localhost:4001/d/docs # Connect to remote drive
766
770
  $ ph vetra --disable-connect # Start only backend services
767
771
  $ ph vetra --interactive # Enable interactive code generation mode
772
+ $ ph vetra --watch-packages # Enable dynamic loading for development
768
773
  $ ph vetra --https-key-file key.pem --https-cert-file cert.pem # Use HTTPS
769
774
  ```
770
775
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerhousedao/academy",
3
- "version": "4.1.0-dev.59",
3
+ "version": "4.1.0-dev.61",
4
4
  "homepage": "https://powerhouse.academy",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,15 +16,17 @@
16
16
  "@powerhousedao/design-system": "^1.6.0",
17
17
  "clsx": "^2.0.0",
18
18
  "prism-react-renderer": "^2.3.0",
19
- "react": "^18.0.0",
20
- "react-dom": "^18.0.0"
19
+ "react": "^19.2.0",
20
+ "react-dom": "^19.2.0"
21
21
  },
22
22
  "devDependencies": {
23
- "@docusaurus/module-type-aliases": "^3.8.0",
24
- "@docusaurus/tsconfig": "^3.8.0",
25
- "@docusaurus/types": "^3.8.0",
23
+ "@docusaurus/module-type-aliases": "^3.9.1",
24
+ "@docusaurus/tsconfig": "^3.9.1",
25
+ "@docusaurus/types": "^3.9.1",
26
+ "@types/react": "^19.2.0",
27
+ "@types/react-dom": "^19.2.0",
26
28
  "tsx": "^4.20.3",
27
- "typescript": "^5.7.3"
29
+ "typescript": "^5.9.3"
28
30
  },
29
31
  "browserslist": {
30
32
  "production": [
@@ -1,10 +1,10 @@
1
- import clsx from "clsx";
2
1
  import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
3
- import useBaseUrl from "@docusaurus/useBaseUrl";
4
- import Layout from "@theme/Layout";
5
2
  import HomepageFeatures from "@site/src/components/HomepageFeatures";
6
3
  import Heading from "@theme/Heading";
4
+ import Layout from "@theme/Layout";
5
+ import clsx from "clsx";
7
6
  import styles from "./index.module.css";
7
+ import type { JSX } from "react";
8
8
 
9
9
  function HomepageHeader() {
10
10
  const { siteConfig } = useDocusaurusContext();
@@ -1 +1 @@
1
- {"root":["./babel.config.js","./docusaurus.config.ts","./sidebars.ts","./scripts/generate-combined-cli-docs.ts","./src/components/HomepageFeatures/index.tsx","./src/pages/_archive-homepage.tsx","./src/theme/DocCardList/index.tsx"],"version":"5.9.2"}
1
+ {"root":["./babel.config.js","./docusaurus.config.ts","./sidebars.ts","./scripts/generate-combined-cli-docs.ts","./src/components/HomepageFeatures/index.tsx","./src/pages/_archive-homepage.tsx","./src/theme/DocCardList/index.tsx"],"version":"5.9.3"}