@uluops/registry-mcp 0.2.6 → 0.2.9
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 +32 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.9] - 2026-06-08
|
|
11
|
+
|
|
12
|
+
### Internal
|
|
13
|
+
|
|
14
|
+
- **Strengthen `prepublishOnly` script** to match the other public `@uluops/*` packages (ops-sdk, registry-sdk, ops-mcp 0.4.3, cli): `npm run lint && npm test && npm audit --audit-level=high --omit=dev && npm run build`. The prior `prepublishOnly` ran only `npm run build`, so `npm publish` skipped lint+test+audit and relied on the developer to remember to run them manually. Aligning the safety net with the rest of the public surface. No behavior change in the runtime package.
|
|
15
|
+
|
|
16
|
+
## [0.2.8] - 2026-06-08
|
|
17
|
+
|
|
18
|
+
### Dependencies
|
|
19
|
+
|
|
20
|
+
- **Bump `@uluops/registry-sdk` 0.30.2 → 0.31.1.** Wave-coordination bump for the live-tests T2 wave (R12 envelope rewrite + post-impl r2 hardening). Picks up:
|
|
21
|
+
- **R12 envelope schemas** (0.31.0): `dependencies.get()` and `dependencies.getDependents()` now return real typed envelopes (`DependencyGraphResponse` with recursive `graph` + `flat` + `totalCount` + `maxDepth`; `DependentsResponse` with `Dependent[]` carrying `context`). Replaces the all-optional `dependencyGraphSchema` that silently parsed every real response as `{}`. The MCP layer passes SDK return types through opaquely, so no source changes here — but consumers of `get_dependents` / `get_dependencies` now receive the typed envelope shape via JSON-serialized tool responses.
|
|
22
|
+
- **CWE-674 pre-parse depth guard** (0.31.1): `dependencies.get()` checks the envelope's `maxDepth` field before the recursive Zod parse runs, throwing `RangeError` when > `MAX_SAFE_GRAPH_DEPTH` (50, ~7× the live-verified production max of 7). A malicious or pathological 10k-deep payload would otherwise exhaust the V8 call stack via the recursive `z.lazy()` walk.
|
|
23
|
+
- **CWE-20 defensive string ceilings** (0.31.1): `.max()` bounds on `name` (100), `version` (20), `context` (255) across `dependencyNodeSchema`, `flatDepSchema`, and `dependentSchema`. Oversized payloads convert from silent memory pressure into a loud `ZodError` at parse time.
|
|
24
|
+
|
|
25
|
+
Build + 348 tests pass on the new pin. No source changes in this package.
|
|
26
|
+
|
|
27
|
+
## [0.2.7] - 2026-06-07
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- **Bumped `mcp-secure-server` 0.0.14-security → 0.0.15-security** (`package.json:67`) to pick up the `top`/`whoami` false-positive fix. The 0.0.14-security `command.systemInfo` regexes used `\b<cmd>\s*` — the `\s*` quantifier matches zero whitespace, so any identifier beginning with those letters tripped the COMMAND_INJECTION layer (`topPerformers`, `topology`, `topic`, `whoamiHandler`, etc.). Surfaced on 2026-06-07 when Codex called `get_ecosystem_overview({ fields: ["topPerformers"] })` and the request was rejected by layer 2 as `Top Process Monitor` before reaching the registry's subscription-tier check. Every other `fields` value reached the intended 403 — the field name was the sole trigger. The bidirectional `\b<cmd>\b` form in 0.0.15-security continues to block real shell invocations (`top`, `top -o cpu`, `top | head`, `top; ls`, `whoami`, `whoami | grep root`) but rejects identifier substrings cleanly. Verified via Verdaccio publish + install + live regex probe before npm promotion.
|
|
32
|
+
|
|
10
33
|
## [0.2.6] - 2026-06-07
|
|
11
34
|
|
|
12
35
|
### Fixed
|
|
@@ -275,7 +298,15 @@ first public npm publish under the scoped name.
|
|
|
275
298
|
- Error sanitization stripping sensitive data (API keys, tokens, stack traces) from MCP responses
|
|
276
299
|
- Test suite with 194 tests covering all tools, resources, and registry config
|
|
277
300
|
|
|
278
|
-
[Unreleased]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.
|
|
301
|
+
[Unreleased]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.9...HEAD
|
|
302
|
+
[0.2.9]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.8...v0.2.9
|
|
303
|
+
[0.2.8]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.7...v0.2.8
|
|
304
|
+
[0.2.7]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.6...v0.2.7
|
|
305
|
+
[0.2.6]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.5...v0.2.6
|
|
306
|
+
[0.2.5]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.4...v0.2.5
|
|
307
|
+
[0.2.4]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.3...v0.2.4
|
|
308
|
+
[0.2.3]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.2...v0.2.3
|
|
309
|
+
[0.2.2]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.1...v0.2.2
|
|
279
310
|
[0.2.1]: https://github.com/Uluops/-uluops-registry-mcp/compare/v0.2.0...v0.2.1
|
|
280
311
|
[0.2.0]: https://github.com/Uluops/-uluops-registry-mcp/releases/tag/v0.2.0
|
|
281
312
|
[1.14.0]: https://github.com/Uluops/-uluops-registry-mcp/compare/v1.13.0...v1.14.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uluops/registry-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "MCP server for the UluOps Registry API — definition management, versioning, and analytics",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"test": "vitest run",
|
|
36
36
|
"test:watch": "vitest",
|
|
37
37
|
"test:coverage": "vitest run --coverage",
|
|
38
|
-
"prepublishOnly": "npm run build"
|
|
38
|
+
"prepublishOnly": "npm run lint && npm test && npm audit --audit-level=high --omit=dev && npm run build"
|
|
39
39
|
},
|
|
40
40
|
"keywords": [
|
|
41
41
|
"mcp",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
65
|
-
"@uluops/registry-sdk": "0.
|
|
65
|
+
"@uluops/registry-sdk": "0.31.1",
|
|
66
66
|
"@uluops/sdk-core": "0.11.1",
|
|
67
|
-
"mcp-secure-server": "0.0.
|
|
67
|
+
"mcp-secure-server": "0.0.15-security",
|
|
68
68
|
"zod": "3.25.76"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|