beads-enhanced-ui 0.1.2 → 0.1.3
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/CHANGES.md +13 -0
- package/app/index.html +6 -0
- package/app/main.bundle.js +239 -239
- package/app/main.bundle.js.map +3 -3
- package/app/styles.css +15 -0
- package/package.json +1 -1
- package/server/bd.js +45 -1
- package/server/db.js +35 -0
- package/server/watcher.js +1 -1
- package/server/ws.js +8 -5
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
Released April 22, 2026
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Header banner warns when the active workspace uses Dolt embedded mode, where occasional lock conflicts with external `bd` processes may occur.
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- `bd` invocations that fail with a Dolt embedded-mode exclusive-lock error are now automatically retried with jittered backoff (up to 5 seconds), reducing transient failures during concurrent access.
|
|
14
|
+
- Watcher cooldown for Dolt embedded-mode increased from 5 s to 30 s to prevent lock-storm cascades after a write.
|
|
15
|
+
|
|
3
16
|
## 0.1.2
|
|
4
17
|
|
|
5
18
|
Released April 15, 2026
|
package/app/index.html
CHANGED
|
@@ -13,6 +13,12 @@
|
|
|
13
13
|
<div id="workspace-picker" class="header-workspace"></div>
|
|
14
14
|
<nav id="top-nav" class="header-nav" aria-label="Primary"></nav>
|
|
15
15
|
</div>
|
|
16
|
+
<div
|
|
17
|
+
id="backend-status-banner"
|
|
18
|
+
class="backend-status-banner"
|
|
19
|
+
role="status"
|
|
20
|
+
hidden
|
|
21
|
+
></div>
|
|
16
22
|
<div class="header-actions">
|
|
17
23
|
<div
|
|
18
24
|
id="header-loading"
|