blun-king-cli 9.1.575 → 9.1.576
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
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 9.1.576 - 2026-09-07
|
|
2
|
+
|
|
3
|
+
- Preserve standalone C++ and C# as distinct terms in local research recall,
|
|
4
|
+
including case-insensitive queries and ordinary surrounding punctuation.
|
|
5
|
+
- Keep existing saved passages, hashes, source guards, Unicode normalization,
|
|
6
|
+
collection boundaries and output limits unchanged. No reindexing is required.
|
|
7
|
+
- Add a frozen 20-case technical replay and explicit token-boundary regressions.
|
|
8
|
+
This is a local recall correction, not a live WebSearch quality or capacity claim.
|
|
9
|
+
- Retain all public575 crawler, search, Telegram, resume and updater changes.
|
|
10
|
+
|
|
1
11
|
# 9.1.575 - 2026-09-07
|
|
2
12
|
|
|
3
13
|
- Cumulative release retaining all public 9.1.574 changes.
|
package/package.json
CHANGED
|
@@ -151,7 +151,9 @@ function save({ home, project, report }) {
|
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
|
-
|
|
154
|
+
// Preserve standalone language names whose punctuation is semantically significant.
|
|
155
|
+
const terms = text => [...new Set(text.normalize('NFC').toLocaleLowerCase('en')
|
|
156
|
+
.match(/(?<![\p{L}\p{N}\p{M}_])c(?:\+\+|#)(?![\p{L}\p{N}\p{M}_+#])|[\p{L}\p{N}]{2,}/gu) || [])];
|
|
155
157
|
function query({ home, project, query: question, limit = 5, maxChars = 8000, offset = 0, expectedCollectionSha256 }) {
|
|
156
158
|
const output = { schema: 'blun.research-recall/v1', availability: 'unavailable', matches: [], diagnostics: [],
|
|
157
159
|
sourceVerified: false, retrieval: 'lexical-artifact-search', bytesRead: 0, limited: false,
|