@poolzin/pool-bot 2026.1.36 → 2026.1.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/CHANGELOG.md +19 -0
- package/dist/build-info.json +3 -3
- package/package.json +4 -6
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,25 @@ All notable changes to Pool Bot will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2026.1.37] - 2026-02-07
|
|
9
|
+
|
|
10
|
+
### 🔒 Security: Remove node-llama-cpp, fix tar vulnerability
|
|
11
|
+
|
|
12
|
+
#### Vulnerabilities Fixed
|
|
13
|
+
- **tar ≤7.5.6 (5× HIGH):** Removed `node-llama-cpp` from `optionalDependencies`, eliminating the entire `tar → cmake-js → node-llama-cpp` vulnerability chain. Updated `tar` override from 7.5.4 → 7.5.7.
|
|
14
|
+
|
|
15
|
+
#### Changes
|
|
16
|
+
- Removed `node-llama-cpp` 3.15.0 from `optionalDependencies` (matching upstream openclaw approach). Local embeddings still work if users install `node-llama-cpp` manually — the dynamic `import()` fallback to OpenAI/Gemini remains unchanged.
|
|
17
|
+
- Fixed `extensions/memory-core/package.json` — added `poolbot` as `devDependency` to resolve `pnpm install` failure from `autoInstallPeers`.
|
|
18
|
+
- Lockfile: removed ~1,300 lines of native dependency entries (`node-llama-cpp`, `cmake-js`, `@node-llama-cpp/*` platform binaries).
|
|
19
|
+
|
|
20
|
+
#### Impact
|
|
21
|
+
- npm audit: 15 → 10 vulnerabilities (5 high eliminated)
|
|
22
|
+
- Install size reduced (no more cmake-js + native compilation toolchain)
|
|
23
|
+
- Zero code changes — all source files unchanged; only dependency configuration
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
8
27
|
## [2026.1.35] - 2026-02-06
|
|
9
28
|
|
|
10
29
|
### 📦 Stability Snapshot
|
package/dist/build-info.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poolzin/pool-bot",
|
|
3
|
-
"version": "2026.1.
|
|
3
|
+
"version": "2026.1.37",
|
|
4
4
|
"description": "🎱 Pool Bot - AI assistant with PLCODE integrations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
"express": "^5.2.1",
|
|
185
185
|
"file-type": "^21.3.0",
|
|
186
186
|
"grammy": "^1.39.3",
|
|
187
|
-
"hono": "4.11.
|
|
187
|
+
"hono": "4.11.4",
|
|
188
188
|
"jiti": "^2.6.1",
|
|
189
189
|
"json5": "^2.2.3",
|
|
190
190
|
"jszip": "^3.10.1",
|
|
@@ -207,8 +207,7 @@
|
|
|
207
207
|
"zod": "^4.3.6"
|
|
208
208
|
},
|
|
209
209
|
"optionalDependencies": {
|
|
210
|
-
"@napi-rs/canvas": "^0.1.88"
|
|
211
|
-
"node-llama-cpp": "3.15.0"
|
|
210
|
+
"@napi-rs/canvas": "^0.1.88"
|
|
212
211
|
},
|
|
213
212
|
"devDependencies": {
|
|
214
213
|
"@grammyjs/types": "^3.23.0",
|
|
@@ -240,14 +239,13 @@
|
|
|
240
239
|
"wireit": "^0.14.12"
|
|
241
240
|
},
|
|
242
241
|
"overrides": {
|
|
243
|
-
"hono": "4.11.8",
|
|
244
242
|
"tar": "7.5.7"
|
|
245
243
|
},
|
|
246
244
|
"pnpm": {
|
|
247
245
|
"minimumReleaseAge": 2880,
|
|
248
246
|
"overrides": {
|
|
249
247
|
"@sinclair/typebox": "0.34.47",
|
|
250
|
-
"hono": "4.11.
|
|
248
|
+
"hono": "4.11.4",
|
|
251
249
|
"tar": "7.5.7"
|
|
252
250
|
}
|
|
253
251
|
},
|