@link-assistant/hive-mind 0.54.2 → 0.54.4
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 +17 -0
- package/package.json +1 -1
- package/src/telegram-bot.mjs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 0.54.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4e53d67: fix: resolve TypeError in telegram-bot when using --tokens-budget-stats
|
|
8
|
+
|
|
9
|
+
Fixed type safety bug that prevented the --tokens-budget-stats option from working via telegram bot configuration overrides. Changed from lino.parse() to lino.parseStringValues() to ensure only string values are returned, making .trim() safe to call. The feature was already fully implemented but crashed when used via TELEGRAM_HIVE_OVERRIDES or TELEGRAM_SOLVE_OVERRIDES.
|
|
10
|
+
|
|
11
|
+
## 0.54.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 4d4b461: Add Playwright browser verification to installation script and CI
|
|
16
|
+
- Enhanced `scripts/ubuntu-24-server-install.sh` with detailed browser verification after installation
|
|
17
|
+
- Added CI checks in `.github/workflows/release.yml` to verify required Playwright browsers (chromium, firefox, webkit) are installed
|
|
18
|
+
- CI now fails if required browsers are missing, ensuring Playwright MCP server has all dependencies
|
|
19
|
+
|
|
3
20
|
## 0.54.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
package/src/telegram-bot.mjs
CHANGED
|
@@ -150,7 +150,7 @@ const allowedChats = resolvedAllowedChats ? lino.parseNumericIds(resolvedAllowed
|
|
|
150
150
|
const resolvedSolveOverrides = config.solveOverrides || getenv('TELEGRAM_SOLVE_OVERRIDES', '');
|
|
151
151
|
const solveOverrides = resolvedSolveOverrides
|
|
152
152
|
? lino
|
|
153
|
-
.
|
|
153
|
+
.parseStringValues(resolvedSolveOverrides)
|
|
154
154
|
.map(line => line.trim())
|
|
155
155
|
.filter(line => line)
|
|
156
156
|
: [];
|
|
@@ -158,7 +158,7 @@ const solveOverrides = resolvedSolveOverrides
|
|
|
158
158
|
const resolvedHiveOverrides = config.hiveOverrides || getenv('TELEGRAM_HIVE_OVERRIDES', '');
|
|
159
159
|
const hiveOverrides = resolvedHiveOverrides
|
|
160
160
|
? lino
|
|
161
|
-
.
|
|
161
|
+
.parseStringValues(resolvedHiveOverrides)
|
|
162
162
|
.map(line => line.trim())
|
|
163
163
|
.filter(line => line)
|
|
164
164
|
: [];
|