create-zenbu-app 0.0.36 → 0.0.37
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/package.json
CHANGED
|
@@ -77,6 +77,34 @@ pnpm run build:electron
|
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
|
|
80
|
+
# Changelog
|
|
81
|
+
Source: https://zenbulabs.mintlify.app/changelog/overview
|
|
82
|
+
|
|
83
|
+
New features, updates, and fixes for Zenbu.js.
|
|
84
|
+
|
|
85
|
+
<Update label="June 5, 2026">
|
|
86
|
+
## Week of June 2 — desktop app v0.0.10 and `@zenbujs/core` 0.4.3
|
|
87
|
+
|
|
88
|
+
The Zenbu desktop app shipped five releases this week (v0.0.6 → v0.0.10, signed and notarized for macOS), along with `@zenbujs/core` 0.3.0 → 0.4.3, `create-zenbu-app` 0.0.36, and `create-desktop-app` 0.1.4.
|
|
89
|
+
|
|
90
|
+
### New
|
|
91
|
+
|
|
92
|
+
* **Enable and disable plugins at runtime.** You can now turn plugins on and off without restarting the app. Injections hot-reload when a plugin's state changes, so views and patched behavior update in place. See [Plugins](/core/plugins) and [Injections](/core/injections).
|
|
93
|
+
* **`relaunch()` bridge on the installing screen.** Plugin installation can trigger a clean app relaunch from the install flow, so first-run setup completes without a manual restart.
|
|
94
|
+
* **`makeCollection` is now exported.** The collection helper is part of the public API surface for building typed groups of records on top of [state](/core/state).
|
|
95
|
+
|
|
96
|
+
### Updates
|
|
97
|
+
|
|
98
|
+
* **Self-healing plugin clones.** If a plugin install is interrupted (network drop, force-quit, partial download), the next launch detects the broken state and finishes or re-clones the plugin automatically — no more stuck "installing" screens.
|
|
99
|
+
* **Plugin service internals reworked.** The data structure backing [services](/core/services) was simplified, paving the way for the enable/disable feature and reducing the work done on plugin load.
|
|
100
|
+
|
|
101
|
+
### Fixes
|
|
102
|
+
|
|
103
|
+
* **Proxy memory leak resolved.** Long-running sessions no longer accumulate memory through the RPC proxy layer used by [RPC](/core/rpc) and [advice](/core/advice).
|
|
104
|
+
* **Garbage collection issues fixed.** Several plugin lifecycle objects were being retained after teardown; they are now released correctly, lowering steady-state memory use.
|
|
105
|
+
</Update>
|
|
106
|
+
|
|
107
|
+
|
|
80
108
|
# Concepts
|
|
81
109
|
Source: https://zenbulabs.mintlify.app/concepts
|
|
82
110
|
|
|
@@ -400,7 +428,7 @@ Source: https://zenbulabs.mintlify.app/core/injections
|
|
|
400
428
|
|
|
401
429
|
|
|
402
430
|
|
|
403
|
-
An injection is a named value a plugin registers for other code to find. The value can be a React component
|
|
431
|
+
An injection is a named value a plugin registers for other code to find. The value can be a React component or a function. Other code looks up injections by name, or filters them by optional metadata.
|
|
404
432
|
|
|
405
433
|
## Registering an injection
|
|
406
434
|
|
|
@@ -1391,7 +1419,7 @@ Source: https://zenbulabs.mintlify.app/introduction
|
|
|
1391
1419
|
|
|
1392
1420
|
|
|
1393
1421
|
|
|
1394
|
-
Zenbu.js is the framework for building extensible applications
|
|
1422
|
+
Zenbu.js is the framework for building extensible applications that powers [Zenbu](https://zenbu.dev).
|
|
1395
1423
|
|
|
1396
1424
|
Apps and plugins built with Zenbu.js are designed to be modified after they are installed. Users can edit the source code directly, or install plugins that extend the app with new functionality.
|
|
1397
1425
|
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"peerDependencies": {
|
|
11
11
|
"@zenbujs/core": "*",
|
|
12
12
|
"react": ">=18",
|
|
13
|
-
"react-dom": ">=18"
|
|
13
|
+
"react-dom": ">=18",
|
|
14
|
+
"zod": ">=4"
|
|
14
15
|
},
|
|
15
16
|
"devDependencies": {
|
|
16
17
|
"@zenbujs/core": "0.0.24",
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
"@types/react-dom": "^19.0.0",
|
|
20
21
|
"react": "^19.0.0",
|
|
21
22
|
"react-dom": "^19.0.0",
|
|
22
|
-
"typescript": "^5.4.5"
|
|
23
|
+
"typescript": "^5.4.5",
|
|
24
|
+
"zod": "^4.4.3"
|
|
23
25
|
}
|
|
24
26
|
}
|
|
@@ -73,6 +73,34 @@ pnpm run build:electron
|
|
|
73
73
|
```
|
|
74
74
|
|
|
75
75
|
|
|
76
|
+
# Changelog
|
|
77
|
+
Source: https://zenbulabs.mintlify.app/changelog/overview
|
|
78
|
+
|
|
79
|
+
New features, updates, and fixes for Zenbu.js.
|
|
80
|
+
|
|
81
|
+
<Update label="June 5, 2026">
|
|
82
|
+
## Week of June 2 — desktop app v0.0.10 and `@zenbujs/core` 0.4.3
|
|
83
|
+
|
|
84
|
+
The Zenbu desktop app shipped five releases this week (v0.0.6 → v0.0.10, signed and notarized for macOS), along with `@zenbujs/core` 0.3.0 → 0.4.3, `create-zenbu-app` 0.0.36, and `create-desktop-app` 0.1.4.
|
|
85
|
+
|
|
86
|
+
### New
|
|
87
|
+
|
|
88
|
+
* **Enable and disable plugins at runtime.** You can now turn plugins on and off without restarting the app. Injections hot-reload when a plugin's state changes, so views and patched behavior update in place. See [Plugins](/core/plugins) and [Injections](/core/injections).
|
|
89
|
+
* **`relaunch()` bridge on the installing screen.** Plugin installation can trigger a clean app relaunch from the install flow, so first-run setup completes without a manual restart.
|
|
90
|
+
* **`makeCollection` is now exported.** The collection helper is part of the public API surface for building typed groups of records on top of [state](/core/state).
|
|
91
|
+
|
|
92
|
+
### Updates
|
|
93
|
+
|
|
94
|
+
* **Self-healing plugin clones.** If a plugin install is interrupted (network drop, force-quit, partial download), the next launch detects the broken state and finishes or re-clones the plugin automatically — no more stuck "installing" screens.
|
|
95
|
+
* **Plugin service internals reworked.** The data structure backing [services](/core/services) was simplified, paving the way for the enable/disable feature and reducing the work done on plugin load.
|
|
96
|
+
|
|
97
|
+
### Fixes
|
|
98
|
+
|
|
99
|
+
* **Proxy memory leak resolved.** Long-running sessions no longer accumulate memory through the RPC proxy layer used by [RPC](/core/rpc) and [advice](/core/advice).
|
|
100
|
+
* **Garbage collection issues fixed.** Several plugin lifecycle objects were being retained after teardown; they are now released correctly, lowering steady-state memory use.
|
|
101
|
+
</Update>
|
|
102
|
+
|
|
103
|
+
|
|
76
104
|
# Concepts
|
|
77
105
|
Source: https://zenbulabs.mintlify.app/concepts
|
|
78
106
|
|
|
@@ -396,7 +424,7 @@ Source: https://zenbulabs.mintlify.app/core/injections
|
|
|
396
424
|
|
|
397
425
|
|
|
398
426
|
|
|
399
|
-
An injection is a named value a plugin registers for other code to find. The value can be a React component
|
|
427
|
+
An injection is a named value a plugin registers for other code to find. The value can be a React component or a function. Other code looks up injections by name, or filters them by optional metadata.
|
|
400
428
|
|
|
401
429
|
## Registering an injection
|
|
402
430
|
|
|
@@ -1387,7 +1415,7 @@ Source: https://zenbulabs.mintlify.app/introduction
|
|
|
1387
1415
|
|
|
1388
1416
|
|
|
1389
1417
|
|
|
1390
|
-
Zenbu.js is the framework for building extensible applications
|
|
1418
|
+
Zenbu.js is the framework for building extensible applications that powers [Zenbu](https://zenbu.dev).
|
|
1391
1419
|
|
|
1392
1420
|
Apps and plugins built with Zenbu.js are designed to be modified after they are installed. Users can edit the source code directly, or install plugins that extend the app with new functionality.
|
|
1393
1421
|
|
|
@@ -12,13 +12,14 @@
|
|
|
12
12
|
"db:generate": "zen db generate"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@zenbujs/core": "0.0.24",
|
|
16
15
|
"@tailwindcss/vite": "^4.2.0",
|
|
17
16
|
"@vitejs/plugin-react": "^5.0.0",
|
|
17
|
+
"@zenbujs/core": "0.0.24",
|
|
18
18
|
"react": "^19.0.0",
|
|
19
19
|
"react-dom": "^19.0.0",
|
|
20
20
|
"tailwindcss": "^4.2.0",
|
|
21
|
-
"vite": "^6.0.0"
|
|
21
|
+
"vite": "^6.0.0",
|
|
22
|
+
"zod": "^4.4.3"
|
|
22
23
|
},
|
|
23
24
|
"devDependencies": {
|
|
24
25
|
"@types/node": "^22.0.0",
|
|
@@ -73,6 +73,34 @@ pnpm run build:electron
|
|
|
73
73
|
```
|
|
74
74
|
|
|
75
75
|
|
|
76
|
+
# Changelog
|
|
77
|
+
Source: https://zenbulabs.mintlify.app/changelog/overview
|
|
78
|
+
|
|
79
|
+
New features, updates, and fixes for Zenbu.js.
|
|
80
|
+
|
|
81
|
+
<Update label="June 5, 2026">
|
|
82
|
+
## Week of June 2 — desktop app v0.0.10 and `@zenbujs/core` 0.4.3
|
|
83
|
+
|
|
84
|
+
The Zenbu desktop app shipped five releases this week (v0.0.6 → v0.0.10, signed and notarized for macOS), along with `@zenbujs/core` 0.3.0 → 0.4.3, `create-zenbu-app` 0.0.36, and `create-desktop-app` 0.1.4.
|
|
85
|
+
|
|
86
|
+
### New
|
|
87
|
+
|
|
88
|
+
* **Enable and disable plugins at runtime.** You can now turn plugins on and off without restarting the app. Injections hot-reload when a plugin's state changes, so views and patched behavior update in place. See [Plugins](/core/plugins) and [Injections](/core/injections).
|
|
89
|
+
* **`relaunch()` bridge on the installing screen.** Plugin installation can trigger a clean app relaunch from the install flow, so first-run setup completes without a manual restart.
|
|
90
|
+
* **`makeCollection` is now exported.** The collection helper is part of the public API surface for building typed groups of records on top of [state](/core/state).
|
|
91
|
+
|
|
92
|
+
### Updates
|
|
93
|
+
|
|
94
|
+
* **Self-healing plugin clones.** If a plugin install is interrupted (network drop, force-quit, partial download), the next launch detects the broken state and finishes or re-clones the plugin automatically — no more stuck "installing" screens.
|
|
95
|
+
* **Plugin service internals reworked.** The data structure backing [services](/core/services) was simplified, paving the way for the enable/disable feature and reducing the work done on plugin load.
|
|
96
|
+
|
|
97
|
+
### Fixes
|
|
98
|
+
|
|
99
|
+
* **Proxy memory leak resolved.** Long-running sessions no longer accumulate memory through the RPC proxy layer used by [RPC](/core/rpc) and [advice](/core/advice).
|
|
100
|
+
* **Garbage collection issues fixed.** Several plugin lifecycle objects were being retained after teardown; they are now released correctly, lowering steady-state memory use.
|
|
101
|
+
</Update>
|
|
102
|
+
|
|
103
|
+
|
|
76
104
|
# Concepts
|
|
77
105
|
Source: https://zenbulabs.mintlify.app/concepts
|
|
78
106
|
|
|
@@ -396,7 +424,7 @@ Source: https://zenbulabs.mintlify.app/core/injections
|
|
|
396
424
|
|
|
397
425
|
|
|
398
426
|
|
|
399
|
-
An injection is a named value a plugin registers for other code to find. The value can be a React component
|
|
427
|
+
An injection is a named value a plugin registers for other code to find. The value can be a React component or a function. Other code looks up injections by name, or filters them by optional metadata.
|
|
400
428
|
|
|
401
429
|
## Registering an injection
|
|
402
430
|
|
|
@@ -1387,7 +1415,7 @@ Source: https://zenbulabs.mintlify.app/introduction
|
|
|
1387
1415
|
|
|
1388
1416
|
|
|
1389
1417
|
|
|
1390
|
-
Zenbu.js is the framework for building extensible applications
|
|
1418
|
+
Zenbu.js is the framework for building extensible applications that powers [Zenbu](https://zenbu.dev).
|
|
1391
1419
|
|
|
1392
1420
|
Apps and plugins built with Zenbu.js are designed to be modified after they are installed. Users can edit the source code directly, or install plugins that extend the app with new functionality.
|
|
1393
1421
|
|
|
@@ -12,11 +12,12 @@
|
|
|
12
12
|
"db:generate": "zen db generate"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@zenbujs/core": "0.0.24",
|
|
16
15
|
"@vitejs/plugin-react": "^5.0.0",
|
|
16
|
+
"@zenbujs/core": "0.0.24",
|
|
17
17
|
"react": "^19.0.0",
|
|
18
18
|
"react-dom": "^19.0.0",
|
|
19
|
-
"vite": "^6.0.0"
|
|
19
|
+
"vite": "^6.0.0",
|
|
20
|
+
"zod": "^4.4.3"
|
|
20
21
|
},
|
|
21
22
|
"devDependencies": {
|
|
22
23
|
"@types/node": "^22.0.0",
|