@goodandready/dsh-clinebot 0.3.18 → 0.3.20

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
@@ -5,6 +5,17 @@ All notable changes to `@goodandready/dsh-clinebot` will be documented in this f
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.3.20] - 2026-09-23
9
+
10
+ ### Fixed
11
+ - **Web Boot Freeze Hotfix (#64 / GitHub #3)**: Removed non-existent `configForms` service from client `inject: ['slots', 'locale']` and cleared `dsh.client.inject: []` in `package.json`. In version 0.3.19, Cordis in the browser hung indefinitely waiting for `configForms`, causing DSH startup to fail with `Failed to load plugins / web boot: 1 entry did not activate / @goodandready/dsh-clinebot: pending (waiting for service: configForms)`.
12
+ - **Safe Fallback**: Retained safe optional chaining for settings mirror refresh (`(ctx?.get && ctx.get('lanSettings')) || ctx?.settingsScope`) without introducing hard service dependencies.
13
+
14
+ ## 0.3.19
15
+
16
+ ### Fixed
17
+ - Settings no longer wait on the removed settingsScope service. The client uses configForms (#62).
18
+
8
19
  ## [0.3.18] - 2026-09-22
9
20
 
10
21
  ### Added
package/lib/client.js CHANGED
@@ -1494,7 +1494,7 @@ function apply(ctx) {
1494
1494
  )
1495
1495
  }
1496
1496
 
1497
- module.exports = { apply, inject: ['slots', 'locale', 'settingsScope'] }
1497
+ module.exports = { apply, inject: ['slots', 'locale'] }
1498
1498
 
1499
1499
  return module.exports
1500
1500
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-clinebot",
3
- "version": "0.3.18",
3
+ "version": "0.3.20",
4
4
  "description": "DeepSeek Harness companion for ClineBot / ClinePass: dynamic subscription models sync, quota exhaustion warnings, session metrics, dedicated settings page, live usage limits, and /cline slash-command.",
5
5
  "license": "MIT",
6
6
  "type": "module",