@oomkapwn/enquire-mcp 3.10.0-rc.77 → 3.10.0-rc.78
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 +18 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## [3.10.0-rc.78] — 2026-06-22
|
|
6
|
+
|
|
7
|
+
> **TL;DR:** **Config hygiene — `biome.json` migrated to 2.5.0.** The devDep is `@biomejs/biome@^2.5.0` (installed 2.5.0) but `biome.json` still pinned `$schema` 2.4.16 and used the deprecated `recommended: true` linter field — both non-blocking lint `infos` that slipped through several RCs (the α-class stale-version claim, in a tooling config). `biome migrate` updated the schema + renamed `recommended: true` → `preset: "recommended"` (same rule set; no repo-wide cascade), and a pre-existing `useTemplate` nit was cleared so lint output is now pristine. Config + 1-line test tidy only; no runtime change. **1311 source tests unchanged.**
|
|
8
|
+
|
|
9
|
+
**Pre-release (v3.10 line) — config hygiene (biome 2.5.0 migration; zero runtime change).**
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- **`biome.json` migrated to the installed biome 2.5.0** (`biome.json`). The `@biomejs/biome` devDep is `^2.5.0` (resolves to 2.5.0), but `biome.json` declared `"$schema": ".../2.4.16/schema.json"` AND used `"recommended": true` in `linter.rules` — which biome 2.5.0 deprecated (to be removed in the next major). Both surfaced as non-blocking `i` / DEPRECATED warnings on every `npm run lint`, so they slipped through rc.71→rc.77 as the lint "infos" until a commit (rc.77) touched a file the newer biome reformatted. Ran `biome migrate --write`: `$schema` → `2.5.0`, `recommended: true` → `preset: "recommended"` (a field rename to the same recommended rule set — verified by a full-repo `npm run lint`: 135 files, 0 errors, no format/rule cascade). Also cleared the one remaining lint info — a pre-existing `useTemplate` nit in `tests/docs-consistency.test.ts:67` (`"\`" + p + "\`"` → a template literal) — so the lint output is now 0 findings.
|
|
14
|
+
|
|
15
|
+
### Tests (1311)
|
|
16
|
+
|
|
17
|
+
- Unchanged (config + a 1-line `useTemplate` tidy; no `it()` added/removed). Full suite green; lint pristine.
|
|
18
|
+
|
|
19
|
+
> **Lesson:** a `^`-ranged dev-tool (biome) silently minor-bumped past its config's pinned `$schema`, and the resulting version-mismatch + field-deprecation surfaced only as NON-blocking lint `infos` — so the drift survived several RCs. `biome migrate` is the clean close; the broader watch is to keep a `^`-ranged tool's config in lockstep with the installed version.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
5
23
|
## [3.10.0-rc.77] — 2026-06-22
|
|
6
24
|
|
|
7
25
|
> **TL;DR:** **Full state-driven audit close — LOW: STABILITY.md `obsidian_full_text_search` enabling-flag drift + structural guard.** The packaged semver-contract doc said the FTS tool is opt-in via `--persistent-index` alone, but the code requires `--persistent-index` AND `--diagnostic-search-tools`. Corrected + added a docs-consistency invariant that derives each opt-in/gated tool's flag-set from `TOOL_MANIFEST.gating` and pins STABILITY.md's breakdown headings to it. Docs+test only. **1309 → 1311 source tests. Closes the full state-driven audit (rc.76 MED + rc.77 LOW).**
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* + `McpServer({version})`) and `src/tool-registry.ts` (used in the
|
|
8
8
|
* `vault-info` resource payload).
|
|
9
9
|
*/
|
|
10
|
-
export declare const VERSION = "3.10.0-rc.
|
|
10
|
+
export declare const VERSION = "3.10.0-rc.78";
|
|
11
11
|
export { main } from "./cli.js";
|
|
12
12
|
export { buildEmbedText, buildMcpServer, formatReadyBanner, prepareServerDeps, type ServeOptions, type ServerDeps, startServer } from "./server.js";
|
|
13
13
|
export { parsePositiveInt, parseQuantizationMode } from "./tool-registry.js";
|
package/dist/index.js
CHANGED
|
@@ -40,7 +40,7 @@ import { main } from "./cli.js";
|
|
|
40
40
|
* + `McpServer({version})`) and `src/tool-registry.ts` (used in the
|
|
41
41
|
* `vault-info` resource payload).
|
|
42
42
|
*/
|
|
43
|
-
export const VERSION = "3.10.0-rc.
|
|
43
|
+
export const VERSION = "3.10.0-rc.78";
|
|
44
44
|
// Re-exports — preserve the v3.5.x public surface so http-transport.ts and
|
|
45
45
|
// tests don't need to know about the new module layout. The set below
|
|
46
46
|
// exactly matches the v3.5.x `export` declarations: `main`,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@oomkapwn/enquire-mcp",
|
|
4
|
-
"version": "3.10.0-rc.
|
|
4
|
+
"version": "3.10.0-rc.78",
|
|
5
5
|
"mcpName": "io.github.oomkapwn/enquire-mcp",
|
|
6
6
|
"description": "MCP server giving AI agents (Claude Code, Claude Desktop, Cursor, ChatGPT, Codex, OpenClaw) persistent long-term memory backed by your local Obsidian markdown vault. Hybrid retrieval (BM25 + ML embeddings + BGE reranker, RRF-fused), HNSW + int8 quantization, agentic RAG (HyDE + sub-question decomposition), GraphRAG-light (Louvain), standalone Obsidian Bases, PDFs + Tesseract OCR. Vendor-neutral memory layer for any MCP-compatible agent. 45 tools, 19 MCP prompts, 1311 tests, signed npm build provenance (SLSA L2), semver-bound, MIT, zero cloud calls during serve.",
|
|
7
7
|
"type": "module",
|